|
From: <caw...@us...> - 2007-01-18 15:56:19
|
Revision: 1798
http://svn.sourceforge.net/rubyeclipse/?rev=1798&view=rev
Author: cawilliams
Date: 2007-01-18 07:56:16 -0800 (Thu, 18 Jan 2007)
Log Message:
-----------
doing some renaming back to what JDT uses - it's easier
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/infoviews/RIView.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/infoviews/RIView.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/infoviews/RIView.java 2007-01-18 15:56:04 UTC (rev 1797)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/infoviews/RIView.java 2007-01-18 15:56:16 UTC (rev 1798)
@@ -45,7 +45,7 @@
import org.rubypeople.rdt.internal.ui.rdocexport.RDocUtility;
import org.rubypeople.rdt.internal.ui.rdocexport.RdocListener;
import org.rubypeople.rdt.launching.IVMInstall;
-import org.rubypeople.rdt.launching.IInterpreterInstallChangedListener;
+import org.rubypeople.rdt.launching.IVMInstallChangedListener;
import org.rubypeople.rdt.launching.PropertyChangeEvent;
import org.rubypeople.rdt.launching.RubyRuntime;
import org.rubypeople.rdt.ui.PreferenceConstants;
@@ -62,7 +62,7 @@
private List possibleMatches = new ArrayList();
private SearchValue itemToSearch = new SearchValue();
private DescriptionUpdater descriptionUpdater = new DescriptionUpdater();
- private IInterpreterInstallChangedListener runtimeListener;
+ private IVMInstallChangedListener runtimeListener;
private ListContentProvider contentProvider = new ListContentProvider();
/**
@@ -137,19 +137,19 @@
form.setWeights(new int[]{1, 3});
- runtimeListener = new IInterpreterInstallChangedListener() {
- public void defaultInterpreterInstallChanged(IVMInstall previous,
+ runtimeListener = new IVMInstallChangedListener() {
+ public void defaultVMInstallChanged(IVMInstall previous,
IVMInstall current) {
updatePage();
}
- public void interpreterAdded(IVMInstall newVm) {
+ public void vmAdded(IVMInstall newVm) {
}
- public void interpreterChanged(PropertyChangeEvent event) {
+ public void vmChanged(PropertyChangeEvent event) {
}
- public void interpreterRemoved(IVMInstall removedVm) {
+ public void vmRemoved(IVMInstall removedVm) {
}
};
RubyRuntime.addInterpreterInstallChangedListener(runtimeListener);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|