KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > invicta > api > Property


1 package net.sf.invicta.api;
2
3 /**
4  * An interface that represents a property specified for a
5  * project (project properties), a property specified for a component
6  * (component properties) or a general property.
7  */

8 public interface Property {
9
10     /**
11      * Returns the name of the property.
12      * @return String. Property name.
13      */

14     public abstract String JavaDoc getName();
15     
16     /**
17      * Returns the value of the property.
18      * @return String. Property value.
19      */

20     public abstract String JavaDoc getValue();
21     
22     /**
23      * Returns the description of the property.
24      * Note: description is optional and may be null.
25      * @return String. Property description.
26      */

27     public abstract String JavaDoc getDescription();
28 }
Popular Tags