Skip to content
Snippets Groups Projects
Commit 9a0ea600 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

default constructor to silence javadoc warning

parent 7aae4591
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,13 @@ import java.util.Comparator; ...@@ -19,7 +19,13 @@ import java.util.Comparator;
* @author DMcG * @author DMcG
* @version $Id:$ * @version $Id:$
*/ */
public class ClassNameComparator implements Comparator<Pdu> { public class ClassNameComparator implements Comparator<Pdu>
{
/** default constructor */
public ClassNameComparator()
{
// initialization code here
}
/** /**
* Returns a number less than, equal to, or greater than zero, * Returns a number less than, equal to, or greater than zero,
......
...@@ -70,6 +70,11 @@ import edu.nps.moves.dis7.entities.usa.platform.surface.*; ...@@ -70,6 +70,11 @@ import edu.nps.moves.dis7.entities.usa.platform.surface.*;
*/ */
public class EntityStateEntityIdExampleUse public class EntityStateEntityIdExampleUse
{ {
/** default constructor */
public EntityStateEntityIdExampleUse()
{
// initialization code here
}
/** /**
* Using two methods, create and send an EntityStatePDU, describing an AD44 Shenandoah destroyer tender, uid 11963. * Using two methods, create and send an EntityStatePDU, describing an AD44 Shenandoah destroyer tender, uid 11963.
* @throws IOException report if problem occurs * @throws IOException report if problem occurs
......
...@@ -24,9 +24,10 @@ public class PduReaderPlayer ...@@ -24,9 +24,10 @@ public class PduReaderPlayer
{ {
private final static String DEFAULT_OUTPUT_DIRECTORY = "./pduLog"; private final static String DEFAULT_OUTPUT_DIRECTORY = "./pduLog";
/** Default multicast group address we send on. /** Default multicast group address we send on.
* @see <a href="https://en.wikipedia.org/wiki/Multicast_address">https://en.wikipedia.org/wiki/Multicast_address</a> */ * @see <a href="https://en.wikipedia.org/wiki/Multicast_address">https://en.wikipedia.org/wiki/Multicast_address</a> */
public static final String DEFAULT_MULTICAST_ADDRESS = DisThreadedNetworkInterface.DEFAULT_DIS_ADDRESS; public static final String DEFAULT_MULTICAST_ADDRESS = DisThreadedNetworkInterface.DEFAULT_DIS_ADDRESS;
/** @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */ /** Default multicast port we send on.
* @see <a href="https://en.wikipedia.org/wiki/Port_(computer_networking)">https://en.wikipedia.org/wiki/Port_(computer_networking)</a> */
public static final int DEFAULT_MULTICAST_PORT = DisThreadedNetworkInterface.DEFAULT_DIS_PORT; public static final int DEFAULT_MULTICAST_PORT = DisThreadedNetworkInterface.DEFAULT_DIS_PORT;
private enum mystate private enum mystate
...@@ -34,6 +35,12 @@ public class PduReaderPlayer ...@@ -34,6 +35,12 @@ public class PduReaderPlayer
RUNNING, RUNNING,
PAUSED; PAUSED;
} }
/** default constructor */
public PduReaderPlayer ()
{
// initialization code here
}
/** Command-line invocation (CLI) of program, execution starts here /** Command-line invocation (CLI) of program, execution starts here
* @param args command-line arguments * @param args command-line arguments
......
...@@ -28,6 +28,12 @@ import java.util.List; ...@@ -28,6 +28,12 @@ import java.util.List;
*/ */
public class PduReceiver public class PduReceiver
{ {
/** default constructor */
public PduReceiver ()
{
// initialization code here
}
/** Command-line invocation (CLI) /** Command-line invocation (CLI)
* @param args command-line arguments * @param args command-line arguments
*/ */
......
...@@ -15,12 +15,17 @@ import java.net.MulticastSocket; ...@@ -15,12 +15,17 @@ import java.net.MulticastSocket;
/** /**
* Receives PDUs from the network in IEEE format. Very similar to EspduReciver, but this * Receives PDUs from the network in IEEE format. Very similar to EspduReciver, but this
* uses Robert Harder's more memory-efficient NIO code. * implementation uses Robert Harder's more memory-efficient NIO code.
* *
* @author DMcG rharder * @author DMcG rharder
*/ */
public class PduReceiverNIO public class PduReceiverNIO
{ {
/** default constructor */
public PduReceiverNIO ()
{
// initialization code here
}
/** Command-line invocation (CLI) /** Command-line invocation (CLI)
* @param args command-line arguments * @param args command-line arguments
*/ */
......
...@@ -27,6 +27,12 @@ public class PduSender ...@@ -27,6 +27,12 @@ public class PduSender
{ {
/** default value avoids unterminated zombie senders */ /** default value avoids unterminated zombie senders */
public static final int NUMBER_TO_SEND = 5000; public static final int NUMBER_TO_SEND = 5000;
/** default constructor */
public PduSender()
{
// initialization code here
}
/** TCP/IP network modes */ /** TCP/IP network modes */
public enum NetworkMode public enum NetworkMode
......
...@@ -24,6 +24,12 @@ import java.net.MulticastSocket; ...@@ -24,6 +24,12 @@ import java.net.MulticastSocket;
*/ */
public class PduSenderNIO public class PduSenderNIO
{ {
/** default constructor */
public PduSenderNIO()
{
// initialization code here
}
/** Command-line invocation (CLI) /** Command-line invocation (CLI)
* @param args command-line arguments * @param args command-line arguments
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment