Commit b5b068bd authored by Uwe Peuker's avatar Uwe Peuker
Browse files

- Javadoc für Java8-Kompatibilität korrigiert

- Obsolete SVN-Tags aus Kommentaren entfernt
- Obsolete inheritDoc-Kommentare entfernt
parent 6789033a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@

	<groupId>de.bsvrz.dua</groupId>
	<artifactId>de.bsvrz.dua.progglaette</artifactId>
	<version>2.0.1</version>
	<version>2.0.2</version>


	<name>Glaettewarnung und -prognose</name>
@@ -27,7 +27,6 @@
		<distributionspaket.status>FREI</distributionspaket.status>
		<distributionspaket.standDatum>2016-07-22</distributionspaket.standDatum>
		<distributionspaket.lizenz>GPLv3.0</distributionspaket.lizenz>
		<additionalparam>-Xdoclint:none</additionalparam>
	</properties>

	<licenses>
@@ -175,7 +174,7 @@
		<dependency>
			<groupId>de.bsvrz.sys</groupId>
			<artifactId>de.bsvrz.sys.funclib.bitctrl.dua</artifactId>
			<version>1.6.0</version>
			<version>1.6.1</version>
		</dependency>
		<dependency>
			<groupId>de.bsvrz.dua</groupId>
+390 −404
Original line number Diff line number Diff line
@@ -35,8 +35,6 @@ import de.bsvrz.sys.funclib.debug.Debug;
 * Eigenschaften der Fahrbahn und Luft und seinen Prognosewerten.
 *
 * @author BitCtrl Systems GmbH, Bachraty..
 *
 * @version $Id: EntscheidungsBaum.java 53837 2015-03-18 11:45:45Z peuker $
 */
public class EntscheidungsBaum {

@@ -227,12 +225,9 @@ public class EntscheidungsBaum {
	}

/**
	 * Operator "<".
	 * Operator "&lt;".
	 */
	public static class OperatorKleiner implements Operator {
		/**
		 * {@inheritDoc}
		 */
		@Override
		public boolean anwende(final double x, final double y) {
			return (x < y);
@@ -240,12 +235,9 @@ public class EntscheidungsBaum {
	}

	/**
	 * Operator "<=".
	 * Operator "&lt;=".
	 */
	public static class OperatorKleinerGleich implements Operator {
		/**
		 * {@inheritDoc}
		 */
		@Override
		public boolean anwende(final double x, final double y) {
			return (x <= y);
@@ -253,12 +245,9 @@ public class EntscheidungsBaum {
	}

	/**
	 * Operator ">".
	 * Operator "&gt;".
	 */
	public static class OperatorGroesser implements Operator {
		/**
		 * {@inheritDoc}
		 */
		@Override
		public boolean anwende(final double x, final double y) {
			return (x > y);
@@ -266,12 +255,9 @@ public class EntscheidungsBaum {
	}

	/**
	 * Operator ">=".
	 * Operator "&gt;=".
	 */
	public static class OperatorGroesserGleich implements Operator {
		/**
		 * {@inheritDoc}
		 */
		@Override
		public boolean anwende(final double x, final double y) {
			return (x >= y);
+640 −664
Original line number Diff line number Diff line
@@ -36,9 +36,6 @@ import de.bsvrz.sys.funclib.bitctrl.dua.DUAInitialisierungsException;
 * EndKnoten ist, dann enthaelt den Ergebnisswert.
 *
 * @author BitCtrl Systems GmbH, Bachraty
 *
 * @version $Id: EntscheidungsBaumKnoten.java 53825 2015-03-18 09:36:42Z peuker
 *          $
 */
public class EntscheidungsBaumKnoten {

@@ -229,9 +226,6 @@ public class EntscheidungsBaumKnoten {
			super(grenzWert, operator);
		}

		/**
		 * {@inheritDoc}
		 */
		@Override
		public Richtung getRichtung(final long fbzAktuell,
				final double fbtAktuell, final double tptAktuell,
@@ -268,9 +262,6 @@ public class EntscheidungsBaumKnoten {
			super(grenzWert, operator);
		}

		/**
		 * {@inheritDoc}
		 */
		@Override
		public Richtung getRichtung(final long fbzAktuell,
				final double fbtAktuell, final double tptAktuell,
@@ -309,9 +300,6 @@ public class EntscheidungsBaumKnoten {
			super(grenzWert, operator);
		}

		/**
		 * {@inheritDoc}
		 */
		@Override
		public Richtung getRichtung(final long fbzAktuell,
				final double fbtAktuell, final double tptAktuell,
@@ -354,9 +342,6 @@ public class EntscheidungsBaumKnoten {
			super(grenzWert, operator);
		}

		/**
		 * {@inheritDoc}
		 */
		@Override
		public Richtung getRichtung(final long fbzAktuell,
				final double fbtAktuell, final double tptAktuell,
@@ -397,9 +382,6 @@ public class EntscheidungsBaumKnoten {
			super(grenzWert, operator);
		}

		/**
		 * {@inheritDoc}
		 */
		@Override
		public Richtung getRichtung(final long fbzAktuell,
				final double fbtAktuell, final double tptAktuell,
@@ -445,9 +427,6 @@ public class EntscheidungsBaumKnoten {
			this.werteRechts = werteRechts;
		}

		/**
		 * {@inheritDoc}
		 */
		@Override
		public Richtung getRichtung(final long fbzAktuell,
				final double fbtAktuell, final double tptAktuell,
@@ -503,9 +482,6 @@ public class EntscheidungsBaumKnoten {
			this.werteMitte = werteMitte;
		}

		/**
		 * {@inheritDoc}
		 */
		@Override
		public Richtung getRichtung(final long fbzAktuell,
				final double fbtAktuell, final double tptAktuell,
+853 −871
Original line number Diff line number Diff line
@@ -52,9 +52,6 @@ import java.util.LinkedList;
 * Ausgaben.
 *
 * @author BitCtrl Systems GmbH, Bachraty
 *
 * @version $Id: GlaetteWarnungUndPrognose.java 53825 2015-03-18 09:36:42Z
 *          peuker $
 */
public class GlaetteWarnungUndPrognose implements ClientSenderInterface,
		ClientReceiverInterface, StandardApplication {
@@ -289,9 +286,6 @@ public class GlaetteWarnungUndPrognose implements ClientSenderInterface,
	 */
	private final HashMap<SystemObject, UmfDatenHist> mapUmfDaten = new HashMap<>();

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void update(final ResultData[] results) {
		for (final ResultData resDatei : results) {
@@ -445,9 +439,6 @@ public class GlaetteWarnungUndPrognose implements ClientSenderInterface,

	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void initialize(final ClientDavInterface connection)
			throws Exception {
@@ -600,9 +591,6 @@ public class GlaetteWarnungUndPrognose implements ClientSenderInterface,

	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void parseArguments(final ArgumentList argumente) throws Exception {
		Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
@@ -830,9 +818,6 @@ public class GlaetteWarnungUndPrognose implements ClientSenderInterface,
		}
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void dataRequest(final SystemObject object,
			final DataDescription dataDescription, final byte state) {
@@ -840,9 +825,6 @@ public class GlaetteWarnungUndPrognose implements ClientSenderInterface,

	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public boolean isRequestSupported(final SystemObject object,
			final DataDescription dataDescription) {
+131 −133
Original line number Diff line number Diff line
@@ -37,8 +37,6 @@ import java.util.TreeSet;
 * Horizont 5, 15, 30, 60, 90 Minuten.
 *
 * @author BitCtrl Systems GmbH, Bachraty
 *
 * @version $Id: PrognoseZustand.java 53837 2015-03-18 11:45:45Z peuker $
 */
public class PrognoseZustand {