Class GenericNode

  • All Implemented Interfaces:
    ParseOutput

    public class GenericNode
    extends Object
    implements ParseOutput
    A generic implementation of ParseOutput.
    • Field Detail

      • _name

        public String _name
        Name of request.
      • _elems

        public Vector _elems
        Vector that has parsing elements.
      • _atts

        public Hashtable _atts
        Parsing attributes.
      • _pcdata

        public String _pcdata
        Data to be parsed.
    • Constructor Detail

      • GenericNode

        public GenericNode()
    • Method Detail

      • process

        public void process​(String name,
                            Vector elems,
                            Hashtable atts,
                            String pcdata)
        Processes request to information key. This is called by the SAX parser.
        Specified by:
        process in interface ParseOutput
        Parameters:
        name - name of request.
        elems - vector that has parsing elements.
        atts - parsing attributes.
        pcdata - given data to be parsed..