mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-3970 program caching and refactoring of ProgramManager and OpenProgramTask
This commit is contained in:
parent
5d487a6518
commit
7d67188d0b
34 changed files with 2198 additions and 948 deletions
|
@ -20,6 +20,7 @@ import java.io.IOException;
|
|||
import java.util.*;
|
||||
|
||||
import db.Transaction;
|
||||
import ghidra.framework.data.DomainObjectFileListener;
|
||||
import ghidra.framework.model.*;
|
||||
import ghidra.framework.options.Options;
|
||||
import ghidra.framework.store.LockException;
|
||||
|
@ -149,6 +150,16 @@ public class StubProgram implements Program {
|
|||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addDomainFileListener(DomainObjectFileListener listener) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeDomainFileListener(DomainObjectFileListener listener) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
@Override
|
||||
public EventQueueID createPrivateEventQueue(DomainObjectListener listener, int maxDelay) {
|
||||
throw new UnsupportedOperationException();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue