|
From: <caw...@us...> - 2007-01-19 18:37:15
|
Revision: 1812
http://svn.sourceforge.net/rubyeclipse/?rev=1812&view=rev
Author: cawilliams
Date: 2007-01-19 10:37:14 -0800 (Fri, 19 Jan 2007)
Log Message:
-----------
new interfaces...
Added Paths:
-----------
trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/IRuntimeLoadpathEntryResolver2.java
Added: trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/IRuntimeLoadpathEntryResolver2.java
===================================================================
--- trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/IRuntimeLoadpathEntryResolver2.java (rev 0)
+++ trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/launching/IRuntimeLoadpathEntryResolver2.java 2007-01-19 18:37:14 UTC (rev 1812)
@@ -0,0 +1,32 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.rubypeople.rdt.launching;
+
+
+import org.rubypeople.rdt.core.ILoadpathEntry;
+
+/**
+ * Optional enhancements to {@link IRuntimeLoadpathEntryResolver}.
+ * <p>
+ * Clients may implement this interface.
+ * </p>
+ * @since 0.9.0
+ */
+public interface IRuntimeLoadpathEntryResolver2 extends IRuntimeLoadpathEntryResolver {
+
+ /**
+ * Returns whether the given classpath entry references a VM install.
+ *
+ * @param entry classpath entry
+ * @return whether the given classpath entry references a VM install
+ */
+ public boolean isVMInstallReference(ILoadpathEntry entry);
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|