Uses of Class
rcs.nml.NMLmsg

Packages that use NMLmsg
rcs.nml   
 

Uses of NMLmsg in rcs.nml
 

Subclasses of NMLmsg in rcs.nml
 class NML_DISPLAY
          Class used to send an operator interface a small text message to display.
 class NML_ERROR
          Generic class used to send an operator inteface as small text error message.
 class NML_TEXT
          Class used to send an operator interface a small text message to display.
 class RCS_CMD_MSG
          Base class for NML command messages.
 class RCS_STAT_MSG
          Base class for NML status messages.
 class RCS_STAT_MSG_V2
          A second version of the RCS_STAT_MSG used for base messages of RCS status perhaps considered for use in moast.
 

Fields in rcs.nml declared as NMLmsg
protected  NMLmsg NMLConnection.last_msg_read
           
 

Methods in rcs.nml that return NMLmsg
 NMLmsg NMLmsg.clone()
           
protected  NMLmsg NMLFormatConverterBase.convertRawDataToMsg(byte[] b, int offset, int size)
           
protected  NMLmsg XMLFormatConverter.convertRawDataToMsg(byte[] b, int offset, int size)
           
protected  NMLmsg NMLFormatConverterBase.convertStringToMsg(java.lang.String str)
           
 NMLmsg PackedFileWriter.convertStringToMsg(java.lang.String str)
           
 NMLmsg XMLFileWriter.convertStringToMsg(java.lang.String str)
           
 NMLmsg XMLFormatConverter.convertXMLToMsg(java.lang.String xml)
           
protected  NMLmsg NMLFormatConverterBase.getMessageFromInputStream(java.io.DataInputStream dis)
           
 NMLmsg NMLConnection.peek()
          Read an NMLmsg but do not change the was_read flag.
protected  NMLmsg NMLConnection.peekTCP()
           
protected  NMLmsg NMLConnection.peekUDP()
           
 NMLmsg NMLConnection.read()
          Read a NMLmsg.
 NMLmsg PackedFileReader.ReadFile(java.io.File f)
          Read the entire message in the pointed to file and convert it to an NMLmsg.
 NMLmsg XMLFileReader.ReadFile(java.io.File curFile)
           
 NMLmsg PackedFileReader.ReadFile(java.io.File f, int max_len)
          Read the first max_len bytes from a file and convert it to an NML message.
 NMLmsg PackedFileReader.ReadFile(java.lang.String fileName)
          Read the entire file or URL and parse it into an NMLmsg of the appropriate type.
 NMLmsg XMLFileReader.ReadFile(java.lang.String fileName)
           
 NMLmsg PackedFileReader.ReadFile(java.lang.String fileName, int maxlen)
          Read the first maxlen bytes out of a file and convert it to an NMLmsg.
 NMLmsg PackedFileReader.ReadFileSection(java.io.File f, int offset, int max_len)
          Read a message from a large ".COMBINED" file that contains multiple messages.
 NMLmsg PackedFileReader.ReadFileSection(java.lang.String fileName, int offset, int maxlen)
          Read a section of a large file containing many messages.
protected  NMLmsg NMLConnection.readTCP()
           
protected  NMLmsg NMLConnection.readUDP()
           
 NMLmsg XMLFormatConverter.readXmlFromFile(java.lang.String filename)
           
 NMLmsg XMLFormatConverter.readXmlFromURL(java.net.URL url)
           
 

Methods in rcs.nml with parameters of type NMLmsg
protected  int NMLFormatConverterBase.convertMsgToRawData(byte[] b, int size, NMLmsg msg)
           
protected  int XMLFormatConverter.convertMsgToRawData(byte[] b, int size, NMLmsg msg)
           
 byte[] PackedFormatConverter.convertMsgToRawData(NMLmsg _msg)
           
protected  java.lang.String NMLFormatConverterBase.convertMsgToString(NMLmsg msg)
           
 java.lang.String PackedFileReader.convertMsgToString(NMLmsg inMsg)
          Use FormatConverter to get a string representation of the message.
 java.lang.String XMLFileReader.convertMsgToString(NMLmsg inMsg)
           
protected  java.lang.String XMLFormatConverter.convertMsgToString(NMLmsg msg)
           
 java.lang.String XMLFormatConverter.convertMsgToXML(NMLmsg msg)
           
 double MsgToTimeStamp.MsgToTimeStamp(NMLmsg msg)
          Return the timestamp that should be associated with this message used for indexing log files.
protected  int NMLFormatConverterBase.sendMsgToOutputStream(java.io.DataOutputStream dos, NMLmsg msg)
           
 int NMLConnection.write(NMLmsg msg)
          Writes an NMLmsg.
 void PackedFileWriter.WriteFile(java.io.File curFile, NMLmsg _msg)
           
 void XMLFileWriter.WriteFile(java.io.File curFile, NMLmsg _msg)
           
 void PackedFileWriter.WriteFile(java.lang.String fileName, NMLmsg _msg)
           
 void XMLFileWriter.WriteFile(java.lang.String fileName, NMLmsg _msg)
           
protected  int NMLConnection.writeTCP(NMLmsg msg)
           
protected  int NMLConnection.writeUDP(NMLmsg msg)