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

javadoc, comments

parent 04688316
No related branches found
No related tags found
No related merge requests found
...@@ -514,7 +514,7 @@ public class PduRecorder // implements PduReceiver ...@@ -514,7 +514,7 @@ public class PduRecorder // implements PduReceiver
} }
/** /**
* Entry point invocation, runs selfTest(). * Entry point invocation to facilitate developmental testing, runs selfTest() method.
* *
* @param args none supported, TODO offer path/filename * @param args none supported, TODO offer path/filename
*/ */
...@@ -522,8 +522,8 @@ public class PduRecorder // implements PduReceiver ...@@ -522,8 +522,8 @@ public class PduRecorder // implements PduReceiver
{ {
try try
{ {
PduRecorder pduRecorder = new PduRecorder(); PduRecorder pduRecorder = new PduRecorder(); // instantiates an instance object of this class,
pduRecorder.selfTest(args); pduRecorder.selfTest(args); // and tests it. Results shown in .dislog files.
} }
catch (IOException ioe) catch (IOException ioe)
{ {
...@@ -532,8 +532,8 @@ public class PduRecorder // implements PduReceiver ...@@ -532,8 +532,8 @@ public class PduRecorder // implements PduReceiver
} }
/** This selfTest() method saves PDU output logs to assigned directory using all supported encodings. /** This selfTest() method saves PDU output logs to assigned directory using all supported encodings.
* Separately Invoking the edu.nps.moves.dis7.examples.PduReaderPlayer will playback all logs * Further checking can be accomplished by separately Invoking the edu.nps.moves.dis7.examples.PduReaderPlayer
* written to that log directory * which will playback all logs written to that log directory.
* *
* @param args none supported, TODO offer path/filename * @param args none supported, TODO offer path/filename
*/ */
......
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