01: /*
02: * MyGWT Widget Library
03: * Copyright(c) 2007, MyGWT.
04: * licensing@mygwt.net
05: *
06: * http://mygwt.net/license
07: */
08: package net.mygwt.ui.client.fx;
09:
10: /**
11: * Configuration data for resizable instances.
12: */
13: public class ResizeConfig {
14:
15: /**
16: * <code>true</code> to show the South handle, default value is
17: * <code>true</code>
18: */
19: public boolean south = true;
20:
21: /**
22: * <code>true</code> to show the South East handle, default value is
23: * <code>true</code>
24: */
25: public boolean southEast = true;
26:
27: /**
28: * <code>true</code> to show the East handle, default value is
29: * <code>true</code>
30: */
31: public boolean east = true;
32:
33: /**
34: * Creates a new config with default handle locations.
35: */
36: public ResizeConfig() {
37:
38: }
39:
40: }
|