01: package net.sourceforge.squirrel_sql.plugins.graph.xmlbeans;
02:
03: public class ZoomerXmlBean {
04: private double zoom;
05: private double oldZoom;
06: private boolean enabled;
07: private boolean hideScrollbars;
08:
09: public double getZoom() {
10: return zoom;
11: }
12:
13: public void setZoom(double zoom) {
14: this .zoom = zoom;
15: }
16:
17: public double getOldZoom() {
18: return oldZoom;
19: }
20:
21: public void setOldZoom(double oldZoom) {
22: this .oldZoom = oldZoom;
23: }
24:
25: public boolean isEnabled() {
26: return enabled;
27: }
28:
29: public void setEnabled(boolean enabled) {
30: this .enabled = enabled;
31: }
32:
33: public boolean isHideScrollbars() {
34: return hideScrollbars;
35: }
36:
37: public void setHideScrollbars(boolean hideScrollbars) {
38: this.hideScrollbars = hideScrollbars;
39: }
40: }
|