home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 April / PCpro_2007_04.ISO / files / dsl / ManageEngineWiFiManager.exe / Disk1 / data1.cab / SourceFiles / WiFiManager.exe / conf / ParserConfig.dtd < prev    next >
Encoding:
Text File  |  2004-06-21  |  1.2 KB  |  29 lines

  1. <!-- AdventNet Parser Framework configuration file -->
  2.  
  3. <!-- Defines the contents of the MESSAGE-PARSER -->
  4. <!ELEMENT MESSAGE-PARSER (PARSER*) >
  5.  
  6. <!-- The PARSER element contains the description of the parser that should be
  7.    used for parsing the responses for commands present within it. The TYPE
  8.    attribute acts as an identifier for the particular kind of parser. The 
  9.    CLASSNAME attribute specifies the class name of the ParserInterface 
  10.    implementation. The  class specified here will be used for interpreting 
  11.    data within the METADATA tag -->
  12. <!ELEMENT PARSER (COMMAND+) >
  13. <!ATTLIST PARSER
  14.     TYPE CDATA #REQUIRED
  15.     CLASSNAME CDATA #REQUIRED
  16.     >
  17.  
  18. <!-- The COMMAND element refers to the command whose response needs to be 
  19.   parsed. The Command is identified by the NAME attribute-->
  20. <!ELEMENT COMMAND (METADATA) >
  21. <!ATTLIST COMMAND
  22.     NAME CDATA #REQUIRED>
  23.  
  24. <!-- The METADATA element corresponds to the rule using which the Response
  25.      needs to be parsed. The contents inside the METADATA are directly passed
  26.      to the class that was specified in CLASSNAME attribute of the  PARSER 
  27.      element for interpretation -->
  28. <!ELEMENT METADATA EMPTY >
  29.