01: // Copyright (c) 1997 Per M.A. Bothner.
02: // This is free software; for terms and warranty disclaimer see ./COPYING.
03:
04: package gnu.bytecode;
05:
06: /** An interface for objects that (may) contain Attribute objects. */
07:
08: public interface AttrContainer {
09: /** Get the (first) Attribute of this container. */
10: public Attribute getAttributes();
11:
12: /** Set the (list of) Attributes of this container. */
13: public void setAttributes(Attribute attribute);
14: }
|