KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > mirror > declaration > EnumConstantDeclaration


1 /*
2  * @(#)EnumConstantDeclaration.java 1.2 04/03/09
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.mirror.declaration;
9
10
11 /**
12  * Represents an enum constant declaration.
13  *
14  * @author Joseph D. Darcy
15  * @author Scott Seligman
16  * @version 1.2 04/03/09
17  * @since 1.5
18  */

19
20 public interface EnumConstantDeclaration extends FieldDeclaration {
21     /**
22      * {@inheritDoc}
23      */

24     EnumDeclaration getDeclaringType();
25 }
26
Popular Tags