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


1   /*
2    * @(#)TypecastExpressionT.java
3    */
4   
5   package javax.ide.model.java.source.tree;
6   
7   /**
8    * An expression performing a typecast operation. Though technically,
9    * a typecast is a prefix operation, it is here represented separately
10   * because it has two operands (a type lhs and an expression rhs) and
11   * it is not commonly thought of as a typical prefix operator.
12   *
13   * @author Andy Yu
14   * */
15  public interface TypecastExpressionT
16    extends OperatorExpressionT
17  {
18  }