Interface DataElement

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.util.ResourceBundle RESOURCES
      The resource bundle for this package.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.CharSequence getName()
      Return the name of this data element.
      java.lang.Object getUserObject()
      Return any user defined object associated with this data element.
      void setName​(java.lang.CharSequence newName)
      Change the name of this data element to the specified name.
      void setUserObject​(java.lang.Object data)
      Set the user defined object associated with this data element.
      • Methods inherited from interface java.lang.Comparable

        compareTo
    • Field Detail

      • RESOURCES

        static final java.util.ResourceBundle RESOURCES
        The resource bundle for this package.
    • Method Detail

      • getName

        java.lang.CharSequence getName()
        Return the name of this data element.
      • setName

        void setName​(java.lang.CharSequence newName)
        Change the name of this data element to the specified name.
      • getUserObject

        java.lang.Object getUserObject()
        Return any user defined object associated with this data element. If there is no user data, then null is returned.
      • setUserObject

        void setUserObject​(java.lang.Object data)
        Set the user defined object associated with this data element. This can be used to store any type of information with a data element that could be useful.