01: package net.sourceforge.squirrel_sql.plugins.graph.xmlbeans;
02:
03: public class FoldingPointXmlBean {
04: private int x;
05: private int y;
06:
07: public int getX() {
08: return x;
09: }
10:
11: public void setX(int x) {
12: this .x = x;
13: }
14:
15: public int getY() {
16: return y;
17: }
18:
19: public void setY(int y) {
20: this.y = y;
21: }
22: }
|