1
0
Fork 0
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:
Alain Magloire 2002-10-02 04:54:50 +00:00
parent aeb2c89c90
commit f1af1d30d1
2 changed files with 8 additions and 0 deletions

View file

@ -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();

View file

@ -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();