< prev index next >

src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/JExpression.java

Print this page

        

*** 37,47 **** * <p> * {@link JExpression} defines a series of composer methods, * which returns a complicated expression (by often taking other {@link JExpression}s * as parameters. * For example, you can build "5+2" by ! * <tt>JExpr.lit(5).add(JExpr.lit(2))</tt> */ public interface JExpression extends JGenerable { /** * Returns "-[this]" from "[this]". */ --- 37,47 ---- * <p> * {@link JExpression} defines a series of composer methods, * which returns a complicated expression (by often taking other {@link JExpression}s * as parameters. * For example, you can build "5+2" by ! * {@code JExpr.lit(5).add(JExpr.lit(2))} */ public interface JExpression extends JGenerable { /** * Returns "-[this]" from "[this]". */
< prev index next >