Class PdfEintrag
- java.lang.Object
-
- de.frankmuenster.mahoe.pdfextractor.PdfEintrag
-
public class PdfEintrag extends java.lang.Object
Enthält einen String mit Positionsangaben innerhalb der PDF-Seite.- Author:
- Frank Münster
-
-
Constructor Summary
Constructors Constructor Description PdfEintrag()
Creates a new emptyPdfEintrag
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getPositionX()
double
getPositionY()
java.lang.String
getWort()
void
setPositionX(double positionX)
void
setPositionY(double positionY)
void
setWort(java.lang.String wort)
-
-
-
Method Detail
-
getPositionX
public double getPositionX()
- Returns:
- the positionX
-
getPositionY
public double getPositionY()
- Returns:
- the positionY
-
getWort
public java.lang.String getWort()
- Returns:
- the wort
-
setPositionX
public void setPositionX(double positionX)
- Parameters:
positionX
- the positionX to set
-
setPositionY
public void setPositionY(double positionY)
- Parameters:
positionY
- the positionY to set
-
setWort
public void setWort(java.lang.String wort)
- Parameters:
wort
- the wort to set
-
-