Package ghidra.app.util.viewer.format
Class FieldHeaderLocation
- java.lang.Object
-
- ghidra.app.util.viewer.format.FieldHeaderLocation
-
public class FieldHeaderLocation extends java.lang.Object
Class used to represent a location within the field header component.
-
-
Constructor Summary
Constructors Constructor Description FieldHeaderLocation(FieldFormatModel model, FieldFactory factory, int row, int col)
Construct a new FieldHeaderLocation
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumn()
Returns the header column for this location.FieldFactory
getFieldFactory()
Returns the field factory for this location.FieldFormatModel
getModel()
Returns the FieldFormatModel for this location.int
getRow()
Returns the header row for this location.
-
-
-
Constructor Detail
-
FieldHeaderLocation
public FieldHeaderLocation(FieldFormatModel model, FieldFactory factory, int row, int col)
Construct a new FieldHeaderLocation- Parameters:
model
- the model containing this locationfactory
- the factory the containing this location.row
- the row containing the factory in the headercol
- the column containing the factory in the header.
-
-
Method Detail
-
getRow
public int getRow()
Returns the header row for this location.
-
getColumn
public int getColumn()
Returns the header column for this location.
-
getModel
public FieldFormatModel getModel()
Returns the FieldFormatModel for this location.
-
getFieldFactory
public FieldFactory getFieldFactory()
Returns the field factory for this location.
-
-