summaryrefslogtreecommitdiff
path: root/pdf-over-signer
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-10-07 13:59:02 +0200
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-10-07 13:59:02 +0200
commite62af8986381d22aeea52c48276611777632da6c (patch)
tree092aa932b05b5c91b2ad21c44e5285ca1edb320e /pdf-over-signer
parentacb42081141d476b1cd0c1ddf1eca0e07786e43e (diff)
downloadpdf-over-e62af8986381d22aeea52c48276611777632da6c.tar.gz
pdf-over-e62af8986381d22aeea52c48276611777632da6c.tar.bz2
pdf-over-e62af8986381d22aeea52c48276611777632da6c.zip
position composite rewrite
Diffstat (limited to 'pdf-over-signer')
-rw-r--r--pdf-over-signer/src/main/java/at/asit/pdfover/signer/SignaturePosition.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/pdf-over-signer/src/main/java/at/asit/pdfover/signer/SignaturePosition.java b/pdf-over-signer/src/main/java/at/asit/pdfover/signer/SignaturePosition.java
index 81871506..450277f0 100644
--- a/pdf-over-signer/src/main/java/at/asit/pdfover/signer/SignaturePosition.java
+++ b/pdf-over-signer/src/main/java/at/asit/pdfover/signer/SignaturePosition.java
@@ -25,12 +25,12 @@ public class SignaturePosition {
/**
* The x value of the position
*/
- protected float x = 0;
+ protected double x = 0;
/**
* The y value of the position
*/
- protected float y = 0;
+ protected double y = 0;
/**
* The page value of the position
@@ -55,7 +55,7 @@ public class SignaturePosition {
* @param x The x value of the position
* @param y The y value of the position
*/
- public SignaturePosition(float x, float y) {
+ public SignaturePosition(double x, double y) {
this.autoPositioning = false;
setPosition(x, y);
}
@@ -66,7 +66,7 @@ public class SignaturePosition {
* @param y The y value of the signature position
* @param page The page value of the signature position
*/
- public SignaturePosition(float x, float y, int page) {
+ public SignaturePosition(double x, double y, int page) {
this.autoPositioning = false;
setPosition(x, y);
setPage(page);
@@ -77,24 +77,24 @@ public class SignaturePosition {
* @param x the new x value
* @param y the new y value
*/
- public void setPosition(float x, float y) {
+ public void setPosition(double x, double y) {
this.x = x;
this.y = y;
}
/**
* Gets the X value of the position
- * @return float the x value of the position
+ * @return double the x value of the position
*/
- public float getX() {
+ public double getX() {
return this.x;
}
/**
* Gets the Y value of the position
- * @return float the y value of the position
+ * @return double the y value of the position
*/
- public float getY() {
+ public double getY() {
return this.y;
}