⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editablestring.java

📁 JAVA开源LDAP浏览器jxplorer的源码!
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -