| Home >> All >> javax >> ide >> model >> java >> source >> [ tree Javadoc ] |
Source code: javax/ide/model/java/source/tree/BlockElementT.java
1 /* 2 * @(#)BlockElementT.java 3 */ 4 5 package javax.ide.model.java.source.tree; 6 7 /** 8 * Common supertype for elements that may be a child of a code 9 * block. <p/> 10 * 11 * @author Andy Yu 12 */ 13 public interface BlockElementT 14 extends Tree 15 { 16 // ---------------------------------------------------------------------- 17 18 public static BlockElementT[] EMPTY_ARRAY = new BlockElementT[ 0 ]; 19 }