mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Merge remote-tracking branch 'origin/GP-3979_ghidragon_program_caching--SQUASHED'
This commit is contained in:
commit
2e5b4fc22a
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