Class FileHistoryXml

  • All Implemented Interfaces:
    XmlAdapter

    public class FileHistoryXml
    extends AbstractXmlAdapter
    Load/Store FileHistory objects.

    This interacts somewhat differently with the ConfigureXML system. FileHistory objects are _not_ registed with the manager, but rather handled explicitly by them. The "load()" method is therefore a null-op here.

    • Method Detail

      • load

        public boolean load​(Element shared,
                            Element perNode)
        Usual configurexml method, this one doesn't do anything because the content is explicitly loaded from the file
        Specified by:
        load in interface XmlAdapter
        Overrides:
        load in class AbstractXmlAdapter
        Parameters:
        shared - Top-level XML element containing the common, multi-node elements of the description
        perNode - Top-level XML element containing the private, single-node elements of the description
        Returns:
        true if successful
      • loadDirectly

        public boolean loadDirectly​(Element e)
        Load RevHistory from an element.

        If no RevHistory already present in InstanceManager, creates one and adds this.

        Then adds, instead of replacing, the history information

        Parameters:
        e - element to load.
        Returns:
        true when complete, false if unexpected.
      • load

        public void load​(Element e,
                         java.lang.Object o)
        Create a set of configured objects from their XML description, using an auxiliary object.

        For example, the auxilary object o might be a manager or GUI of some type that needs to be informed as each object is created.

        Specified by:
        load in interface XmlAdapter
        Overrides:
        load in class AbstractXmlAdapter
        Parameters:
        e - Top-level XML element containing the description
        o - Implementation-specific Object needed for the conversion
      • store

        public Element store​(java.lang.Object o)
        Store the
        Parameters:
        o - The object to be recorded. Specific XmlAdapter implementations will require this to be of a specific type; that binding is done in ConfigXmlManager.
        Returns:
        The XML representation Element
      • storeDirectly

        public static Element storeDirectly​(java.lang.Object o,
                                            java.lang.String fileName)