editablestring.java
来自「JAVA开源LDAP浏览器jxplorer的源码!」· Java 代码 · 共 24 行
JAVA
24 行
package com.ca.directory.jxplorer.editor;
/**
* This interface defines the functionality required of
* an object that can be edited by an AbstractEditableString.
* @author Trudi
*/
public interface editablestring
{
/**
* te: sets the value of the editable object.
* @param String that may be edited later.
*
*/
public void setStringValue(String attString);
/**
* te: gets the value of the edited object.
* @return the edited String.
*
*/
public String getStringValue();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?