1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00

Bug 109733: Request to make certain methods as public (MISession and MIInferior).

This commit is contained in:
Mikhail Khodjaiants 2006-05-25 20:17:19 +00:00
parent 4d7999030e
commit ae939f1fa5
3 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-05-25 Mikhail Khodjaiants
Bug 109733: Request to make certain methods as public (MISession and MIInferior).
* MIInferior.java
* MISession.java
2006-05-25 Mikhail Khodjaiants
Bug 109733: Request to make certain methods as public (null check for setPrompt).
* RxThread.java

View file

@ -7,6 +7,7 @@
*
* Contributors:
* QNX Software Systems - Initial API and implementation
* Hewlett-Packard Development Company - fix for bug 109733
*******************************************************************************/
package org.eclipse.cdt.debug.mi.core;
@ -52,7 +53,7 @@ public class MIInferior extends Process {
int inferiorPID;
MIInferior(MISession mi, IMITTY p) {
public MIInferior(MISession mi, IMITTY p) {
session = mi;
tty = p;
if (tty != null) {

View file

@ -7,6 +7,7 @@
*
* Contributors:
* QNX Software Systems - Initial API and implementation
* Hewlett-Packard Development Company - fix for bug 109733
*******************************************************************************/
package org.eclipse.cdt.debug.mi.core;
@ -612,6 +613,13 @@ public class MISession extends Observable {
return inferior;
}
/**
* Set the inferior "Process".
*/
public void setMIInferior(MIInferior inferior) {
this.inferior = inferior;
}
/**
* Return the "gdb" Process.
*/