Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: javax/ide/model/java/source/tree/InfixExpressionT.java


1   /*
2    * @(#)InfixExpressionT.java
3    */
4   
5   package javax.ide.model.java.source.tree;
6   
7   /**
8    * An expression involving an infix operation (but not an assignment
9    * operation). Infix expressions usually have two operands.
10   * Commutative and associative operators may have more than two. The
11   * infix operators are: <p/>
12   *
13   * <pre>
14   *   + - * / % && || & | ^ instanceof
15   * </pre>
16   *
17   * @author Andy Yu
18   * */
19  public interface InfixExpressionT
20    extends OperatorExpressionT
21  {
22  }