1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
package com.sun.tools.javafx.tree; |
27 | |
|
28 | |
import com.sun.tools.javac.tree.JCTree; |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
public abstract class JavafxTag extends JCTree { |
34 | |
|
35 | 0 | private JavafxTag() { |
36 | 0 | } |
37 | |
|
38 | |
|
39 | |
|
40 | |
public static final int CLASS_DEF = LETEXPR + 1; |
41 | |
|
42 | |
|
43 | |
|
44 | |
public static final int FUNCTION_DEF = CLASS_DEF + 1; |
45 | |
|
46 | |
|
47 | |
|
48 | |
public static final int INIT_DEF = FUNCTION_DEF + 1; |
49 | |
|
50 | |
|
51 | |
|
52 | |
public static final int POSTINIT_DEF = INIT_DEF + 1; |
53 | |
|
54 | |
|
55 | |
|
56 | |
public static final int VAR_DEF = POSTINIT_DEF + 1; |
57 | |
|
58 | |
|
59 | |
|
60 | |
public static final int OVERRIDE_ATTRIBUTE_DEF = VAR_DEF + 1; |
61 | |
|
62 | |
|
63 | |
|
64 | |
public static final int ON_REPLACE = OVERRIDE_ATTRIBUTE_DEF + 1; |
65 | |
|
66 | |
|
67 | |
|
68 | |
public static final int ON_REPLACE_ELEMENT = ON_REPLACE + 1; |
69 | |
|
70 | |
|
71 | |
|
72 | |
public static final int ON_INSERT_ELEMENT = ON_REPLACE_ELEMENT + 1; |
73 | |
|
74 | |
|
75 | |
|
76 | |
public static final int ON_DELETE_ELEMENT = ON_INSERT_ELEMENT + 1; |
77 | |
|
78 | |
|
79 | |
|
80 | |
public static final int ON_DELETE_ALL = ON_DELETE_ELEMENT + 1; |
81 | |
|
82 | |
|
83 | |
|
84 | |
public static final int VARISOBJECTBEINGINITIALIZED = ON_DELETE_ALL + 1; |
85 | |
|
86 | |
|
87 | |
|
88 | |
public static final int SETATTRIBUTETOOBJECTBEINGINITIALIZED = VARISOBJECTBEINGINITIALIZED + 1; |
89 | |
|
90 | |
|
91 | |
|
92 | |
public static final int OBJECT_LITERAL_PART = SETATTRIBUTETOOBJECTBEINGINITIALIZED + 1; |
93 | |
|
94 | |
|
95 | |
|
96 | |
public static final int OBJECT_LITERAL = OBJECT_LITERAL_PART + 1; |
97 | |
|
98 | |
|
99 | |
|
100 | |
public static final int STRING_EXPRESSION = OBJECT_LITERAL + 1; |
101 | |
|
102 | |
|
103 | |
|
104 | |
public static final int BIND_EXPRESSION = STRING_EXPRESSION + 1; |
105 | |
|
106 | |
|
107 | |
|
108 | |
public static final int FOR_EXPRESSION = BIND_EXPRESSION + 1; |
109 | |
|
110 | |
|
111 | |
|
112 | |
public static final int FOR_EXPRESSION_IN_CLAUSE = FOR_EXPRESSION + 1; |
113 | |
|
114 | |
|
115 | |
|
116 | |
public static final int BLOCK_EXPRESSION = FOR_EXPRESSION_IN_CLAUSE + 1; |
117 | |
|
118 | |
|
119 | |
|
120 | |
public static final int SEQUENCE_EXPLICIT = BLOCK_EXPRESSION + 1; |
121 | |
|
122 | |
|
123 | |
|
124 | |
public static final int SEQUENCE_RANGE = SEQUENCE_EXPLICIT + 1; |
125 | |
|
126 | |
|
127 | |
|
128 | |
public static final int SEQUENCE_EMPTY = SEQUENCE_RANGE + 1; |
129 | |
|
130 | |
|
131 | |
|
132 | |
public static final int SEQUENCE_INDEXED = SEQUENCE_EMPTY + 1; |
133 | |
|
134 | |
|
135 | |
|
136 | |
public static final int SEQUENCE_SLICE = SEQUENCE_INDEXED + 1; |
137 | |
|
138 | |
|
139 | |
|
140 | |
public static final int INSERT = SEQUENCE_SLICE + 1; |
141 | |
|
142 | |
|
143 | |
|
144 | |
public static final int DELETE = INSERT + 1; |
145 | |
|
146 | |
|
147 | |
|
148 | |
public static final int FUNCTIONEXPRESSION = DELETE + 1; |
149 | |
|
150 | |
|
151 | |
|
152 | |
public static final int TYPECLASS = FUNCTIONEXPRESSION + 1; |
153 | |
|
154 | |
|
155 | |
|
156 | |
public static final int TYPEFUNC = TYPECLASS + 1; |
157 | |
|
158 | |
|
159 | |
|
160 | |
public static final int TYPEANY = TYPEFUNC + 1; |
161 | |
|
162 | |
|
163 | |
|
164 | |
public static final int TYPEUNKNOWN = TYPEANY + 1; |
165 | |
|
166 | |
|
167 | |
|
168 | |
public static final int XOR = TYPEUNKNOWN + 1; |
169 | |
public static final int JFX_OP_FIRST = XOR; |
170 | |
|
171 | |
|
172 | |
|
173 | |
public static final int SIZEOF = XOR + 1; |
174 | |
|
175 | |
|
176 | |
|
177 | |
public static final int INDEXOF = SIZEOF + 1; |
178 | |
|
179 | |
|
180 | |
|
181 | |
public static final int REVERSE = INDEXOF + 1; |
182 | |
|
183 | |
|
184 | |
|
185 | |
public static final int TIME_LITERAL = REVERSE + 1; |
186 | |
|
187 | |
|
188 | |
|
189 | |
public static final int INTERPOLATION_EXPR = TIME_LITERAL + 1; |
190 | |
|
191 | |
|
192 | |
|
193 | |
public static final int INTERPOLATION_VALUE = INTERPOLATION_EXPR + 1; |
194 | |
|
195 | |
|
196 | |
|
197 | |
public static final int KEYFRAME_LITERAL = INTERPOLATION_VALUE + 1; |
198 | |
|
199 | |
public static final int JFX_OP_LAST = KEYFRAME_LITERAL; |
200 | |
} |