1. /*
  2. * @(#)MemberDoc.java 1.8 03/12/19
  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.javadoc;
  8. /**
  9. * Represents a member of a java class: field, constructor, or method.
  10. * This is an abstract class dealing with information common to
  11. * method, constructor and field members. Class members of a class
  12. * (innerclasses) are represented instead by ClassDoc.
  13. *
  14. * @see MethodDoc
  15. * @see FieldDoc
  16. * @see ClassDoc
  17. *
  18. * @author Kaiyang Liu (original)
  19. * @author Robert Field (rewrite)
  20. */
  21. public interface MemberDoc extends ProgramElementDoc {
  22. /**
  23. * Returns true if this member was synthesized by the compiler.
  24. */
  25. boolean isSynthetic();
  26. }