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 booleangetUseAbsolutePosition()Returns whether absolute positioning is used.floatgetX()Returns the absolute X position.floatgetY()Returns the absolute Y position.voidsetUseAbsolutePosition(boolean value)Sets whether to use absolute positioning.voidsetX(float value)Sets the absolute X position.voidsetY(float value)Sets the absolute Y position.StringuseAbsolutePositionTipText()Returns the tip text for this property.StringXTipText()Returns the tip text for this property.StringYTipText()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:
setXin interfacePdfProcletWithAbsolutePosition- Parameters:
value- the X position
-
getX
float getX()
Returns the absolute X position.- Specified by:
getXin interfacePdfProcletWithAbsolutePosition- Returns:
- the X position
-
XTipText
String XTipText()
Returns the tip text for this property.- Specified by:
XTipTextin 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:
setYin interfacePdfProcletWithAbsolutePosition- Parameters:
value- the Y position
-
getY
float getY()
Returns the absolute Y position.- Specified by:
getYin interfacePdfProcletWithAbsolutePosition- Returns:
- the Y position
-
YTipText
String YTipText()
Returns the tip text for this property.- Specified by:
YTipTextin interfacePdfProcletWithAbsolutePosition- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-