com.uwyn.rife.cmf.transform |
Provides classes and interfaces that are able to transform typed content data.
|
Java Source File Name | Type | Comment |
ContentTransformer.java | Interface | This interface defines the API that has to be implemented by classes that
are capable of transforming content data after it's initially loaded.
The content attributes are provided to the
ContentTransformer.transform(Object data,Map attributes) transform method and can be used
to provide hints for the transformation.
Each transformer is supposed to transform content data of a certain data
type and return the transformed content in the same data type. |
ImageContentTransformer.java | Interface | This interface defines the API that has to be implemented by classes that
are capable of transforming
java.awt.Image image content data after
it's initially loaded. |
RawContentTransformer.java | Interface | This interface defines the API that has to be implemented by classes that
are capable of transforming raw content data after it's initially loaded. |
TextContentTransformer.java | Interface | This interface defines the API that has to be implemented by classes that
are capable of transforming
java.lang.String text content data
after it's initially loaded. |