📄 editablebinary.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 + -