Changeset 3498 for devel-tools
- Timestamp:
- Mar 12, 2008, 4:39:30 PM (13 years ago)
- Location:
- devel-tools/trunk/eclipse
- Files:
-
- 7 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
devel-tools/trunk/eclipse/org.refal.plus.rfpdt.ui/src/org/refal/plus/rfpdt/launch/ui/RfpLaunchShortcut.java
r3491 r3498 27 27 import org.refal.plus.rfpdt.editor.RfpEditor; 28 28 import org.refal.plus.rfpdt.editor.RfpEditorPlugin; 29 import org.refal.plus.rfpdt.launch .IRfpLaunchConfigurationConstants;29 import org.refal.plus.rfpdt.launching.IRfpLaunchConfigurationConstants; 30 30 31 31 /** -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt.ui/src/org/refal/plus/rfpdt/launch/ui/RfpRefalMainTab.java
r3468 r3498 21 21 import org.eclipse.swt.widgets.Group; 22 22 import org.eclipse.swt.widgets.Text; 23 import org.refal.plus.rfpdt.launch .IRfpLaunchConfigurationConstants;23 import org.refal.plus.rfpdt.launching.IRfpLaunchConfigurationConstants; 24 24 25 25 public class RfpRefalMainTab extends AbstractLaunchConfigurationTab { -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/META-INF/MANIFEST.MF
r3496 r3498 20 20 org.refal.plus.rfpdt.core, 21 21 org.refal.plus.rfpdt.core.builder, 22 org.refal.plus.rfpdt.launch 22 org.refal.plus.rfpdt.launching -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/plugin.xml
r3492 r3498 49 49 point="org.eclipse.jdt.launching.classpathProviders"> 50 50 <classpathProvider 51 class="org.refal.plus.rfpdt.launch .RfpClasspathProvider"51 class="org.refal.plus.rfpdt.launching.RfpClasspathProvider" 52 52 id="org.refal.plus.rfpdt.launch.rfp_classpath"/> 53 53 </extension> … … 55 55 point="org.eclipse.jdt.core.classpathContainerInitializer"> 56 56 <classpathContainerInitializer 57 class="org.refal.plus.rfpdt.launch .RFPContainerInitializer"58 id="org.refal.plus.rfpdt. RFP_CONTAINER">57 class="org.refal.plus.rfpdt.launching.RFPContainerInitializer" 58 id="org.refal.plus.rfpdt.launching.RFP_CONTAINER"> 59 59 </classpathContainerInitializer> 60 60 </extension> -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/src/org/refal/plus/rfpdt/launching/IRfpLaunchConfigurationConstants.java
r3467 r3498 1 package org.refal.plus.rfpdt.launch ;1 package org.refal.plus.rfpdt.launching; 2 2 3 3 import org.eclipse.jdt.launching.IJavaLaunchConfigurationConstants; -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/src/org/refal/plus/rfpdt/launching/RFPContainerInitializer.java
r3471 r3498 1 package org.refal.plus.rfpdt.launch ;1 package org.refal.plus.rfpdt.launching; 2 2 3 3 import java.io.IOException; … … 19 19 20 20 public class RFPContainerInitializer extends ClasspathContainerInitializer { 21 public static final String RFP_CONTAINER = "org.refal.plus.rfpdt. RFP_CONTAINER";21 public static final String RFP_CONTAINER = "org.refal.plus.rfpdt.launching.RFP_CONTAINER"; 22 22 23 23 @Override -
devel-tools/trunk/eclipse/org.refal.plus.rfpdt/src/org/refal/plus/rfpdt/launching/RfpClasspathProvider.java
r3466 r3498 1 package org.refal.plus.rfpdt.launch ;1 package org.refal.plus.rfpdt.launching; 2 2 3 3 import java.io.IOException;
Note: See TracChangeset
for help on using the changeset viewer.