Class EmptyListingModel
- java.lang.Object
-
- ghidra.app.util.viewer.listingpanel.EmptyListingModel
-
- All Implemented Interfaces:
ListingModel
public class EmptyListingModel extends java.lang.Object implements ListingModel
-
-
Field Summary
-
Fields inherited from interface ghidra.app.util.viewer.listingpanel.ListingModel
DISPLAY_EXTERNAL_FUNCTION_POINTER_OPTION_NAME, DISPLAY_NONEXTERNAL_FUNCTION_POINTER_OPTION_NAME, FUNCTION_POINTER_OPTION_GROUP_NAME
-
-
Constructor Summary
Constructors Constructor Description EmptyListingModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addListener(ListingModelListener listener)
AddressSet
adjustAddressSetToCodeUnitBoundaries(AddressSet addressSet)
void
closeAllData(AddressSetView addresses, TaskMonitor monitor)
Closes all data found within the given addresses.void
closeAllData(Data data, TaskMonitor monitor)
Recursively close the given data and its sub-components.void
closeData(Data data)
Closes the given data, but not any sub-components.ListingModel
copy()
Makes a copy of this model.void
dispose()
Address
getAddressAfter(Address address)
Address
getAddressBefore(Address address)
AddressSetView
getAddressSet()
Layout
getLayout(Address address, boolean isGapAddress)
int
getMaxWidth()
Program
getProgram()
boolean
isClosed()
boolean
isOpen(Data object)
Returns true if the data is openvoid
openAllData(AddressSetView addresses, TaskMonitor monitor)
Opens all data found within the given addresses.void
openAllData(Data data, TaskMonitor monitor)
Recursively open the given data and its sub-components.boolean
openData(Data data)
Opens the given data, but not any sub-components.void
removeListener(ListingModelListener listener)
void
setFormatManager(FormatManager formatManager)
void
toggleOpen(Data object)
Changes the open state of the given data (open -> closes; closed-> open).
-
-
-
Method Detail
-
addListener
public void addListener(ListingModelListener listener)
- Specified by:
addListener
in interfaceListingModel
-
getAddressAfter
public Address getAddressAfter(Address address)
- Specified by:
getAddressAfter
in interfaceListingModel
-
getAddressBefore
public Address getAddressBefore(Address address)
- Specified by:
getAddressBefore
in interfaceListingModel
-
getAddressSet
public AddressSetView getAddressSet()
- Specified by:
getAddressSet
in interfaceListingModel
-
getLayout
public Layout getLayout(Address address, boolean isGapAddress)
- Specified by:
getLayout
in interfaceListingModel
-
getMaxWidth
public int getMaxWidth()
- Specified by:
getMaxWidth
in interfaceListingModel
-
getProgram
public Program getProgram()
- Specified by:
getProgram
in interfaceListingModel
-
isOpen
public boolean isOpen(Data object)
Description copied from interface:ListingModel
Returns true if the data is open- Specified by:
isOpen
in interfaceListingModel
- Parameters:
object
- the data to check- Returns:
- true if the data is open
-
removeListener
public void removeListener(ListingModelListener listener)
- Specified by:
removeListener
in interfaceListingModel
-
toggleOpen
public void toggleOpen(Data object)
Description copied from interface:ListingModel
Changes the open state of the given data (open -> closes; closed-> open).- Specified by:
toggleOpen
in interfaceListingModel
- Parameters:
object
- the data to open
-
openAllData
public void openAllData(Data data, TaskMonitor monitor)
Description copied from interface:ListingModel
Recursively open the given data and its sub-components.- Specified by:
openAllData
in interfaceListingModel
- Parameters:
data
- the data to openmonitor
- the task monitor
-
closeAllData
public void closeAllData(Data data, TaskMonitor monitor)
Description copied from interface:ListingModel
Recursively close the given data and its sub-components.- Specified by:
closeAllData
in interfaceListingModel
- Parameters:
data
- the data to closemonitor
- the task monitor
-
closeData
public void closeData(Data data)
Description copied from interface:ListingModel
Closes the given data, but not any sub-components.- Specified by:
closeData
in interfaceListingModel
- Parameters:
data
- the data to close
-
openData
public boolean openData(Data data)
Description copied from interface:ListingModel
Opens the given data, but not any sub-components.- Specified by:
openData
in interfaceListingModel
- Parameters:
data
- the data to open- Returns:
- true if the data was opened (will return false if the data is already open or has no children)
-
openAllData
public void openAllData(AddressSetView addresses, TaskMonitor monitor)
Description copied from interface:ListingModel
Opens all data found within the given addresses. Each data is fully opened.- Specified by:
openAllData
in interfaceListingModel
- Parameters:
addresses
- the range of addresses to search for datamonitor
- the task monitor
-
closeAllData
public void closeAllData(AddressSetView addresses, TaskMonitor monitor)
Description copied from interface:ListingModel
Closes all data found within the given addresses. Each data is fully closed.- Specified by:
closeAllData
in interfaceListingModel
- Parameters:
addresses
- the range of addresses to search for datamonitor
- the task monitor
-
isClosed
public boolean isClosed()
- Specified by:
isClosed
in interfaceListingModel
-
setFormatManager
public void setFormatManager(FormatManager formatManager)
- Specified by:
setFormatManager
in interfaceListingModel
-
dispose
public void dispose()
- Specified by:
dispose
in interfaceListingModel
-
adjustAddressSetToCodeUnitBoundaries
public AddressSet adjustAddressSetToCodeUnitBoundaries(AddressSet addressSet)
- Specified by:
adjustAddressSetToCodeUnitBoundaries
in interfaceListingModel
-
copy
public ListingModel copy()
Description copied from interface:ListingModel
Makes a copy of this model.- Specified by:
copy
in interfaceListingModel
- Returns:
- a copy of this model.
-
-