Class Boot

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ELEMENT_NAME
      The element name
      private java.lang.StringBuffer mValue
      The text value
    • Constructor Summary

      Constructors 
      Constructor Description
      Boot()
      The default constructor
      Boot​(java.lang.String value)
      Constructs a piece of data.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void appendValue​(java.lang.String fragment)
      Appends a piece of text to the existing text.
      java.lang.String getElementName()
      Returns the name of the xml element corresponding to the object.
      java.lang.String getValue()
      Accessor
      void setValue​(java.lang.String value)
      Accessor.
      • Methods inherited from class org.griphyn.vdl.Chimera

        escape, quote, toString, toXML, toXML, writeAttribute
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • mValue

        private java.lang.StringBuffer mValue
        The text value
      • ELEMENT_NAME

        public static final java.lang.String ELEMENT_NAME
        The element name
        See Also:
        Constant Field Values
    • Constructor Detail

      • Boot

        public Boot()
        The default constructor
      • Boot

        public Boot​(java.lang.String value)
        Constructs a piece of data.
        Parameters:
        value - is the data to remember. The string may be empty, but it must not be null.
        Throws:
        java.lang.NullPointerException - if the argument was null.
    • Method Detail

      • getElementName

        public java.lang.String getElementName()
        Returns the name of the xml element corresponding to the object.
        Specified by:
        getElementName in class MachineInfo
        Returns:
        name
      • appendValue

        public void appendValue​(java.lang.String fragment)
        Appends a piece of text to the existing text.
        Specified by:
        appendValue in interface HasText
        Parameters:
        fragment - is a piece of text to append to existing text. Appending null is a noop.
      • setValue

        public void setValue​(java.lang.String value)
        Accessor.
        Specified by:
        setValue in interface HasText
        Parameters:
        value - is the new value to set.
        See Also:
        getValue()