Interface ICompositeDataObject

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Enumeration<java.lang.String> getKeys()
      This method is used by the storage to query the underlying data.
      java.lang.Object getObject​(java.lang.String key)
      This method is used by the storage to save not only the container, but the underlying data too.
    • Method Detail

      • getKeys

        java.util.Enumeration<java.lang.String> getKeys()
        This method is used by the storage to query the underlying data. It's also used by debug or administration programs to trace a composite object, such as Document.
        Returns:
        the keys (ids) of contained elements.
      • getObject

        java.lang.Object getObject​(java.lang.String key)
        This method is used by the storage to save not only the container, but the underlying data too. It's also used by debug or administration programs to trace a composite object, such as Document.
        Parameters:
        key - the key (id) of the contained element/object.
        Returns:
        the object associated to the key.