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 floatgetX()Returns the absolute X position.floatgetY()Returns the absolute Y position.voidsetX(float value)Sets the absolute X position.voidsetY(float value)Sets the absolute Y position.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
-
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.
-
-