Class DatasetElement


  • @Deprecated
    public class DatasetElement
    extends Element
    Deprecated.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ATTR_DATATYPE
      Deprecated.
       
      static java.lang.String ELEMID_CELL
      Deprecated.
       
      static java.lang.String ELEMID_COL
      Deprecated.
       
      static java.lang.String ELEMID_COLUMNS
      Deprecated.
       
      static java.lang.String ELEMID_ROW
      Deprecated.
       
      static java.lang.String ELEMID_ROWS
      Deprecated.
       
      • Fields inherited from class com.inductiveautomation.ignition.common.xmlserialization.simple.Element

        name
    • Constructor Summary

      Constructors 
      Constructor Description
      DatasetElement()
      Deprecated.
       
    • Constructor Detail

      • DatasetElement

        public DatasetElement()
        Deprecated.
    • Method Detail

      • addChild

        public void addChild​(Element child)
                      throws java.lang.Exception
        Deprecated.
        Specified by:
        addChild in class Element
        Throws:
        java.lang.Exception
      • getValue

        public java.lang.Object getValue()
        Deprecated.
        Overrides:
        getValue in class Element
      • resolveType

        public java.lang.Class<? extends Element> resolveType​(java.lang.String name)
        Deprecated.
        Description copied from class: Element
        This allows complex elements to return their own implementation or definitions for element types. When a new element is encountered, the system works its way up through the current stack, and finally ends up at the types registered on the reader. This should return null if the element doesn't provide a custom type for the given name.
        The class returned can be a non-static class. In that case, it will get instantiated against the object returning it.
        Overrides:
        resolveType in class Element
        Parameters:
        name - the lower cased element name.
        Returns:
        a class that represents the element, or null if unknown.