author | tonyp |
Wed, 19 Aug 2009 12:53:25 -0400 | |
changeset 3691 | c84b8483cd2c |
parent 2678 | 57cf2a1c1a05 |
permissions | -rw-r--r-- |
8 | 1 |
/* |
2678
57cf2a1c1a05
6831313: update jaxws in OpenJDK7 to 2.1 plus bug fixes from OpenJDK 6
tbell
parents:
8
diff
changeset
|
2 |
* Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved. |
8 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Sun designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Sun in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
* have any questions. |
|
24 |
*/ |
|
25 |
||
26 |
package com.sun.codemodel.internal; |
|
27 |
||
28 |
||
29 |
/** |
|
30 |
* A Java expression. |
|
31 |
* |
|
32 |
* <p> |
|
33 |
* Unlike most of CodeModel, JExpressions are built bottom-up ( |
|
34 |
* meaning you start from leaves and then gradually build compliated expressions |
|
35 |
* by combining them.) |
|
36 |
* |
|
37 |
* <p> |
|
38 |
* {@link JExpression} defines a series of composer methods, |
|
39 |
* which returns a complicated expression (by often taking other {@link JExpression}s |
|
40 |
* as parameters. |
|
41 |
* For example, you can build "5+2" by |
|
42 |
* <tt>JExpr.lit(5).add(JExpr.lit(2))</tt> |
|
43 |
*/ |
|
44 |
public interface JExpression extends JGenerable { |
|
45 |
/** |
|
46 |
* Returns "-[this]" from "[this]". |
|
47 |
*/ |
|
48 |
JExpression minus(); |
|
49 |
||
50 |
/** |
|
51 |
* Returns "![this]" from "[this]". |
|
52 |
*/ |
|
53 |
JExpression not(); |
|
54 |
/** |
|
55 |
* Returns "~[this]" from "[this]". |
|
56 |
*/ |
|
57 |
JExpression complement(); |
|
58 |
||
59 |
/** |
|
60 |
* Returns "[this]++" from "[this]". |
|
61 |
*/ |
|
62 |
JExpression incr(); |
|
63 |
||
64 |
/** |
|
65 |
* Returns "[this]--" from "[this]". |
|
66 |
*/ |
|
67 |
JExpression decr(); |
|
68 |
||
69 |
/** |
|
70 |
* Returns "[this]+[right]" |
|
71 |
*/ |
|
72 |
JExpression plus(JExpression right); |
|
73 |
||
74 |
/** |
|
75 |
* Returns "[this]-[right]" |
|
76 |
*/ |
|
77 |
JExpression minus(JExpression right); |
|
78 |
||
79 |
/** |
|
80 |
* Returns "[this]*[right]" |
|
81 |
*/ |
|
82 |
JExpression mul(JExpression right); |
|
83 |
||
84 |
/** |
|
85 |
* Returns "[this]/[right]" |
|
86 |
*/ |
|
87 |
JExpression div(JExpression right); |
|
88 |
||
89 |
/** |
|
90 |
* Returns "[this]%[right]" |
|
91 |
*/ |
|
92 |
JExpression mod(JExpression right); |
|
93 |
||
94 |
/** |
|
95 |
* Returns "[this]<<[right]" |
|
96 |
*/ |
|
97 |
JExpression shl(JExpression right); |
|
98 |
||
99 |
/** |
|
100 |
* Returns "[this]>>[right]" |
|
101 |
*/ |
|
102 |
JExpression shr(JExpression right); |
|
103 |
||
104 |
/** |
|
105 |
* Returns "[this]>>>[right]" |
|
106 |
*/ |
|
107 |
JExpression shrz(JExpression right); |
|
108 |
||
109 |
/** Bit-wise AND '&'. */ |
|
110 |
JExpression band(JExpression right); |
|
111 |
||
112 |
/** Bit-wise OR '|'. */ |
|
113 |
JExpression bor(JExpression right); |
|
114 |
||
115 |
/** Logical AND '&&'. */ |
|
116 |
JExpression cand(JExpression right); |
|
117 |
||
118 |
/** Logical OR '||'. */ |
|
119 |
JExpression cor(JExpression right); |
|
120 |
||
121 |
JExpression xor(JExpression right); |
|
122 |
JExpression lt(JExpression right); |
|
123 |
JExpression lte(JExpression right); |
|
124 |
JExpression gt(JExpression right); |
|
125 |
JExpression gte(JExpression right); |
|
126 |
JExpression eq(JExpression right); |
|
127 |
JExpression ne(JExpression right); |
|
128 |
||
129 |
/** |
|
130 |
* Returns "[this] instanceof [right]" |
|
131 |
*/ |
|
132 |
JExpression _instanceof(JType right); |
|
133 |
||
134 |
/** |
|
135 |
* Returns "[this].[method]". |
|
136 |
* |
|
137 |
* Arguments shall be added to the returned {@link JInvocation} object. |
|
138 |
*/ |
|
139 |
JInvocation invoke(JMethod method); |
|
140 |
||
141 |
/** |
|
142 |
* Returns "[this].[method]". |
|
143 |
* |
|
144 |
* Arguments shall be added to the returned {@link JInvocation} object. |
|
145 |
*/ |
|
146 |
JInvocation invoke(String method); |
|
147 |
JFieldRef ref(JVar field); |
|
148 |
JFieldRef ref(String field); |
|
149 |
JArrayCompRef component(JExpression index); |
|
150 |
} |