Interface CustomOption

    • Field Summary

      Fields 
      ChangeModifier and Type Field Description
      NEWstatic java.lang.String CUSTOM_OPTION_CLASS_NAME_KEY
      SaveState key which corresponds to custom option implementation class.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      ChangeModifier and Type Method Description
      void readState​(SaveState saveState)
      Concrete subclass of WrappedOption should read all of its state from the given saveState object.
      java.lang.String toString()
      CustomOption should implement this method to provide a formatted string value of this option value.
      void writeState​(SaveState saveState)
      Concrete subclass of WrappedOption should write all of its state to the given saveState object.
    • Field Detail

      • CUSTOM_OPTION_CLASS_NAME_KEY NEW

        static final java.lang.String CUSTOM_OPTION_CLASS_NAME_KEY
        SaveState key which corresponds to custom option implementation class. The use of this key/value within the stored state information is reserved for use by the option storage implementation and should be ignored by readState(SaveState) implementation
        See Also:
        Constant Field Values

Method Detail