KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ca > directory > jxplorer > editor > editablestring


1 package com.ca.directory.jxplorer.editor;
2
3 /**
4  * This interface defines the functionality required of
5  * an object that can be edited by an AbstractEditableString.
6  * @author Trudi
7  */

8  
9 public interface editablestring
10 {
11     /**
12      * te: sets the value of the editable object.
13      * @param String that may be edited later.
14      *
15      */

16     public void setStringValue(String JavaDoc attString);
17     
18     /**
19      * te: gets the value of the edited object.
20      * @return the edited String.
21      *
22      */

23     public String JavaDoc getStringValue();
24 }
Popular Tags