1 package attrib4j;
2
3 /***
4 * The interface which all attributes will implement. There
5 * are no methods at this point since I'm not sure how it should
6 * evolve. This class should be thought of as being on par with
7 * java.lang.reflect.Field and so on.
8 * There is a bit of implementation sneaking in here since we plan
9 * to serialize the attribute and store it in the .class file. Therefore
10 * custom attributes should be serializable if this attribute storage
11 * implementation is chosen.
12 *
13 * @author <a href="mailto:mpollack@speakeasy.net">Mark Pollack</a>
14 * @version $Revision: 1.7 $ $Date: 2003/03/22 17:56:20 $
15 */
16 public interface Attribute extends java.io.Serializable {
17
18 } //Attribute
This page was automatically generated by Maven