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

javadoc descriptions

parent 9a0ea600
No related branches found
No related tags found
No related merge requests found
...@@ -103,8 +103,6 @@ public class PduRecorder // implements PduReceiver ...@@ -103,8 +103,6 @@ public class PduRecorder // implements PduReceiver
private String encodingPduLog = ENCODING_PLAINTEXT; // default, TODO change to ENCODING_BINARY private String encodingPduLog = ENCODING_PLAINTEXT; // default, TODO change to ENCODING_BINARY
private boolean includeHeaders = encodingPduLog.equals(ENCODING_PLAINTEXT); private boolean includeHeaders = encodingPduLog.equals(ENCODING_PLAINTEXT);
public static final String UNDATED = "undated";
private String TRACE_PREFIX = ("[PduRecorder " + getDescriptor()).trim() + "] "; private String TRACE_PREFIX = ("[PduRecorder " + getDescriptor()).trim() + "] ";
private String descriptor = new String(); private String descriptor = new String();
...@@ -200,6 +198,7 @@ public class PduRecorder // implements PduReceiver ...@@ -200,6 +198,7 @@ public class PduRecorder // implements PduReceiver
} }
/** /**
* Set encoding for PDU Log
* @param newEncodingPduLog the pduLogEncoding to set * @param newEncodingPduLog the pduLogEncoding to set
* @return same object to permit progressive setters */ * @return same object to permit progressive setters */
public PduRecorder setEncodingPduLog(String newEncodingPduLog) public PduRecorder setEncodingPduLog(String newEncodingPduLog)
...@@ -478,6 +477,7 @@ public class PduRecorder // implements PduReceiver ...@@ -478,6 +477,7 @@ public class PduRecorder // implements PduReceiver
} }
/** /**
* Provide link to singleton disThreadedNetworkInterface
* @return an instance of this DisThreadedNetworkInterface * @return an instance of this DisThreadedNetworkInterface
*/ */
public DisThreadedNetworkInterface getDisThreadedNetworkInterface() { public DisThreadedNetworkInterface getDisThreadedNetworkInterface() {
...@@ -575,6 +575,7 @@ public class PduRecorder // implements PduReceiver ...@@ -575,6 +575,7 @@ public class PduRecorder // implements PduReceiver
} }
/** /**
* Whether or not PduRecorder is currently running
* @return the pduRecorderRunning * @return the pduRecorderRunning
*/ */
public boolean isRunning() public boolean isRunning()
...@@ -835,6 +836,7 @@ public class PduRecorder // implements PduReceiver ...@@ -835,6 +836,7 @@ public class PduRecorder // implements PduReceiver
} }
/** /**
* Provide file name of PDU log
* @return the logFileName * @return the logFileName
*/ */
public String getLogFileName() { public String getLogFileName() {
...@@ -842,6 +844,7 @@ public class PduRecorder // implements PduReceiver ...@@ -842,6 +844,7 @@ public class PduRecorder // implements PduReceiver
} }
/** /**
* Set file name of PDU log
* @param logFileName the logFileName to set * @param logFileName the logFileName to set
* @return same object to permit progressive setters */ * @return same object to permit progressive setters */
public PduRecorder setLogFileName(String logFileName) { public PduRecorder setLogFileName(String logFileName) {
......
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