Interface PresentationChannel
public interface PresentationChannel
Definition of a presentation channel.
- Since:
- 4.0
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionProvides the name of the content processor to be used for this channel.Provides the extension to be used for this channel.long
getId()
Provides the element id of this channel.getName()
Provides the name of this channel.Provides a map of parameters defined for this channel.boolean
Indicates this channel to be system defined.
-
Field Details
-
FO_2_PDF_PROCESSOR
Name of PDF content processor.- Since:
- 4.0
- See Also:
-
FO_2_RTF_PROCESSOR
Name of RTF content processor.- Since:
- 4.0
- See Also:
-
-
Method Details
-
getName
String getName()Provides the name of this channel.- Returns:
- This channel's name.
- Since:
- 4.0
-
getId
long getId()Provides the element id of this channel.- Returns:
- The id.
- Since:
- 4.0
-
isSystemChannel
boolean isSystemChannel()Indicates this channel to be system defined.- Returns:
true
, if system defined.- Since:
- 4.0
-
getExtension
String getExtension()Provides the extension to be used for this channel.- Returns:
- The channel's extension.
- Since:
- 4.0
-
getContentProcessor
String getContentProcessor()Provides the name of the content processor to be used for this channel.- Returns:
FO_2_PDF_PROCESSOR
,FO_2_RTF_PROCESSOR
, or a class name of a class wich implementsContentProcessor
- Since:
- 4.0
-
getParams
Provides a map of parameters defined for this channel.- Returns:
- A map of name-keyed parameters.
- Since:
- 4.0
-