01: package net.sourceforge.squirrel_sql.plugins.graph.xmlbeans;
02:
03: public class TableFrameXmlBean {
04: private int x;
05: private int y;
06: private int widht;
07: private int height;
08:
09: public int getX() {
10: return x;
11: }
12:
13: public void setX(int x) {
14: this .x = x;
15: }
16:
17: public int getY() {
18: return y;
19: }
20:
21: public void setY(int y) {
22: this .y = y;
23: }
24:
25: public int getWidht() {
26: return widht;
27: }
28:
29: public void setWidht(int widht) {
30: this .widht = widht;
31: }
32:
33: public int getHeight() {
34: return height;
35: }
36:
37: public void setHeight(int height) {
38: this.height = height;
39: }
40: }
|