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

📄 editablebinary.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 AbstractBinaryEditor
 *    and its ilk.
 */
public interface editablebinary
{
    /**
     *    sets the value of the editable object.
     *    @param bytes an array of bytes that may be edited later.
     */
    public void setValue(byte[] bytes);
    
    /**
     *    gets the value of the edited object.
     *    @return the array of edited bytes.
     */
    public byte[] getValue();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -