mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
GP-1214: Adding copy-into-progarm actions (plugin). Moving export action.
This commit is contained in:
parent
71c476bb6a
commit
1b5384c00c
38 changed files with 3855 additions and 505 deletions
|
@ -24,8 +24,8 @@ import ghidra.program.model.address.Address;
|
|||
import ghidra.program.model.listing.Program;
|
||||
|
||||
/**
|
||||
* A stubbed {@link ProgramManager} that used the 'second program' at the current program. This
|
||||
* is used to secondary views in order to install the right program.
|
||||
* A stubbed {@link ProgramManager} that used the 'second program' at the current program. This is
|
||||
* used to secondary views in order to install the right program.
|
||||
*/
|
||||
public class DiffProgramManager implements ProgramManager {
|
||||
ProgramDiffPlugin programDiffPlugin;
|
||||
|
@ -119,6 +119,26 @@ public class DiffProgramManager implements ProgramManager {
|
|||
// stub
|
||||
}
|
||||
|
||||
@Override
|
||||
public void saveProgram() {
|
||||
// stub
|
||||
}
|
||||
|
||||
@Override
|
||||
public void saveProgram(Program program) {
|
||||
// stub
|
||||
}
|
||||
|
||||
@Override
|
||||
public void saveProgramAs() {
|
||||
// stub
|
||||
}
|
||||
|
||||
@Override
|
||||
public void saveProgramAs(Program program) {
|
||||
// stub
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setCurrentProgram(Program p) {
|
||||
// stub
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue