KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > editor > app > core > properties > Property


1 /*
2  * Property.java
3  *
4  * Created on December 10, 2002, 5:42 PM
5  */

6
7 package org.netbeans.test.editor.app.core.properties;
8
9 /**
10  *
11  * @author eh103527
12  */

13 public interface Property {
14     public String JavaDoc getProperty();
15     public void setProperty(String JavaDoc value);
16 }
17
Popular Tags