|
From: <caw...@us...> - 2007-08-23 18:18:24
|
Revision: 3058
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=3058&view=rev
Author: cawilliams
Date: 2007-08-23 11:18:22 -0700 (Thu, 23 Aug 2007)
Log Message:
-----------
first stab at implementing #4928 - add support for interacting at breakpoint.
Add Display view which allows users to type in Ruby code and execute/inspect the results
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/text/RubyTextTools.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/text/RubyTextTools.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/text/RubyTextTools.java 2007-08-23 13:58:51 UTC (rev 3057)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/text/RubyTextTools.java 2007-08-23 18:18:22 UTC (rev 3058)
@@ -53,6 +53,20 @@
/** The preference change listener */
private PreferenceListener fPreferenceListener = new PreferenceListener();
+ /**
+ * Creates a new Ruby text tools collection.
+ *
+ * @param store the preference store to initialize the text tools. The text tool
+ * instance installs a listener on the passed preference store to adapt itself to
+ * changes in the preference store. In general <code>PreferenceConstants.
+ * getPreferenceStore()</code> should be used to initialize the text tools.
+ * @see org.rubypeople.rdt.ui.PreferenceConstants#getPreferenceStore()
+ * @since 2.0
+ */
+ public RubyTextTools(IPreferenceStore store) {
+ this(store, null, true);
+ }
+
/**
* Creates a new Ruby text tools collection.
*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|