Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] new method on ICDISession

2002-10-22 Alain Magloire

	* src/.../cdi/ICDISession.java (getSessionProcess):
	New method to let user acess directly the debugger.


Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/ChangeLog,v
retrieving revision 1.24
diff -u -r1.24 ChangeLog
--- ChangeLog	21 Oct 2002 03:41:16 -0000	1.24
+++ ChangeLog	22 Oct 2002 20:31:02 -0000
@@ -1,3 +1,8 @@
+2002-10-22 Alain Magloire
+
+	* src/.../cdi/ICDISession.java (getSessionProcess):
+	New method to let user acess directly the debugger.
+
 2002-10-20 Mikhail Khodjaiants
 	Added a functionality needed to process ICDIMemoryChangedEvent.
 	* IFormattedMemoryBlock.java
@@ -5,10 +10,10 @@
  
 2002-10-20 Alain Magloire
 
-	* src/.../cdi/model/CTarget.java (getMemoryBlock): Remove
+	* src/.../cdi/model/ICDITarget.java (getMemoryBlock): Remove
 	we use the MemoryManager instead.
 	(evaluateExpressionToValue): Remove not used.
-	* src/.../cdi/model/SourceManager.java (getFile): Remove not use.
+	* src/.../cdi/model/ICDISourceManager.java (getFile): Remove not use.
 	(setFile): Remove not use.
 	(reset): Remove not use.
 
Index: src/org/eclipse/cdt/debug/core/cdi/ICDISession.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDISession.java,v
retrieving revision 1.8
diff -u -r1.8 ICDISession.java
--- src/org/eclipse/cdt/debug/core/cdi/ICDISession.java	23 Sep 2002 18:03:12 -0000	1.8
+++ src/org/eclipse/cdt/debug/core/cdi/ICDISession.java	22 Oct 2002 20:31:02 -0000
@@ -110,4 +110,10 @@
 	 */
 	void terminate() throws CDIException;
 	
+	/**
+	 * Gaves direct access to the underlying debugger process.
+	 * @return the debugger process.
+	 */
+	Process getSessionProcess() throws CDIException;
+	
 }



Back to the top