KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > source > tree > BlockTree


1 /*
2  * @(#)BlockTree.java 1.2 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  *
7  * Use and Distribution is subject to the Java Research License available
8  * at <http://wwws.sun.com/software/communitysource/jrl.html>.
9  */

10
11 package com.sun.source.tree;
12
13 import java.util.List JavaDoc;
14
15 /**
16  * A tree node for a statement block.
17  *
18  * For example:
19  * <pre>
20  * { }
21  *
22  * { <em>statements</em> }
23  *
24  * static { <em>statements</em> }
25  * </pre>
26  *
27  * @see "The Java Language Specification, 3rd ed, section 14.2"
28  *
29  * @author Peter von der Ah&eacute;
30  * @author Jonathan Gibbons
31  * @since 1.6
32  */

33 public interface BlockTree extends StatementTree {
34     boolean isStatic();
35     List JavaDoc<? extends StatementTree> getStatements();
36 }
37
Popular Tags