Class Chunk
- java.lang.Object
-
- ghidra.framework.main.logviewer.model.Chunk
-
public class Chunk extends java.lang.Object
A chunk represents the basic unit of text that is displayed in theFVTable
. This does NOT contain the actual text being displayed; rather it contains metadata describing the text (start/end byte positions, number of lines in the chunk, etc...). It should be noted that chunks are transient - they are created and destroyed as different sections of the file are required for display.
-
-
Field Summary
Fields Modifier and Type Field Description long
end
int
linesInChunk
java.util.Map<java.lang.Integer,Pair>
rowToFilePositionMap
long
start
-
Constructor Summary
Constructors Constructor Description Chunk()
-
-
-
Field Detail
-
start
public long start
-
end
public long end
-
rowToFilePositionMap
public java.util.Map<java.lang.Integer,Pair> rowToFilePositionMap
-
linesInChunk
public int linesInChunk
-
-