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/OperatorExpressionT.java


1   /*
2    * @(#)OperatorExpressionT.java
3    */
4   
5   package javax.ide.model.java.source.tree;
6   
7   /**
8    * Common supertype for multi-operand operations. Note: Here,
9    * "operator" is NOT synonymous with "has operands". All expressions
10   * may have operands, but not all expressions perform operations on
11   * their operands. <p/>
12   *
13   * @author Andy Yu
14   * */
15  public interface OperatorExpressionT
16    extends ExpressionT
17  {
18  }