-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Laden & Speichern von Urkunden korrigiert
- Loading branch information
Dennis Fabri
committed
Mar 2, 2022
1 parent
680f173
commit 11819a9
Showing
7 changed files
with
86 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
jauswertung-print/src/main/java/de/df/jauswertung/print/graphics/Dimension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package de.df.jauswertung.print.graphics; | ||
|
||
import java.io.Serializable; | ||
|
||
public class Dimension implements Serializable { | ||
|
||
private static final long serialVersionUID = 8771743770783648534L; | ||
|
||
public int width; | ||
public int height; | ||
|
||
public Dimension(int width, int height) { | ||
this.width = width; | ||
this.height = height; | ||
} | ||
|
||
public double getWidth() { | ||
return width; | ||
} | ||
|
||
public double getHeight() { | ||
return height; | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
jauswertung-print/src/main/java/de/df/jauswertung/print/graphics/Point.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package de.df.jauswertung.print.graphics; | ||
|
||
import java.io.Serializable; | ||
|
||
public class Point implements Serializable { | ||
|
||
private static final long serialVersionUID = 3380302078457582695L; | ||
|
||
public int x; | ||
public int y; | ||
|
||
public Point(int x, int y) { | ||
this.x = x; | ||
this.y = y; | ||
} | ||
|
||
public double getX() { | ||
return x; | ||
} | ||
|
||
public double getY() { | ||
return y; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters