AttrContainer.java 487 B

123456789101112131415161718
  1. // Copyright (c) 1997 Per M.A. Bothner.
  2. // This is free software; for terms and warranty disclaimer see ./COPYING.
  3. package gnu.bytecode;
  4. /** An interface for objects that (may) contain Attribute objects. */
  5. public interface AttrContainer
  6. {
  7. /** Get the (first) Attribute of this container. */
  8. public Attribute getAttributes ();
  9. /** Set the (list of) Attributes of this container. */
  10. public void setAttributes (Attribute attribute);
  11. public ConstantPool getConstants ();
  12. }