Interface PdfProcletWithOptionalAbsolutePosition
-
- All Superinterfaces:
Destroyable
,OptionHandler
,PdfProclet
,PdfProcletWithAbsolutePosition
- All Known Implementing Classes:
AbstractSpreadSheetPdfProclet
,ConfusionMatrix
,FixedText
,Image
,PlainText
,SpreadSheet
public interface PdfProcletWithOptionalAbsolutePosition extends PdfProcletWithAbsolutePosition
Interface for PDF proclets that allow absolute positioning.- Version:
- $Revision: 13481 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getUseAbsolutePosition()
Returns whether absolute positioning is used.float
getX()
Returns the absolute X position.float
getY()
Returns the absolute Y position.void
setUseAbsolutePosition(boolean value)
Sets whether to use absolute positioning.void
setX(float value)
Sets the absolute X position.void
setY(float value)
Sets the absolute Y position.String
useAbsolutePositionTipText()
Returns the tip text for this property.String
XTipText()
Returns the tip text for this property.String
YTipText()
Returns the tip text for this property.-
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, getExtensions, getRegExpFilename, process, process, regExpFilenameTipText, setRegExpFilename
-
-
-
-
Method Detail
-
setUseAbsolutePosition
void setUseAbsolutePosition(boolean value)
Sets whether to use absolute positioning.- Parameters:
value
- true if absolute
-
getUseAbsolutePosition
boolean getUseAbsolutePosition()
Returns whether absolute positioning is used.- Returns:
- true if absolute
-
useAbsolutePositionTipText
String useAbsolutePositionTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setX
void setX(float value)
Sets the absolute X position.- Specified by:
setX
in interfacePdfProcletWithAbsolutePosition
- Parameters:
value
- the X position
-
getX
float getX()
Returns the absolute X position.- Specified by:
getX
in interfacePdfProcletWithAbsolutePosition
- Returns:
- the X position
-
XTipText
String XTipText()
Returns the tip text for this property.- Specified by:
XTipText
in interfacePdfProcletWithAbsolutePosition
- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setY
void setY(float value)
Sets the absolute Y position.- Specified by:
setY
in interfacePdfProcletWithAbsolutePosition
- Parameters:
value
- the Y position
-
getY
float getY()
Returns the absolute Y position.- Specified by:
getY
in interfacePdfProcletWithAbsolutePosition
- Returns:
- the Y position
-
YTipText
String YTipText()
Returns the tip text for this property.- Specified by:
YTipText
in interfacePdfProcletWithAbsolutePosition
- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-