KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

13 public class MultiLineStringProperty implements Property {
14     
15     private String JavaDoc value = "";
16     
17     /** Creates a new instance of StringProperty */
18     public MultiLineStringProperty(String JavaDoc value) {
19         this.value=value;
20     }
21     
22     public String JavaDoc getProperty() {
23         return value;
24     }
25     
26     public void setProperty(String JavaDoc value) {
27         this.value=value;
28     }
29 }
30
Popular Tags