KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > it > businesslogic > ireport > OperationType


1 /*
2  * Copyright (C) 2005 - 2006 JasperSoft Corporation. All rights reserved.
3  * http://www.jaspersoft.com.
4  *
5  * Unless you have purchased a commercial license agreement from JasperSoft,
6  * the following license terms apply:
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as published by
10  * the Free Software Foundation.
11  *
12  * This program is distributed WITHOUT ANY WARRANTY; and without the
13  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
18  * or write to:
19  *
20  * Free Software Foundation, Inc.,
21  * 59 Temple Place - Suite 330,
22  * Boston, MA USA 02111-1307
23  *
24  *
25  *
26  *
27  * OperationType.java
28  *
29  */

30
31 package it.businesslogic.ireport;
32
33 public class OperationType
34 {
35     public static final int ALIGN_LEFT =1;
36     public static final int ALIGN_RIGHT =2;
37     public static final int ALIGN_TOP =3;
38     public static final int ALIGN_BOTTOM =4;
39     public static final int ALIGN_CENTER_VERTICALLY =5;
40     public static final int ALIGN_CENTER_HORIZONTALLY =6;
41     public static final int ALIGN_CENTER =7;
42     public static final int ALIGN_VERTICAL_AXIS =8;
43     public static final int ALIGN_HORIZONTAL_AXIS =9;
44     
45     public static final int SAME_SIZE =10;
46     public static final int SAME_WIDTH =11;
47     public static final int SAME_HEIGHT =12;
48     
49     public static final int SPACE_HORIZONTALLY =12;
50     public static final int SPACE_VERTICALLY =13;
51     
52     public static final int ALIGN_TOP_TO_BAND =14;
53         public static final int ALIGN_BOTTOM_TO_BAND =15;
54     public static final int BRING_TO_FRON =16;
55     public static final int SEND__TO_BACK =17;
56         
57         public static final int SAME_WIDTH_MAX =18;
58     public static final int SAME_HEIGHT_MAX =19;
59         public static final int SAME_WIDTH_MIN =20;
60     public static final int SAME_HEIGHT_MIN =21;
61         
62         public static final int CENTER_IN_BAND_H =22;
63         public static final int CENTER_IN_BAND_V =23;
64         public static final int CENTER_IN_BAND =24;
65         public static final int CENTER_IN_BACKGROUND =25;
66         public static final int JOIN_LEFT =26;
67         public static final int JOIN_RIGHT =27;
68         
69         public static final int EQUALS_SPACE_H =28;
70         public static final int INCREASE_SPACE_H =29;
71         public static final int DECREASE_SPACE_H =30;
72         public static final int REMOVE_SPACE_H =26;
73         
74         public static final int EQUALS_SPACE_V =32;
75         public static final int INCREASE_SPACE_V =33;
76         public static final int DECREASE_SPACE_V =34;
77         public static final int REMOVE_SPACE_V =35;
78         
79         public static final int ALIGN_TO_LEFT_MARGIN =36;
80         public static final int ALIGN_TO_RIGHT_MARGIN =37;
81         public static final int MOVE_TO_LEFT_MARGIN =38;
82         public static final int MOVE_TO_RIGHT_MARGIN =39;
83         
84         public static final int ORGANIZE_AS_A_TABLE =40;
85         public static final int ELEMENT_MAXIMIZE =41;
86         public static final int ELEMENT_MAXIMIZE_H =42;
87         public static final int ELEMENT_MAXIMIZE_V =43;
88         
89         public static final int SHRINK =44;
90         public static final int SHRINK_ALL =45;
91         
92 }
93
94
Popular Tags