Package ghidra.app.util
Class SelectionTransferData
- java.lang.Object
-
- ghidra.app.util.SelectionTransferData
-
public class SelectionTransferData extends java.lang.Object
Data that is the transferable in SelectionTransferable; it contains an address set and the path of the program.
-
-
Constructor Summary
Constructors Constructor Description SelectionTransferData(AddressSetView set, java.lang.String programPath)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AddressSetView
getAddressSet()
Return the address set.java.lang.String
getProgramPath()
Return the program path.
-
-
-
Constructor Detail
-
SelectionTransferData
public SelectionTransferData(AddressSetView set, java.lang.String programPath)
Constructor- Parameters:
set
- address set to transferprogramPath
- path to the program that contains the set
-
-
Method Detail
-
getProgramPath
public java.lang.String getProgramPath()
Return the program path.
-
getAddressSet
public AddressSetView getAddressSet()
Return the address set.
-
-