Package com.javadocking.model.codec

Contains the functionality for decoding and encoding DockModels and DockingPathModels.

See:
          Description

Interface Summary
DockModelDecoder This is an interface for a class that creates a DockModel from a source.
DockModelEncoder This is an interface for a class that encodes a DockModel to a destination.
 

Class Summary
DockModelPropertiesDecoder This class reads the .dck file generated by the DockModelPropertiesEncoder, into a java.util.Properties object.
DockModelPropertiesEncoder This class encodes the DockModel and DockingPathModel into a java.util.Properties object.
 

Package com.javadocking.model.codec Description

Contains the functionality for decoding and encoding DockModels and DockingPathModels.

Information on using dock model encoders and decoders is in How to Use Dock Model Encoders and Decoders in The Sanaware Developer Guide.

There is an interface for encoding a dock model and docking path model: DockModelEncoder. This interface has one implementation: DockModelPropertiesEncoder. This class encodes the dock model and docking path in a java.util.Properties object. After that, it encodes this properties object in a file with extension .dck.

There is also an interface for decoding a dock model and docking path model: DockModelDecoder. This interface has one implementation: DockModelPropertiesDecoder. This class reads the .dck file generated by the properties encoder, into a java.util.Properties object. After that, it decodes this properties object into a dock model and docking path model.