Package org.fife.ui.hex.event
Class HexEditorEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.fife.ui.hex.event.HexEditorEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class HexEditorEvent extends java.util.EventObject
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private int
added
private int
offset
private int
removed
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description HexEditorEvent(HexEditor editor, int offs, int added, int removed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAddedCount()
HexEditor
getHexEditor()
int
getOffset()
int
getRemovedCount()
boolean
isModification()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
offset
private int offset
-
added
private int added
-
removed
private int removed
-
-
Constructor Detail
-
HexEditorEvent
public HexEditorEvent(HexEditor editor, int offs, int added, int removed)
-
-
Method Detail
-
getAddedCount
public int getAddedCount()
-
getHexEditor
public HexEditor getHexEditor()
-
getOffset
public int getOffset()
-
getRemovedCount
public int getRemovedCount()
-
isModification
public boolean isModification()
-
-