Interface PdfProcletWithVariableFileExtension
-
- All Superinterfaces:
Destroyable
,OptionHandler
,PdfProclet
- All Known Implementing Classes:
AbstractSpreadSheetPdfProclet
,Circle
,ConfusionMatrix
,FixedText
,Headline
,Line
,MetaHeadline
,NewPage
,PlainText
,Rectangle
,SpreadSheet
public interface PdfProcletWithVariableFileExtension extends PdfProclet
Interface for PDF proclets that allow the user to modify the file extensions to work on.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
extensionsTipText()
Returns the tip text for this property.BaseString[]
getExtensions()
Returns the extensions that the processor can process.void
setExtensions(BaseString[] value)
Sets the extensions that the processor can process.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.flow.transformer.pdfproclet.PdfProclet
canProcess, canProcess, getRegExpFilename, process, process, regExpFilenameTipText, setRegExpFilename
-
-
-
-
Method Detail
-
setExtensions
void setExtensions(BaseString[] value)
Sets the extensions that the processor can process.- Parameters:
value
- the extensions (no dot)
-
getExtensions
BaseString[] getExtensions()
Returns the extensions that the processor can process.- Specified by:
getExtensions
in interfacePdfProclet
- Returns:
- the extensions (no dot)
-
extensionsTipText
String extensionsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-