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:
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
|
||||
Bug 109733: Request to make certain methods as public (null check for setPrompt).
|
||||
* RxThread.java
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue