Class BasicXMLelement

java.lang.Object
com.articulate.sigma.BasicXMLelement

public class BasicXMLelement extends Object
A class designed to mirror the information in a basic XML tag.
  • Field Details

    • tagname

      public String tagname
      The name of the tag
    • attributes

      public Map<String,String> attributes
      The attributes of the tag in key=value form
    • subelements

      public List<BasicXMLelement> subelements
      Any subelements of the tag, meaning any other tags that are nested within this one.
    • contents

      public String contents
      The contents between the start and end of this tag
  • Constructor Details

    • BasicXMLelement

      public BasicXMLelement()
  • Method Details