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. package com.sun.mirror.declaration;
  8. /**
  9. * Represents an enum constant declaration.
  10. *
  11. * @author Joseph D. Darcy
  12. * @author Scott Seligman
  13. * @version 1.2 04/03/09
  14. * @since 1.5
  15. */
  16. public interface EnumConstantDeclaration extends FieldDeclaration {
  17. /**
  18. * {@inheritDoc}
  19. */
  20. EnumDeclaration getDeclaringType();
  21. }