Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] New method in CEditor class

Index: CEditor.java
===================================================================
RCS
Create new access method to make availabe CEditor's edit control.
Need it to attach help listener.

file:
/home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEdito
r.java,v
retrieving revision 1.9
diff -u -r1.9 CEditor.java
--- CEditor.java 17 Oct 2002 19:03:45 -0000 1.9
+++ CEditor.java 21 Oct 2002 18:03:00 -0000
@@ -817,6 +817,14 @@

   }
  }
+
+ /*
+  * Get the Sourceviewer object
+  */
+    public final ISourceViewer getCSourceViewer() {
+  return getSourceViewer();
+ }
+
  /*
   * Get the dektop's StatusLineManager
   */

Alex Chapiro



Back to the top