Interface PdfProcletWithAbsolutePosition
-
- All Superinterfaces:
Destroyable
,OptionHandler
,PdfProclet
- All Known Subinterfaces:
PdfProcletWithOptionalAbsolutePosition
- All Known Implementing Classes:
AbstractSpreadSheetPdfProclet
,ConfusionMatrix
,FixedText
,Image
,PlainText
,SpreadSheet
public interface PdfProcletWithAbsolutePosition extends PdfProclet
Interface for PDF proclets that allow absolute positioning. From bottom-left corner.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description float
getX()
Returns the absolute X position.float
getY()
Returns the absolute Y position.void
setX(float value)
Sets the absolute X position.void
setY(float value)
Sets the absolute Y position.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
-
setX
void setX(float value)
Sets the absolute X position.- Parameters:
value
- the X position
-
getX
float getX()
Returns the absolute X position.- Returns:
- the X position
-
XTipText
String XTipText()
Returns the tip text for this property.- 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.- Parameters:
value
- the Y position
-
getY
float getY()
Returns the absolute Y position.- Returns:
- the Y position
-
YTipText
String YTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-