Source code: javax/ide/model/java/source/tree/PackageT.java
1 /*
2 * @(#)PackageT.java
3 */
4
5 package javax.ide.model.java.source.tree;
6
7 /**
8 * A package declaration. <p/>
9 *
10 * @author Andy Yu
11 * */
12 public interface PackageT
13 extends Tree, HasNameT, HasModifiersT
14 {
15 // ----------------------------------------------------------------------
16
17 /**
18 * Gets the javadoc comment symbol.
19 *
20 * @return The DocCommentT associated with this symbol.
21 */
22 public DocCommentT getDocComment();
23
24 /**
25 * Attempts to set the javadoc comment symbol.
26 *
27 * @param comment The new comment element.
28 */
29 public void setDocComment( DocCommentT comment );
30
31
32 }