KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > bytecode > AttrContainer


1 // Copyright (c) 1997 Per M.A. Bothner.
2
// This is free software; for terms and warranty disclaimer see ./COPYING.
3

4 package gnu.bytecode;
5
6 /** An interface for objects that (may) contain Attribute objects. */
7
8 public interface AttrContainer
9 {
10   /** Get the (first) Attribute of this container. */
11   public Attribute getAttributes ();
12
13   /** Set the (list of) Attributes of this container. */
14   public void setAttributes (Attribute attribute);
15 }
16
Popular Tags