01: /*
02: * Copyright (c) 2004 JETA Software, Inc. All rights reserved.
03: *
04: * Redistribution and use in source and binary forms, with or without modification,
05: * are permitted provided that the following conditions are met:
06: *
07: * o Redistributions of source code must retain the above copyright notice,
08: * this list of conditions and the following disclaimer.
09: *
10: * o Redistributions in binary form must reproduce the above copyright notice,
11: * this list of conditions and the following disclaimer in the documentation
12: * and/or other materials provided with the distribution.
13: *
14: * o Neither the name of JETA Software nor the names of its contributors may
15: * be used to endorse or promote products derived from this software without
16: * specific prior written permission.
17: *
18: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21: * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
22: * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23: * INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24: * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25: * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26: * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28: */
29:
30: package com.jeta.forms.gui.common;
31:
32: /**
33: * An interface that fully defines a RowSpec or ColumnSpec
34: *
35: * @author Jeff Tassin
36: */
37: public interface FormSpecDefinition {
38: /**
39: * @return the alignment string depending on the specification type column:
40: * LEFT, CENTER, RIGHT, RILL row: TOP, CENTER, BOTTOM, RILL
41: */
42: public String getAlignment();
43:
44: /**
45: * @return CONSTANT, COMPONENT, BOUNDED
46: */
47: public String getSizeType();
48:
49: /**
50: * @return the units (integer) (double) PX, PT, DLU IN, MM, CM
51: */
52: public String getConstantUnits();
53:
54: /**
55: * @return the size.
56: */
57: public double getConstantSize();
58:
59: /**
60: * @return the component size: MIN, PREF, DEFAULT
61: */
62: public String getComponentSize();
63:
64: /**
65: * @return the bounded size MIN, MAX
66: */
67: public String getBoundedSize();
68:
69: /**
70: * @return the resize behavior NONE, GROW
71: */
72: public String getResize();
73:
74: /**
75: * @return the resize weight (0.0-1.0)
76: */
77: public double getResizeWeight();
78:
79: }
|