editablebinary.java

来自「JAVA开源LDAP浏览器jxplorer的源码!」· Java 代码 · 共 21 行

JAVA
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?