Package com.luciad.lucy.model
Interface ILcyModelEncoderContainer
- All Known Subinterfaces:
ILcyLucyEnv
- All Known Implementing Classes:
TLcyCompositeModelEncoder
Deprecated.
Container for
ILcdModelEncoder
s.
Offers basic functionality to add, remove and retrieve the model encoders
in this collection.-
Method Summary
Modifier and TypeMethodDescriptionvoid
addModelEncoder
(ILcdModelEncoder aModelEncoder, ALcyFileTypeDescriptor aFileTypeDescriptor) Deprecated.Adds the given model encoder to this container.getEncoderFileTypeDescriptor
(int aIndex) Deprecated.Retursn the file type descriptor at the given index, or null if the encoder was added with null as a descriptor.getModelEncoder
(int aIndex) Deprecated.Returns the model encoder at the given index.int
Deprecated.Returns the number of model encoders currently in this container.void
removeModelEncoder
(ILcdModelEncoder aModelEncoder) Deprecated.Removes the given model encoder from this container.
-
Method Details
-
addModelEncoder
Deprecated.Adds the given model encoder to this container.- Parameters:
aModelEncoder
- The model encoder to addaFileTypeDescriptor
- Descriptor that provides additional information about the file types this decoder can handle, or null if this encoder does not work with files.
-
removeModelEncoder
Deprecated.Removes the given model encoder from this container. Does nothing if the given encoder was not in this container.- Parameters:
aModelEncoder
- The model encoder to remove.
-
getModelEncoderCount
int getModelEncoderCount()Deprecated.Returns the number of model encoders currently in this container.- Returns:
- the number of model encoders currently in this container.
-
getModelEncoder
Deprecated.Returns the model encoder at the given index.- Parameters:
aIndex
- The index of the asked model encoder. Make sure0 <= aIndex < getModelEncoderCount()
- Returns:
- The model encoder at the given index.
-
getEncoderFileTypeDescriptor
Deprecated.Retursn the file type descriptor at the given index, or null if the encoder was added with null as a descriptor.- Parameters:
aIndex
- The index to retrieve the file type descriptor for.- Returns:
- the file type descriptor at the given index.
-
TLcyCompositeModelEncoder
instead