mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-1288: post-review fixes
This commit is contained in:
parent
2c3d6704af
commit
09f00348fc
7 changed files with 11 additions and 6 deletions
|
@ -19,7 +19,7 @@ import ghidra.dbg.target.TargetAggregate;
|
|||
import ghidra.dbg.target.schema.*;
|
||||
|
||||
@TargetObjectSchemaInfo(
|
||||
name = "EventContainer",
|
||||
name = "ExceptionContainer",
|
||||
elements = {
|
||||
@TargetElementType(type = DbgModelTargetException.class) },
|
||||
attributes = {
|
||||
|
|
|
@ -26,7 +26,7 @@ import agent.dbgeng.model.iface2.*;
|
|||
import ghidra.dbg.target.schema.*;
|
||||
|
||||
@TargetObjectSchemaInfo(
|
||||
name = "ExecutionFilter",
|
||||
name = "ExecutionOption",
|
||||
elements = {
|
||||
@TargetElementType(type = Void.class) },
|
||||
attributes = {
|
||||
|
@ -39,7 +39,7 @@ public class DbgModelTargetExecutionOptionImpl extends DbgModelTargetObjectImpl
|
|||
|
||||
public DbgModelTargetExecutionOptionImpl(DbgModelTargetEvent event,
|
||||
DebugFilterExecutionOption option) {
|
||||
super(event.getModel(), event, "Execute", "ExecutionFilter");
|
||||
super(event.getModel(), event, "Execute", "ExecutionOption");
|
||||
this.event = event;
|
||||
this.getModel().addModelObject(option, this);
|
||||
this.optionExc = option;
|
||||
|
@ -48,7 +48,7 @@ public class DbgModelTargetExecutionOptionImpl extends DbgModelTargetObjectImpl
|
|||
|
||||
public DbgModelTargetExecutionOptionImpl(DbgModelTargetException exc,
|
||||
DebugFilterExecutionOption option) {
|
||||
super(exc.getModel(), exc, "Execute", "ExecutionFilter");
|
||||
super(exc.getModel(), exc, "Execute", "ExecutionOption");
|
||||
this.event = exc;
|
||||
this.getModel().addModelObject(option, this);
|
||||
this.optionExc = option;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue