mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
add help method.
This commit is contained in:
parent
aeb2c89c90
commit
f1af1d30d1
2 changed files with 8 additions and 0 deletions
|
@ -24,6 +24,10 @@ public class MIDataListChangedRegisters extends MICommand
|
|||
super("-data-list-changed-registers" );
|
||||
}
|
||||
|
||||
public MIDataListChangedRegistersInfo getMIDataListChangedRegistersInfo() throws MIException {
|
||||
return (MIDataListChangedRegistersInfo)getMIInfo();
|
||||
}
|
||||
|
||||
public MIInfo getMIInfo() throws MIException {
|
||||
MIInfo info = null;
|
||||
MIOutput out = getMIOutput();
|
||||
|
|
|
@ -71,6 +71,10 @@ public class MIDataListRegisterValues extends MICommand
|
|||
}
|
||||
}
|
||||
|
||||
public MIDataListRegisterValuesInfo getMIDataListRegisterValuesInfo() throws MIException {
|
||||
return (MIDataListRegisterValuesInfo)getMIInfo();
|
||||
}
|
||||
|
||||
public MIInfo getMIInfo() throws MIException {
|
||||
MIInfo info = null;
|
||||
MIOutput out = getMIOutput();
|
||||
|
|
Loading…
Add table
Reference in a new issue