Interface DimapPersistable
-
- All Known Implementing Classes:
ComponentGeoCodingPersistable
,MaskPersistable
,RangeTypeMaskPersistable
,RasterDataNodePersistable
@Deprecated public interface DimapPersistable
Deprecated.extendPersistenceConverter
insteadInterface to implemented by clients who know how to read objects from and write object to BEAM-DIMAP XML.Note that this class is not yet public API. Interface may change in future releases.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Object
createObjectFromXml(org.jdom2.Element element, Product product)
Deprecated.Creates an object for the providedProduct
based on the data provided by theelement
.org.jdom2.Element
createXmlFromObject(Object object)
Deprecated.Converts the object into an XML element.
-
-
-
Method Detail
-
createObjectFromXml
Object createObjectFromXml(org.jdom2.Element element, Product product)
Deprecated.Creates an object for the providedProduct
based on the data provided by theelement
.- Parameters:
element
- The XML element containing the information to create the objectproduct
- The product the created object is intended for- Returns:
- the created object
-
createXmlFromObject
org.jdom2.Element createXmlFromObject(Object object)
Deprecated.Converts the object into an XML element.- Parameters:
object
- The object to convert- Returns:
- The converted XML element
-
-