com.ca.directory.jxplorer.editor
Interface EditableBinary

All Known Implementing Classes:
AttributeValue

public interface EditableBinary

This interface defines the functionality required of an object that can be edited by an AbstractBinaryEditor and its ilk.


Method Summary
 byte[] getValue()
          gets the value of the edited object.
 void setValue(byte[] bytes)
          sets the value of the editable object.
 

Method Detail

setValue

public void setValue(byte[] bytes)
sets the value of the editable object.

Parameters:
bytes - an array of bytes that may be edited later.

getValue

public byte[] getValue()
gets the value of the edited object.

Returns:
the array of edited bytes.