Class HexModelChangedEvent
- java.lang.Object
-
- org.apache.pdfbox.debugger.hexviewer.HexModelChangedEvent
-
class HexModelChangedEvent extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static int
BULK_CHANGE
private int
changeType
(package private) static int
SINGLE_CHANGE
private int
startIndex
-
Constructor Summary
Constructors Constructor Description HexModelChangedEvent(int startIndex, int changeType)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) int
getChangeType()
(package private) int
getStartIndex()
-
-
-
Field Detail
-
BULK_CHANGE
static final int BULK_CHANGE
- See Also:
- Constant Field Values
-
SINGLE_CHANGE
static final int SINGLE_CHANGE
- See Also:
- Constant Field Values
-
startIndex
private final int startIndex
-
changeType
private final int changeType
-
-
Constructor Detail
-
HexModelChangedEvent
HexModelChangedEvent(int startIndex, int changeType)
Constructor.- Parameters:
startIndex
- int. From where changes start.changeType
- int. Change type if it is only a single change or a bulk change by pasting or deleting. Though later features are not yet implemented.
-
-