mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 109733: Request to make certain methods as public (MISession and MIInferior).
This commit is contained in:
parent
4d7999030e
commit
ae939f1fa5
3 changed files with 15 additions and 1 deletions
|
@ -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
|
2006-05-25 Mikhail Khodjaiants
|
||||||
Bug 109733: Request to make certain methods as public (null check for setPrompt).
|
Bug 109733: Request to make certain methods as public (null check for setPrompt).
|
||||||
* RxThread.java
|
* RxThread.java
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* QNX Software Systems - Initial API and implementation
|
* QNX Software Systems - Initial API and implementation
|
||||||
|
* Hewlett-Packard Development Company - fix for bug 109733
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.debug.mi.core;
|
package org.eclipse.cdt.debug.mi.core;
|
||||||
|
|
||||||
|
@ -52,7 +53,7 @@ public class MIInferior extends Process {
|
||||||
|
|
||||||
int inferiorPID;
|
int inferiorPID;
|
||||||
|
|
||||||
MIInferior(MISession mi, IMITTY p) {
|
public MIInferior(MISession mi, IMITTY p) {
|
||||||
session = mi;
|
session = mi;
|
||||||
tty = p;
|
tty = p;
|
||||||
if (tty != null) {
|
if (tty != null) {
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* QNX Software Systems - Initial API and implementation
|
* QNX Software Systems - Initial API and implementation
|
||||||
|
* Hewlett-Packard Development Company - fix for bug 109733
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.debug.mi.core;
|
package org.eclipse.cdt.debug.mi.core;
|
||||||
|
|
||||||
|
@ -612,6 +613,13 @@ public class MISession extends Observable {
|
||||||
return inferior;
|
return inferior;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the inferior "Process".
|
||||||
|
*/
|
||||||
|
public void setMIInferior(MIInferior inferior) {
|
||||||
|
this.inferior = inferior;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the "gdb" Process.
|
* Return the "gdb" Process.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue