JBoss Tools SVN: r38629 - trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-02-10 18:08:43 -0500 (Fri, 10 Feb 2012)
New Revision: 38629
Modified:
trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java
Log:
JBIDE-10244 Cleaning up Runtime plugin
Modified: trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java 2012-02-10 23:03:47 UTC (rev 38628)
+++ trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java 2012-02-10 23:08:43 UTC (rev 38629)
@@ -44,7 +44,7 @@
import org.jboss.tools.runtime.core.model.IRuntimeDetector;
import org.jboss.tools.runtime.core.model.InvalidRuntimeDetector;
import org.jboss.tools.runtime.core.model.RuntimePath;
-import org.jboss.tools.runtime.core.model.ServerDefinition;
+import org.jboss.tools.runtime.core.model.RuntimeDefinition;
import org.jboss.tools.runtime.ui.RuntimeUIActivator;
import org.jboss.tools.seam.core.project.facet.SeamRuntime;
import org.jboss.tools.seam.core.project.facet.SeamRuntimeManager;
@@ -90,7 +90,7 @@
runtimePaths.add(runtimePath);
}
RuntimeUIActivator.getDefault().saveRuntimePaths();
- List<ServerDefinition> serverDefinitions = new ArrayList<ServerDefinition>();
+ List<RuntimeDefinition> serverDefinitions = new ArrayList<RuntimeDefinition>();
Set<IRuntimeDetector> detectors = RuntimeCoreActivator
.getRuntimeDetectors();
for (IRuntimeDetector detector : detectors) {
@@ -105,16 +105,16 @@
Set<RuntimePath> runtimePaths = RuntimeUIActivator.getDefault()
.getRuntimePaths();
for (RuntimePath runtimePath : runtimePaths) {
- List<ServerDefinition> serverDefinitions = locator
+ List<RuntimeDefinition> serverDefinitions = locator
.searchForRuntimes(runtimePath.getPath(),
new NullProgressMonitor());
runtimePath.getServerDefinitions().clear();
- for (ServerDefinition serverDefinition : serverDefinitions) {
+ for (RuntimeDefinition serverDefinition : serverDefinitions) {
serverDefinition.setRuntimePath(runtimePath);
}
runtimePath.getServerDefinitions().addAll(serverDefinitions);
}
- List<ServerDefinition> serverDefinitions = RuntimeUIActivator
+ List<RuntimeDefinition> serverDefinitions = RuntimeUIActivator
.getDefault().getServerDefinitions();
Set<IRuntimeDetector> detectors = RuntimeCoreActivator
.getRuntimeDetectors();
@@ -155,9 +155,9 @@
@Test
public void testLocations() {
- List<ServerDefinition> serverDefinitions = RuntimeUIActivator
+ List<RuntimeDefinition> serverDefinitions = RuntimeUIActivator
.getDefault().getServerDefinitions();
- for (ServerDefinition serverDefinition : serverDefinitions) {
+ for (RuntimeDefinition serverDefinition : serverDefinitions) {
File location = serverDefinition.getLocation();
assertTrue("The '" + location.getAbsolutePath()
+ "' path isn't valid.", location.isDirectory());
@@ -205,7 +205,7 @@
@Test
public void testServerDefinitions() {
- List<ServerDefinition> serverDefinitions = RuntimeUIActivator
+ List<RuntimeDefinition> serverDefinitions = RuntimeUIActivator
.getDefault().getServerDefinitions();
Set<RuntimePath> runtimePaths = RuntimeUIActivator.getDefault()
.getRuntimePaths();
@@ -326,11 +326,11 @@
@Test
public void testIncludedDefinitions() {
- for (ServerDefinition serverDefinition:RuntimeUIActivator.getDefault().getServerDefinitions()){
+ for (RuntimeDefinition serverDefinition:RuntimeUIActivator.getDefault().getServerDefinitions()){
String type = serverDefinition.getType();
if (EAP.equals(type)) {
assertTrue("EAP has to include server definitions", serverDefinition.getIncludedServerDefinitions().size() > 0);
- for(ServerDefinition included:serverDefinition.getIncludedServerDefinitions()) {
+ for(RuntimeDefinition included:serverDefinition.getIncludedServerDefinitions()) {
assertTrue("Invalid parent definition", included.getParent() == serverDefinition);
}
}
14 years, 1 month
JBoss Tools SVN: r38628 - in trunk/runtime/plugins: org.jboss.tools.runtime/src/org/jboss/tools/runtime and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-02-10 18:03:47 -0500 (Fri, 10 Feb 2012)
New Revision: 38628
Added:
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/JBossRuntimeStartup.java
Removed:
trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/JBossRuntimeStartup.java
Modified:
trunk/runtime/plugins/org.jboss.tools.runtime.ui/META-INF/MANIFEST.MF
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeViewerDialog.java
trunk/runtime/plugins/org.jboss.tools.runtime/plugin.xml
trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/Activator.java
Log:
JBIDE-10244 Cleaning up Runtime plugin
Modified: trunk/runtime/plugins/org.jboss.tools.runtime/plugin.xml
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime/plugin.xml 2012-02-10 23:03:34 UTC (rev 38627)
+++ trunk/runtime/plugins/org.jboss.tools.runtime/plugin.xml 2012-02-10 23:03:47 UTC (rev 38628)
@@ -1,13 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
-
- <extension
- point="org.eclipse.ui.startup">
- <startup
- class="org.jboss.tools.runtime.JBossRuntimeStartup">
- </startup>
- </extension>
<extension
point="org.eclipse.core.runtime.preferences">
Modified: trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/Activator.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/Activator.java 2012-02-10 23:03:34 UTC (rev 38627)
+++ trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/Activator.java 2012-02-10 23:03:47 UTC (rev 38628)
@@ -29,8 +29,6 @@
public static final String JBPMS = "jbpms";
- public static final String WORKSPACES = "workspaces";
-
// The shared instance
private static Activator plugin;
Deleted: trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/JBossRuntimeStartup.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/JBossRuntimeStartup.java 2012-02-10 23:03:34 UTC (rev 38627)
+++ trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/JBossRuntimeStartup.java 2012-02-10 23:03:47 UTC (rev 38628)
@@ -1,318 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010 Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.runtime;
-
-import java.io.BufferedInputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileNotFoundException;
-import java.io.IOException;
-import java.net.URL;
-import java.util.ArrayList;
-import java.util.Enumeration;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Properties;
-import java.util.Set;
-import java.util.StringTokenizer;
-
-import org.eclipse.core.resources.IWorkspaceRoot;
-import org.eclipse.core.resources.ResourcesPlugin;
-import org.eclipse.core.runtime.FileLocator;
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.NullProgressMonitor;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.core.runtime.Platform;
-import org.eclipse.core.runtime.preferences.ConfigurationScope;
-import org.eclipse.core.runtime.preferences.IEclipsePreferences;
-import org.eclipse.osgi.service.datalocation.Location;
-import org.eclipse.swt.widgets.Display;
-import org.eclipse.ui.IStartup;
-import org.eclipse.ui.IViewPart;
-import org.eclipse.ui.PlatformUI;
-import org.eclipse.ui.navigator.CommonNavigator;
-import org.jboss.tools.runtime.core.JBossRuntimeLocator;
-import org.jboss.tools.runtime.core.RuntimeCoreActivator;
-import org.jboss.tools.runtime.core.model.IRuntimeDetector;
-import org.jboss.tools.runtime.core.model.RuntimePath;
-import org.jboss.tools.runtime.core.model.ServerDefinition;
-import org.jboss.tools.runtime.ui.RuntimeUIActivator;
-import org.osgi.framework.Bundle;
-import org.osgi.service.prefs.BackingStoreException;
-
-public class JBossRuntimeStartup implements IStartup {
-
- private static final String JBOSS_EAP_HOME = "../../jboss-eap"; // JBoss EAP home directory (relative to plugin)- <RHDS_HOME>/jbossas. //$NON-NLS-1$
-
- private static final String SERVERS_FILE_NAME = "application_platforms.properties"; //$NON-NLS-1$
- private static final String SERVERS_FILE = "../../../../studio/" + SERVERS_FILE_NAME; //$NON-NLS-1$
- private static final String SERVERS_FILE_CONFIGURATION = "../../studio/" + SERVERS_FILE_NAME; //$NON-NLS-1$
-
- private static final String LOCATIONS_FILE_NAME = "runtime_locations.properties"; //$NON-NLS-1$
- private static final String LOCATIONS_FILE = "../../../../studio/" + LOCATIONS_FILE_NAME; //$NON-NLS-1$
- private static final String LOCATIONS_FILE_CONFIGURATION = "../../studio/" + LOCATIONS_FILE_NAME; //$NON-NLS-1$
-
- private List<ServerDefinition> serverDefinitions = new ArrayList<ServerDefinition>();
- private IEclipsePreferences preferences;
-
- Set<RuntimePath> installersRuntimePaths = new HashSet<RuntimePath>();
-
- public void earlyStartup() {
- if (isJBDS() && willBeInitialized()) {
- parseServerFile();
- parseRuntimeLocationsFile();
- initializeIncludedRuntimes();
- initializeRuntimes(serverDefinitions);
- saveWorkspacePreferences();
- }
- }
-
- private void initializeIncludedRuntimes() {
- try {
- String configuration = getConfiguration();
- File directory = new File(configuration, JBOSS_EAP_HOME);
- if (directory.isDirectory()) {
- IPath path = new Path(directory.getAbsolutePath());
- JBossRuntimeLocator locator = new JBossRuntimeLocator();
- List<ServerDefinition> definitions = locator.searchForRuntimes(path, new NullProgressMonitor());
- serverDefinitions.addAll(definitions);
-
- }
- } catch (IOException e) {
- Activator.log(e);
- }
-
- }
-
- public void initializeRuntimes(List<ServerDefinition> serverDefinitions) {
- Set<IRuntimeDetector> detectors = RuntimeCoreActivator.getRuntimeDetectors();
- for( IRuntimeDetector detector:detectors) {
- if (detector.isEnabled()) {
- detector.initializeRuntimes(serverDefinitions);
- }
- }
- refreshCommonNavigator();
- }
-
- private void saveWorkspacePreferences() {
- Activator.getDefault().getPreferenceStore().setValue(Activator.FIRST_START, false);
- String workspaces = getWorkspaces();
- String newWorkspaces = "";
- boolean addWorkspace = true;
- if (workspaces == null || workspaces.trim().length() == 0) {
- newWorkspaces = getWorkspace();
- } else {
- StringTokenizer tokenizer = new StringTokenizer(workspaces, ",");
- while (tokenizer.hasMoreTokens()) {
- String workspace = tokenizer.nextToken();
- if (workspace.equals(getWorkspace())) {
- addWorkspace = false;
- }
- }
- if (addWorkspace) {
- newWorkspaces = workspaces + "," + getWorkspace();
- }
- }
- if (addWorkspace) {
- IEclipsePreferences prefs = getPreferences();
- prefs.put(Activator.WORKSPACES, newWorkspaces);
- try {
- prefs.flush();
- } catch (BackingStoreException e) {
- Activator.log(e);
- }
- }
- Set<RuntimePath> runtimePaths = RuntimeUIActivator.getDefault().getRuntimePaths();
- for (ServerDefinition serverDefinition:serverDefinitions) {
- File location = serverDefinition.getLocation();
- RuntimePath runtimePath = new RuntimePath(location.getAbsolutePath());
- runtimePaths.add(runtimePath);
- }
-
- runtimePaths.addAll(installersRuntimePaths);
-
- if (runtimePaths.size() > 0) {
- RuntimeUIActivator.getDefault().saveRuntimePaths();
- }
- }
-
- /**
- * @return
- */
- private boolean willBeInitialized() {
- boolean firstStart = Activator.getDefault().getPreferenceStore().getBoolean(Activator.FIRST_START);
- if (firstStart) {
- return true;
- }
-
- String workspaces = getWorkspaces();
- if (workspaces == null || workspaces.trim().length() == 0) {
- return true;
- }
- StringTokenizer tokenizer = new StringTokenizer(workspaces, ",");
- while (tokenizer.hasMoreTokens()) {
- String workspace = tokenizer.nextToken();
- if (workspace.equals(getWorkspace())) {
- return false;
- }
- }
- return true;
- }
-
- private String getWorkspaces() {
- IEclipsePreferences prefs = getPreferences();
- String workspaces = prefs.get(Activator.WORKSPACES, "");
- return workspaces;
- }
-
- private String getWorkspace() {
- IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
- IPath workspacePath = root.getLocation();
- return workspacePath.toOSString();
- }
-
- private IEclipsePreferences getPreferences() {
- if (preferences == null) {
- preferences = new ConfigurationScope().getNode(Activator.PLUGIN_ID);
- }
- return preferences;
- }
-
- private boolean isJBDS() {
- Bundle jbdsProduct = Platform.getBundle("com.jboss.jbds.product");
- return jbdsProduct != null;
- }
-
- private void refreshCommonNavigator() {
- // https://jira.jboss.org/jira/browse/JBDS-1091
- Display.getDefault().asyncExec(new Runnable() {
-
- public void run() {
- IViewPart view = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().findView("org.eclipse.wst.server.ui.ServersView");
- if (view instanceof CommonNavigator) {
- CommonNavigator navigator = (CommonNavigator) view;
- navigator.getCommonViewer().refresh();
- }
- }
- });
- }
-
- private void parseServerFile() {
-
- try {
- String pluginLocation = FileLocator.resolve(Activator.getDefault().getBundle().getEntry("/")).getPath(); //$NON-NLS-1$
- File serversFile = new File(pluginLocation, SERVERS_FILE);
-
- if (!serversFile.isFile()) {
- String configuration = getConfiguration();
- serversFile = new File(configuration, SERVERS_FILE_CONFIGURATION).getCanonicalFile();
- } else {
- serversFile = serversFile.getCanonicalFile();
- }
- if (!serversFile.isFile()) {
- serversFile = new File(pluginLocation,SERVERS_FILE_NAME);
- }
- if (serversFile.isFile()) {
- //String str = FileUtil.readFile(serversFile);
- Properties servers = new Properties();
- servers.load(new BufferedInputStream(new FileInputStream(serversFile)));
- Enumeration<Object> elements = servers.elements();
- while (elements.hasMoreElements()) {
- String str = (String) elements.nextElement();
- StringTokenizer lineTokenizer = new StringTokenizer(str,
- "\n\r\f"); //$NON-NLS-1$
- while (lineTokenizer.hasMoreTokens()) {
- String lineToken = lineTokenizer.nextToken();
- StringTokenizer tokenizer = new StringTokenizer(
- lineToken, ","); //$NON-NLS-1$
- if (tokenizer.countTokens() == 4) {
- String name = tokenizer.nextToken();
- /*int index = name.indexOf('=');
- if (index < 0) {
- continue;
- }
- name = name.substring(index + 1);*/
- String type = tokenizer.nextToken();
- String version = tokenizer.nextToken();
- String location = tokenizer.nextToken();
- File locationFile = new File(location);
- if (locationFile.isDirectory()) {
- serverDefinitions.add(new ServerDefinition(
- name, version, type, locationFile));
- }
- }
- }
- }
- }
- } catch (FileNotFoundException e) {
- Activator.log(e);
- } catch (IOException e) {
- Activator.log(e);
- }
- }
-
- private void parseRuntimeLocationsFile() {
-
- try {
- String pluginLocation = FileLocator.resolve(Activator.getDefault().getBundle().getEntry("/")).getPath(); //$NON-NLS-1$
- File serversFile = new File(pluginLocation, LOCATIONS_FILE);
-
- if (!serversFile.isFile()) {
- String configuration = getConfiguration();
- serversFile = new File(configuration, LOCATIONS_FILE_CONFIGURATION).getCanonicalFile();
- } else {
- serversFile = serversFile.getCanonicalFile();
- }
- if (!serversFile.isFile()) {
- serversFile = new File(pluginLocation,LOCATIONS_FILE_NAME);
- }
- if (serversFile.isFile()) {
- //String str = FileUtil.readFile(serversFile);
- Properties servers = new Properties();
- servers.load(new BufferedInputStream(new FileInputStream(serversFile)));
- Enumeration<Object> elements = servers.elements();
- while (elements.hasMoreElements()) {
- String str = (String) elements.nextElement();
- StringTokenizer lineTokenizer = new StringTokenizer(str,
- "\n\r\f"); //$NON-NLS-1$
- while (lineTokenizer.hasMoreTokens()) {
- String lineToken = lineTokenizer.nextToken();
- StringTokenizer tokenizer = new StringTokenizer(
- lineToken, ","); //$NON-NLS-1$
- if (tokenizer.countTokens() == 2) {
- String location = tokenizer.nextToken();
- boolean scan = Boolean.parseBoolean(tokenizer.nextToken());
- File locationFile = new File(location);
- if (locationFile.isDirectory()) {
- RuntimePath tempLocation = new RuntimePath(location);
- tempLocation.setScanOnEveryStartup(scan);
- installersRuntimePaths.add(tempLocation);
- }
- }
- }
- }
- }
- } catch (FileNotFoundException e) {
- Activator.log(e);
- } catch (IOException e) {
- Activator.log(e);
- }
- }
-
-
- private String getConfiguration() throws IOException {
- Location configLocation = Platform.getConfigurationLocation();
- URL configURL = configLocation.getURL();
- String configuration = FileLocator.resolve(configURL).getPath();
- return configuration;
- }
-
-}
\ No newline at end of file
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/META-INF/MANIFEST.MF 2012-02-10 23:03:34 UTC (rev 38627)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/META-INF/MANIFEST.MF 2012-02-10 23:03:47 UTC (rev 38628)
@@ -8,7 +8,8 @@
org.eclipse.core.runtime,
org.jboss.tools.runtime.core,
org.eclipse.core.resources,
- org.jboss.tools.project.examples
+ org.jboss.tools.project.examples,
+ org.eclipse.ui.navigator;bundle-version="3.5.100"
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Added: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/JBossRuntimeStartup.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/JBossRuntimeStartup.java (rev 0)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/JBossRuntimeStartup.java 2012-02-10 23:03:47 UTC (rev 38628)
@@ -0,0 +1,170 @@
+/*******************************************************************************
+ * Copyright (c) 2010 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is 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:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.runtime.ui;
+
+import java.io.BufferedInputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.IOException;
+import java.net.URL;
+import java.util.Enumeration;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Properties;
+import java.util.Set;
+import java.util.StringTokenizer;
+
+import org.eclipse.core.runtime.FileLocator;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.osgi.service.datalocation.Location;
+import org.eclipse.swt.widgets.Display;
+import org.eclipse.ui.IViewPart;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.navigator.CommonNavigator;
+import org.jboss.tools.runtime.core.JBossRuntimeLocator;
+import org.jboss.tools.runtime.core.RuntimeCoreActivator;
+import org.jboss.tools.runtime.core.model.IRuntimeDetector;
+import org.jboss.tools.runtime.core.model.RuntimePath;
+import org.jboss.tools.runtime.core.model.ServerDefinition;
+import org.jboss.tools.runtime.ui.RuntimeUIActivator;
+import org.osgi.framework.Bundle;
+
+public class JBossRuntimeStartup {
+
+ private static final String JBOSS_EAP_HOME = "../../jboss-eap"; // JBoss EAP home directory (relative to plugin)- <RHDS_HOME>/jbossas. //$NON-NLS-1$
+
+ private static final String LOCATIONS_FILE_NAME = "runtime_locations.properties"; //$NON-NLS-1$
+ private static final String LOCATIONS_FILE = "../../../../studio/" + LOCATIONS_FILE_NAME; //$NON-NLS-1$
+ private static final String LOCATIONS_FILE_CONFIGURATION = "../../studio/" + LOCATIONS_FILE_NAME; //$NON-NLS-1$
+
+ public static void initializeRuntimes(IProgressMonitor monitor) {
+ if (isJBDS()) {
+ final Set<RuntimePath> runtimePaths = new HashSet<RuntimePath>();
+ parseRuntimeLocationsFile(runtimePaths);
+ try {
+ String configuration = getConfiguration();
+ File directory = new File(configuration, JBOSS_EAP_HOME);
+ if (directory.isDirectory()) {
+ RuntimePath runtimePath = new RuntimePath(directory.getAbsolutePath());
+ runtimePaths.add(runtimePath);
+ }
+ } catch (IOException e) {
+ RuntimeUIActivator.log(e);
+ }
+
+ JBossRuntimeLocator locator = new JBossRuntimeLocator();
+ for (RuntimePath runtimePath : runtimePaths) {
+ List<ServerDefinition> serverDefinitions = locator
+ .searchForRuntimes(runtimePath.getPath(), monitor);
+ runtimePath.getServerDefinitions().clear();
+ for (ServerDefinition serverDefinition : serverDefinitions) {
+ serverDefinition.setRuntimePath(runtimePath);
+ }
+ runtimePath.getServerDefinitions().addAll(serverDefinitions);
+ initializeRuntimes(serverDefinitions);
+ }
+ if (runtimePaths.size() > 0) {
+ RuntimeUIActivator.getDefault().saveRuntimePaths();
+ }
+
+
+ }
+ }
+
+ public static void initializeRuntimes(List<ServerDefinition> serverDefinitions) {
+ Set<IRuntimeDetector> detectors = RuntimeCoreActivator.getRuntimeDetectors();
+ for( IRuntimeDetector detector:detectors) {
+ if (detector.isEnabled()) {
+ detector.initializeRuntimes(serverDefinitions);
+ }
+ }
+ refreshCommonNavigator();
+ }
+
+
+ private static boolean isJBDS() {
+ Bundle jbdsProduct = Platform.getBundle("com.jboss.jbds.product");
+ //return jbdsProduct != null;
+ return true;
+ }
+
+ private static void refreshCommonNavigator() {
+ // https://jira.jboss.org/jira/browse/JBDS-1091
+ Display.getDefault().asyncExec(new Runnable() {
+
+ public void run() {
+ IViewPart view = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().findView("org.eclipse.wst.server.ui.ServersView");
+ if (view instanceof CommonNavigator) {
+ CommonNavigator navigator = (CommonNavigator) view;
+ navigator.getCommonViewer().refresh();
+ }
+ }
+ });
+ }
+
+ private static void parseRuntimeLocationsFile(Set<RuntimePath> runtimePaths) {
+
+ try {
+ String pluginLocation = FileLocator.resolve(RuntimeUIActivator.getDefault().getBundle().getEntry("/")).getPath(); //$NON-NLS-1$
+ File serversFile = new File(pluginLocation, LOCATIONS_FILE);
+
+ if (!serversFile.isFile()) {
+ String configuration = getConfiguration();
+ serversFile = new File(configuration, LOCATIONS_FILE_CONFIGURATION).getCanonicalFile();
+ } else {
+ serversFile = serversFile.getCanonicalFile();
+ }
+ if (!serversFile.isFile()) {
+ serversFile = new File(pluginLocation,LOCATIONS_FILE_NAME);
+ }
+ if (serversFile.isFile()) {
+ //String str = FileUtil.readFile(serversFile);
+ Properties servers = new Properties();
+ servers.load(new BufferedInputStream(new FileInputStream(serversFile)));
+ Enumeration<Object> elements = servers.elements();
+ while (elements.hasMoreElements()) {
+ String str = (String) elements.nextElement();
+ StringTokenizer lineTokenizer = new StringTokenizer(str,
+ "\n\r\f"); //$NON-NLS-1$
+ while (lineTokenizer.hasMoreTokens()) {
+ String lineToken = lineTokenizer.nextToken();
+ StringTokenizer tokenizer = new StringTokenizer(
+ lineToken, ","); //$NON-NLS-1$
+ if (tokenizer.countTokens() == 2) {
+ String location = tokenizer.nextToken();
+ boolean scan = Boolean.parseBoolean(tokenizer.nextToken());
+ File locationFile = new File(location);
+ if (locationFile.isDirectory()) {
+ RuntimePath tempLocation = new RuntimePath(location);
+ tempLocation.setScanOnEveryStartup(scan);
+ runtimePaths.add(tempLocation);
+ }
+ }
+ }
+ }
+ }
+ } catch (FileNotFoundException e) {
+ RuntimeUIActivator.log(e);
+ } catch (IOException e) {
+ RuntimeUIActivator.log(e);
+ }
+ }
+
+ private static String getConfiguration() throws IOException {
+ Location configLocation = Platform.getConfigurationLocation();
+ URL configURL = configLocation.getURL();
+ String configuration = FileLocator.resolve(configURL).getPath();
+ return configuration;
+ }
+
+}
\ No newline at end of file
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java 2012-02-10 23:03:34 UTC (rev 38627)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java 2012-02-10 23:03:47 UTC (rev 38628)
@@ -20,7 +20,6 @@
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IStartup;
-import org.eclipse.ui.PlatformUI;
import org.jboss.tools.runtime.core.JBossRuntimeLocator;
import org.jboss.tools.runtime.core.model.RuntimePath;
import org.jboss.tools.runtime.core.model.ServerDefinition;
@@ -43,6 +42,9 @@
@Override
protected IStatus run(IProgressMonitor monitor) {
+ if (firstStart) {
+ JBossRuntimeStartup.initializeRuntimes(monitor);
+ }
boolean exists = runtimeExists(firstStart, monitor);
if (monitor.isCanceled()) {
RuntimeUIActivator.getDefault().refreshRuntimePreferences();
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java 2012-02-10 23:03:34 UTC (rev 38627)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeDialog.java 2012-02-10 23:03:47 UTC (rev 38628)
@@ -32,7 +32,6 @@
import org.eclipse.jface.fieldassist.FieldDecoration;
import org.eclipse.jface.fieldassist.FieldDecorationRegistry;
import org.eclipse.jface.operation.IRunnableWithProgress;
-import org.eclipse.jface.preference.PathEditor;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeViewerDialog.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeViewerDialog.java 2012-02-10 23:03:34 UTC (rev 38627)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/DownloadRuntimeViewerDialog.java 2012-02-10 23:03:47 UTC (rev 38628)
@@ -21,7 +21,6 @@
import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.IStructuredContentProvider;
import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.jface.viewers.ITreeSelection;
import org.eclipse.jface.viewers.SelectionChangedEvent;
import org.eclipse.jface.viewers.TableLayout;
import org.eclipse.jface.viewers.TableViewer;
14 years, 1 month
JBoss Tools SVN: r38627 - trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-02-10 18:03:34 -0500 (Fri, 10 Feb 2012)
New Revision: 38627
Modified:
trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java
Log:
JBIDE-10244 Cleaning up Runtime plugin
Modified: trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java 2012-02-10 22:54:43 UTC (rev 38626)
+++ trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java 2012-02-10 23:03:34 UTC (rev 38627)
@@ -21,7 +21,7 @@
final static String JBOSS_51_HOME = System.getProperty("jbosstools.test.jboss.home.5.1", "E:\\JBossRuntime2\\jboss-5.1.0.GA");
- final static String JBOSS_70_HOME = System.getProperty("jbosstools.test.jboss.home.7.0", "E:\\jboss-7.0.0.Beta3");
+ final static String JBOSS_70_HOME = System.getProperty("jbosstools.test.jboss.home.7.0", "E:\\jboss-as-7.0.1.Final");
final static String SEAM_20_HOME = System.getProperty("jbosstools.test.seam.2.0.1.GA.home", "E:\\JBossRuntimes\\jboss-seam-2.0.1.GA");
14 years, 1 month
JBoss Tools SVN: r38626 - trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-02-10 17:54:43 -0500 (Fri, 10 Feb 2012)
New Revision: 38626
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPageModel.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizard.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizardModel.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizardModel.java
Log:
[JBIDE-10847] fixed various bugs, setting application name & cartridge if existing app is selected. Checking embedded cartridges is not functional yet
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java 2012-02-10 22:48:07 UTC (rev 38625)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java 2012-02-10 22:54:43 UTC (rev 38626)
@@ -11,11 +11,12 @@
package org.jboss.tools.openshift.express.internal.ui.wizard;
import java.util.Collection;
+import java.util.HashSet;
import java.util.List;
+import java.util.Set;
import org.eclipse.core.databinding.DataBindingContext;
import org.eclipse.core.databinding.UpdateListStrategy;
-import org.eclipse.core.databinding.UpdateValueStrategy;
import org.eclipse.core.databinding.beans.BeanProperties;
import org.eclipse.core.databinding.conversion.Converter;
import org.eclipse.core.databinding.observable.list.IObservableList;
@@ -32,6 +33,7 @@
import org.eclipse.jface.databinding.fieldassist.ControlDecorationSupport;
import org.eclipse.jface.databinding.swt.ISWTObservableValue;
import org.eclipse.jface.databinding.swt.WidgetProperties;
+import org.eclipse.jface.databinding.viewers.ViewerProperties;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.IInputValidator;
@@ -72,10 +74,8 @@
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.Text;
import org.jboss.tools.common.ui.WizardUtils;
-import org.jboss.tools.common.ui.databinding.InvertingBooleanConverter;
import org.jboss.tools.common.ui.databinding.ValueBindingBuilder;
import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
-import org.jboss.tools.openshift.express.internal.ui.utils.Logger;
import org.jboss.tools.openshift.express.internal.ui.utils.StringUtils;
import org.jboss.tools.openshift.express.internal.ui.utils.UIUtils;
import org.jboss.tools.openshift.express.internal.ui.wizard.CreationLogDialog.LogEntry;
@@ -98,6 +98,7 @@
private Button useExistingAppBtn;
private Text existingAppNameText;
private Button browseAppsButton;
+ private Text newApplicationNameText;
public ApplicationConfigurationWizardPage(IWizard wizard, OpenShiftExpressApplicationWizardModel wizardModel) {
super("Application Configuration", "Configure the application you want\nto create or import.",
@@ -140,7 +141,10 @@
ApplicationConfigurationWizardPageModel.PROPERTY_EXISTING_APPLICATION_NAME).observe(pageModel);
final ISWTObservableValue existingAppNameTextObservable = WidgetProperties.text(SWT.Modify).observe(
existingAppNameText);
- ValueBindingBuilder.bind(existingAppNameTextObservable).to(existingAppNameModelObservable).in(dbc);
+ ValueBindingBuilder
+ .bind(existingAppNameTextObservable)
+ .to(existingAppNameModelObservable)
+ .in(dbc);
if (pageModel.getExistingApplicationName() != null) {
existingAppNameText.setText(pageModel.getExistingApplicationName());
}
@@ -158,15 +162,18 @@
this.browseAppsButton = new Button(existingAppSelectionGroup, SWT.NONE);
browseAppsButton.setText("Browse");
browseAppsButton.addSelectionListener(onBrowseApps());
- GridDataFactory.fillDefaults().align(SWT.LEFT, SWT.CENTER).hint(100, SWT.DEFAULT).span(1, 1).grab(false, false)
+ GridDataFactory.fillDefaults()
+ .align(SWT.LEFT, SWT.CENTER).hint(100, SWT.DEFAULT).span(1, 1).grab(false, false)
.applyTo(browseAppsButton);
// observe the list of application, get notified once they have been
// loaded
- final IObservableValue existingAppsObservable = BeanProperties.value(
- ApplicationConfigurationWizardPageModel.PROPERTY_EXISTING_APPLICATIONS).observe(pageModel);
+ final IObservableValue existingAppsObservable =
+ BeanProperties.value(
+ ApplicationConfigurationWizardPageModel.PROPERTY_EXISTING_APPLICATIONS).observe(pageModel);
- final ApplicationToSelectNameValidator existingProjectValidator = new ApplicationToSelectNameValidator(
- useExistingAppBtnSelection, existingAppNameTextObservable, existingAppsObservable);
+ final ApplicationToSelectNameValidator existingProjectValidator =
+ new ApplicationToSelectNameValidator(
+ useExistingAppBtnSelection, existingAppNameTextObservable, existingAppsObservable);
dbc.addValidationStatusProvider(existingProjectValidator);
ControlDecorationSupport.create(existingProjectValidator, SWT.LEFT | SWT.TOP);
@@ -175,32 +182,17 @@
private void createContentAssist(final Text existingAppNameText) {
ControlDecoration dec = new ControlDecoration(existingAppNameText, SWT.TOP | SWT.LEFT);
- FieldDecoration contentProposalFieldIndicator = FieldDecorationRegistry.getDefault().getFieldDecoration(
- FieldDecorationRegistry.DEC_CONTENT_PROPOSAL);
+ FieldDecoration contentProposalFieldIndicator =
+ FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_CONTENT_PROPOSAL);
dec.setImage(contentProposalFieldIndicator.getImage());
dec.setDescriptionText("Auto-completion is enabled when you start typing a project name.");
dec.setShowOnlyOnFocus(true);
- AutoCompleteField adapter = new AutoCompleteField(existingAppNameText, new TextContentAdapter(),
- new String[] {});
- adapter.setProposals(getApplicationNames());
+ AutoCompleteField adapter =
+ new AutoCompleteField(existingAppNameText, new TextContentAdapter(), new String[] {});
+ adapter.setProposals(pageModel.getApplicationNames());
}
- private String[] getApplicationNames() {
- try {
- List<IApplication> applications;
- applications = pageModel.getApplications();
- String[] names = new String[applications.size()];
- for (int i = 0; i < applications.size(); i++) {
- names[i] = applications.get(i).getName();
- }
- return names;
- } catch (OpenShiftException e) {
- Logger.error("Failed to retrieve list of OpenShift applications", e);
- }
- return new String[0];
- }
-
private SelectionListener onBrowseApps() {
return new SelectionListener() {
@@ -212,7 +204,18 @@
if (result == IDialogConstants.OK_ID) {
final IApplication selectedApplication = appSelectionDialog.getSelectedApplication();
if (selectedApplication != null) {
- pageModel.setExistingApplicationName(selectedApplication.getName());
+ try {
+ pageModel.setApplicationName(selectedApplication.getName());
+ newApplicationNameText.setText(selectedApplication.getName());
+ pageModel.setSelectedCartridge(selectedApplication.getCartridge());
+ Set<IEmbeddableCartridge> embeddedCartridges = new HashSet<IEmbeddableCartridge>();
+ embeddedCartridges.addAll(selectedApplication.getEmbeddedCartridges());
+ pageModel.setSelectedEmbeddableCartridges(embeddedCartridges);
+ } catch (OpenShiftException ex) {
+ OpenShiftUIActivator.log(OpenShiftUIActivator.createErrorStatus(NLS.bind(
+ "Could not get embedded cartridges for application {0}",
+ selectedApplication.getName()), ex));
+ }
}
}
}
@@ -229,9 +232,9 @@
GridLayoutFactory.fillDefaults().numColumns(2).margins(6, 6).applyTo(container);
GridDataFactory.fillDefaults().grab(true, true).align(SWT.FILL, SWT.FILL).applyTo(container);
- IObservableValue useExistingApplication =
- BeanProperties.value(ApplicationConfigurationWizardPageModel.PROPERTY_USE_EXISTING_APPLICATION)
- .observe(pageModel);
+ IObservableValue useExistingApplication = BeanProperties
+ .value(ApplicationConfigurationWizardPageModel.PROPERTY_USE_EXISTING_APPLICATION)
+ .observe(pageModel);
enableApplicationWidgets(pageModel.isUseExistingApplication(), container, existingAppNameText, browseAppsButton);
useExistingApplication.addValueChangeListener(
onUseExistingApplication(container, existingAppNameText, browseAppsButton));
@@ -239,37 +242,41 @@
Label applicationNameLabel = new Label(container, SWT.NONE);
applicationNameLabel.setText("Name:");
GridDataFactory.fillDefaults().align(SWT.FILL, SWT.CENTER).applyTo(applicationNameLabel);
- Text applicationNameText = new Text(container, SWT.BORDER);
- GridDataFactory.fillDefaults().grab(true, false).align(SWT.FILL, SWT.FILL).applyTo(applicationNameText);
- UIUtils.selectAllOnFocus(applicationNameText);
- final IObservableValue applicationNameModelObservable = BeanProperties.value(
- ApplicationConfigurationWizardPageModel.PROPERTY_APPLICATION_NAME).observe(pageModel);
- final ISWTObservableValue applicationNameTextObservable = WidgetProperties.text(SWT.Modify).observe(
- applicationNameText);
- dbc.bindValue(applicationNameTextObservable, applicationNameModelObservable);
- IObservableValue useExistingObservable = BeanProperties.value(
- ApplicationConfigurationWizardPageModel.PROPERTY_USE_EXISTING_APPLICATION).observe(pageModel);
+ this.newApplicationNameText = new Text(container, SWT.BORDER);
+ GridDataFactory.fillDefaults()
+ .grab(true, false).align(SWT.FILL, SWT.FILL).applyTo(newApplicationNameText);
+ UIUtils.selectAllOnFocus(newApplicationNameText);
+ final ISWTObservableValue applicationNameTextObservable =
+ WidgetProperties.text(SWT.Modify).observe(newApplicationNameText);
+ final IObservableValue applicationNameModelObservable =
+ BeanProperties
+ .value(ApplicationConfigurationWizardPageModel.PROPERTY_APPLICATION_NAME)
+ .observe(pageModel);
+ ValueBindingBuilder
+ .bind(applicationNameTextObservable)
+ .to(applicationNameModelObservable)
+ .in(dbc);
Label applicationTypeLabel = new Label(container, SWT.NONE);
applicationTypeLabel.setText("Type:");
GridDataFactory.fillDefaults().align(SWT.FILL, SWT.CENTER).span(1, 1).applyTo(applicationTypeLabel);
Combo cartridgesCombo = new Combo(container, SWT.BORDER | SWT.READ_ONLY);
- GridDataFactory.fillDefaults().align(SWT.FILL, SWT.CENTER).span(1, 1).grab(true, false)
- .applyTo(cartridgesCombo);
+ GridDataFactory.fillDefaults()
+ .align(SWT.FILL, SWT.CENTER).span(1, 1).grab(true, false).applyTo(cartridgesCombo);
fillCartridgesCombo(dbc, cartridgesCombo);
- final ISWTObservableValue cartridgesComboObservable = WidgetProperties.selection().observe(cartridgesCombo);
- final IObservableValue selectedCartridgeModelObservable = BeanProperties.value(
- NewApplicationWizardPageModel.PROPERTY_SELECTED_CARTRIDGE).observe(pageModel);
- dbc.bindValue(cartridgesComboObservable, selectedCartridgeModelObservable,
- new UpdateValueStrategy().setConverter(new StringToCartridgeConverter()),
- new UpdateValueStrategy().setConverter(new CartridgeToStringConverter()));
- ValueBindingBuilder.bind(WidgetProperties.enabled().observe(cartridgesCombo))
- .notUpdating(useExistingObservable).converting(new InvertingBooleanConverter()).in(dbc);
+ final ISWTObservableValue selectedCartridgeComboObservable =
+ WidgetProperties.selection().observe(cartridgesCombo);
+ final IObservableValue selectedCartridgeModelObservable =
+ BeanProperties.value(NewApplicationWizardPageModel.PROPERTY_SELECTED_CARTRIDGE).observe(pageModel);
+ ValueBindingBuilder
+ .bind(selectedCartridgeComboObservable).converting(new StringToCartridgeConverter())
+ .to(selectedCartridgeModelObservable).converting(new CartridgeToStringConverter())
+ .in(dbc);
+
final ISWTObservableValue useExistingAppBtnSelection = WidgetProperties.selection().observe(useExistingAppBtn);
-
- final ApplicationToCreateInputValidator applicationInputValidator = new ApplicationToCreateInputValidator(
- useExistingAppBtnSelection,
- applicationNameTextObservable, cartridgesComboObservable);
+ final ApplicationToCreateInputValidator applicationInputValidator =
+ new ApplicationToCreateInputValidator(
+ useExistingAppBtnSelection, applicationNameTextObservable, selectedCartridgeComboObservable);
dbc.addValidationStatusProvider(applicationInputValidator);
/*
* final ApplicationToSelectNameValidator applicationNameValidator = new
@@ -286,25 +293,30 @@
GridLayoutFactory.fillDefaults().numColumns(2).margins(6, 6).applyTo(cartridgesGroup);
Composite tableContainer = new Composite(cartridgesGroup, SWT.NONE);
- GridDataFactory.fillDefaults().align(SWT.FILL, SWT.FILL).grab(true, true).span(1, 2).hint(400, 250)
- .applyTo(tableContainer);
+ GridDataFactory.fillDefaults()
+ .align(SWT.FILL, SWT.FILL).grab(true, true).span(1, 2).hint(400, 250).applyTo(tableContainer);
this.viewer = createTable(tableContainer);
+ dbc.bindSet(
+ ViewerProperties.checkedElements(IEmbeddableCartridge.class).observe(viewer),
+ BeanProperties.set(ApplicationConfigurationWizardPageModel.PROPERTY_SELECTED_EMBEDDABLE_CARTRIDGES)
+ .observe(pageModel));
Button checkAllButton = new Button(cartridgesGroup, SWT.PUSH);
checkAllButton.setText("&Select All");
- GridDataFactory.fillDefaults().hint(110, SWT.DEFAULT).grab(false, false).align(SWT.FILL, SWT.TOP)
- .applyTo(checkAllButton);
+ GridDataFactory.fillDefaults().
+ hint(110, SWT.DEFAULT).grab(false, false).align(SWT.FILL, SWT.TOP).applyTo(checkAllButton);
checkAllButton.addSelectionListener(onCheckAll());
Button uncheckAllButton = new Button(cartridgesGroup, SWT.PUSH);
uncheckAllButton.setText("&Deselect All");
- GridDataFactory.fillDefaults().hint(110, SWT.DEFAULT).grab(false, true).align(SWT.FILL, SWT.TOP)
- .applyTo(uncheckAllButton);
+ GridDataFactory.fillDefaults()
+ .hint(110, SWT.DEFAULT).grab(false, true).align(SWT.FILL, SWT.TOP).applyTo(uncheckAllButton);
uncheckAllButton.addSelectionListener(onUncheckAll());
// bottom filler
Composite spacer = new Composite(container, SWT.NONE);
- GridDataFactory.fillDefaults().span(2, 1).align(SWT.FILL, SWT.FILL).grab(true, true).applyTo(spacer);
+ GridDataFactory.fillDefaults()
+ .span(2, 1).align(SWT.FILL, SWT.FILL).grab(true, true).applyTo(spacer);
}
private IValueChangeListener onUseExistingApplication(final Group applicationConfigurationGroup,
@@ -473,7 +485,7 @@
}
private void removeMySQLCartridge(IEmbeddableCartridge cartridge) throws OpenShiftException {
- List<IEmbeddableCartridge> checkedCartridges = pageModel.getSelectedEmbeddableCartridges();
+ Set<IEmbeddableCartridge> checkedCartridges = pageModel.getSelectedEmbeddableCartridges();
if (viewer.getChecked(IEmbeddableCartridge.PHPMYADMIN_34)) {
if (MessageDialog.openQuestion(getShell(), "Remove phpmyadmin cartridge",
"If you remove the mysql cartridge, you'd also have to remove phpmyadmin.")) {
@@ -721,12 +733,6 @@
}
- /*
- * (non-Javadoc)
- *
- * @see
- * org.eclipse.core.databinding.validation.MultiValidator#getTargets()
- */
@Override
public IObservableList getTargets() {
WritableList targets = new WritableList();
@@ -770,12 +776,6 @@
return ValidationStatus.ok();
}
- /*
- * (non-Javadoc)
- *
- * @see
- * org.eclipse.core.databinding.validation.MultiValidator#getTargets()
- */
@Override
public IObservableList getTargets() {
WritableList targets = new WritableList();
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPageModel.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPageModel.java 2012-02-10 22:48:07 UTC (rev 38625)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPageModel.java 2012-02-10 22:54:43 UTC (rev 38626)
@@ -13,10 +13,12 @@
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
+import java.util.Set;
import org.eclipse.core.runtime.IProgressMonitor;
import org.jboss.tools.common.ui.databinding.ObservableUIPojo;
import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
+import org.jboss.tools.openshift.express.internal.ui.utils.Logger;
import com.openshift.express.client.IApplication;
import com.openshift.express.client.ICartridge;
@@ -25,7 +27,7 @@
import com.openshift.express.client.OpenShiftException;
/**
- * @author Andr� Dietisheim
+ * @author Andre Dietisheim
* @author Xavier Coulon
*
*/
@@ -35,13 +37,15 @@
public static final String PROPERTY_EXISTING_APPLICATION_NAME = "existingApplicationName";
public static final String PROPERTY_CARTRIDGES = "cartridges";
public static final String PROPERTY_EMBEDDABLE_CARTRIDGES = "embeddableCartridges";
+ public static final String PROPERTY_SELECTED_EMBEDDABLE_CARTRIDGES = "selectedEmbeddableCartridges";
public static final String PROPERTY_SELECTED_CARTRIDGE = "selectedCartridge";
public static final String PROPERTY_APPLICATION_NAME = "applicationName";
public static final String PROPERTY_EXISTING_APPLICATIONS = "existingApplications";
private final OpenShiftExpressApplicationWizardModel wizardModel;
- // start with a null value as a marker of non-initialized state (used during first pass validation)
+ // start with a null value as a marker of non-initialized state (used during
+ // first pass validation)
private List<IApplication> existingApplications = null;
private List<ICartridge> cartridges = new ArrayList<ICartridge>();
private List<IEmbeddableCartridge> embeddableCartridges = new ArrayList<IEmbeddableCartridge>();
@@ -76,6 +80,20 @@
return user.getApplications();
}
+ public String[] getApplicationNames() {
+ try {
+ List<IApplication> applications = getApplications();
+ String[] applicationNames = new String[applications.size()];
+ for (int i = 0; i < applications.size(); i++) {
+ applicationNames[i] = applications.get(i).getName();
+ }
+ return applicationNames;
+ } catch (OpenShiftException e) {
+ Logger.error("Failed to retrieve list of OpenShift applications", e);
+ return new String[0];
+ }
+ }
+
public boolean isUseExistingApplication() {
return this.useExistingApplication;
}
@@ -138,11 +156,9 @@
public void setSelectedCartridge(ICartridge cartridge) {
wizardModel.setApplicationCartridge(cartridge);
firePropertyChange(PROPERTY_SELECTED_CARTRIDGE, selectedCartridge, this.selectedCartridge = cartridge);
- // validateApplicationName();
}
public List<IEmbeddableCartridge> loadEmbeddableCartridges() throws OpenShiftException {
- // List<IEmbeddableCartridge> cartridges = wizardModel.getUser().getEmbeddableCartridges();
List<IEmbeddableCartridge> cartridges = OpenShiftUIActivator.getDefault().getUser().getEmbeddableCartridges();
setEmbeddableCartridges(cartridges);
return cartridges;
@@ -158,25 +174,30 @@
}
public void setEmbeddableCartridges(List<IEmbeddableCartridge> cartridges) {
- firePropertyChange(PROPERTY_EMBEDDABLE_CARTRIDGES, this.embeddableCartridges,
- this.embeddableCartridges = cartridges);
+ firePropertyChange(
+ PROPERTY_EMBEDDABLE_CARTRIDGES, this.embeddableCartridges, this.embeddableCartridges = cartridges);
}
public List<IEmbeddableCartridge> getEmbeddableCartridges() {
return embeddableCartridges;
}
- public List<IEmbeddableCartridge> getSelectedEmbeddableCartridges() throws OpenShiftException {
+ public Set<IEmbeddableCartridge> getSelectedEmbeddableCartridges() throws OpenShiftException {
return wizardModel.getSelectedEmbeddableCartridges();
}
+ public void setSelectedEmbeddableCartridges(Set<IEmbeddableCartridge> selectedEmbeddableCartridges) {
+ firePropertyChange(PROPERTY_SELECTED_EMBEDDABLE_CARTRIDGES,
+ wizardModel.getSelectedEmbeddableCartridges(),
+ wizardModel.setSelectedEmbeddableCartridges(selectedEmbeddableCartridges));
+ }
+
public boolean hasApplication(ICartridge cartridge) {
try {
- // return wizardModel.getUser().hasApplication(cartridge);
return getUser().hasApplication(cartridge);
} catch (OpenShiftException e) {
- OpenShiftUIActivator.log(OpenShiftUIActivator
- .createErrorStatus("Could not get application by cartridge", e));
+ OpenShiftUIActivator.log(
+ OpenShiftUIActivator.createErrorStatus("Could not get application by cartridge", e));
return false;
}
}
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizard.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizard.java 2012-02-10 22:48:07 UTC (rev 38625)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizard.java 2012-02-10 22:54:43 UTC (rev 38626)
@@ -10,7 +10,9 @@
******************************************************************************/
package org.jboss.tools.openshift.express.internal.ui.wizard;
+import java.util.ArrayList;
import java.util.List;
+import java.util.Set;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.TimeUnit;
@@ -133,12 +135,14 @@
protected IStatus run(IProgressMonitor monitor) {
try {
- List<IEmbeddableCartridge> selectedCartridges =
+ Set<IEmbeddableCartridge> selectedCartridges =
getWizardModel().getSelectedEmbeddableCartridges();
final IApplication application = getWizardModel().getApplication();
if (selectedCartridges != null
&& !selectedCartridges.isEmpty()) {
- application.addEmbbedCartridges(selectedCartridges);
+ List<IEmbeddableCartridge> list = new ArrayList<IEmbeddableCartridge>();
+ list.addAll(selectedCartridges);
+ application.addEmbbedCartridges(list);
}
queue.offer(true);
} catch (OpenShiftException e) {
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizardModel.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizardModel.java 2012-02-10 22:48:07 UTC (rev 38625)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/CreateNewApplicationWizardModel.java 2012-02-10 22:54:43 UTC (rev 38626)
@@ -1,7 +1,7 @@
package org.jboss.tools.openshift.express.internal.ui.wizard;
-import java.util.ArrayList;
-import java.util.List;
+import java.util.HashSet;
+import java.util.Set;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.osgi.util.NLS;
@@ -81,11 +81,11 @@
return null;
}
- public List<IEmbeddableCartridge> getSelectedEmbeddableCartridges() {
+ public Set<IEmbeddableCartridge> getSelectedEmbeddableCartridges() {
@SuppressWarnings("unchecked")
- List<IEmbeddableCartridge> selectedEmbeddableCartridges = (List<IEmbeddableCartridge>) dataModel.get(SELECTED_EMBEDDABLE_CARTRIDGES);
+ Set<IEmbeddableCartridge> selectedEmbeddableCartridges = (Set<IEmbeddableCartridge>) dataModel.get(SELECTED_EMBEDDABLE_CARTRIDGES);
if(selectedEmbeddableCartridges == null) {
- selectedEmbeddableCartridges = new ArrayList<IEmbeddableCartridge>();
+ selectedEmbeddableCartridges = new HashSet<IEmbeddableCartridge>();
dataModel.put(SELECTED_EMBEDDABLE_CARTRIDGES, selectedEmbeddableCartridges);
}
return selectedEmbeddableCartridges;
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java 2012-02-10 22:48:07 UTC (rev 38625)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java 2012-02-10 22:54:43 UTC (rev 38626)
@@ -13,7 +13,9 @@
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.net.URISyntaxException;
+import java.util.ArrayList;
import java.util.List;
+import java.util.Set;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.WorkspaceJob;
@@ -151,7 +153,7 @@
}
private boolean addRemoveCartridges(final IApplication application,
- final List<IEmbeddableCartridge> selectedCartridges) {
+ final Set<IEmbeddableCartridge> selectedCartridges) {
try {
IStatus status = WizardUtils.runInWizard(
new Job(NLS.bind("Adding selected embedded cartridges for application {0}...", getWizardModel()
@@ -162,7 +164,9 @@
try {
if (selectedCartridges != null
&& !selectedCartridges.isEmpty()) {
- application.addEmbbedCartridges(selectedCartridges);
+ List<IEmbeddableCartridge> embeddableCartridges = new ArrayList<IEmbeddableCartridge>();
+ embeddableCartridges.addAll(selectedCartridges);
+ application.addEmbbedCartridges(embeddableCartridges);
}
} catch (OpenShiftException e) {
return OpenShiftUIActivator.createErrorStatus(
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizardModel.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizardModel.java 2012-02-10 22:48:07 UTC (rev 38625)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizardModel.java 2012-02-10 22:54:43 UTC (rev 38626)
@@ -4,9 +4,10 @@
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.net.URISyntaxException;
-import java.util.ArrayList;
import java.util.HashMap;
+import java.util.HashSet;
import java.util.List;
+import java.util.Set;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
@@ -67,8 +68,9 @@
@Override
public void importProject(IProgressMonitor monitor) throws OpenShiftException, CoreException, InterruptedException,
URISyntaxException, InvocationTargetException {
- List<IProject> importedProjects =
- new ImportNewProject(getProjectName(), getApplication(), getRemoteName(), getRepositoryFile()).execute(monitor);
+ List<IProject> importedProjects =
+ new ImportNewProject(getProjectName(), getApplication(), getRemoteName(), getRepositoryFile())
+ .execute(monitor);
createServerAdapter(monitor, importedProjects);
}
@@ -197,12 +199,8 @@
@Override
public void setApplication(IApplication application) {
+ setUseExistingApplication(application != null);
setProperty(APPLICATION, application);
- if (application == null) {
- setUseExistingApplication(false);
- } else {
- setUseExistingApplication(true);
- }
setApplicationCartridge(application);
setApplicationName(application);
}
@@ -349,17 +347,22 @@
}
- public List<IEmbeddableCartridge> getSelectedEmbeddableCartridges() {
+ public Set<IEmbeddableCartridge> getSelectedEmbeddableCartridges() {
@SuppressWarnings("unchecked")
- List<IEmbeddableCartridge> selectedEmbeddableCartridges = (List<IEmbeddableCartridge>) dataModel
- .get(KEY_SELECTED_EMBEDDABLE_CARTRIDGES);
+ Set<IEmbeddableCartridge> selectedEmbeddableCartridges =
+ (Set<IEmbeddableCartridge>) dataModel.get(KEY_SELECTED_EMBEDDABLE_CARTRIDGES);
if (selectedEmbeddableCartridges == null) {
- selectedEmbeddableCartridges = new ArrayList<IEmbeddableCartridge>();
- dataModel.put(KEY_SELECTED_EMBEDDABLE_CARTRIDGES, selectedEmbeddableCartridges);
+ selectedEmbeddableCartridges = new HashSet<IEmbeddableCartridge>();
+ setSelectedEmbeddableCartridges(selectedEmbeddableCartridges);
}
return selectedEmbeddableCartridges;
}
+ public Set<IEmbeddableCartridge> setSelectedEmbeddableCartridges(Set<IEmbeddableCartridge> selectedEmbeddableCartridges) {
+ dataModel.put(KEY_SELECTED_EMBEDDABLE_CARTRIDGES, selectedEmbeddableCartridges);
+ return selectedEmbeddableCartridges;
+ }
+
public void setApplicationCartridge(ICartridge cartridge) {
dataModel.put(APPLICATION_CARTRIDGE, cartridge);
}
14 years, 1 month
JBoss Tools SVN: r38625 - in trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf: model/handlers and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2012-02-10 17:48:07 -0500 (Fri, 10 Feb 2012)
New Revision: 38625
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/handlers/CreateFacesConfigSupport.java
Log:
JBIDE-10830
https://issues.jboss.org/browse/JBIDE-10830
Disabling wizard when target folder for new faces-config is outside the web root and check box 'register in web.xml' is selected.
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java 2012-02-10 22:17:06 UTC (rev 38624)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java 2012-02-10 22:48:07 UTC (rev 38625)
@@ -114,6 +114,7 @@
public static String CreateFacesConfigSupport_WebXMLIncorrect;
public static String CreateFacesConfigSupport_WebXMLNotFound;
public static String CreateFacesConfigSupport_WebXMLReadOnly;
+ public static String CreateFacesConfigSupport_WebXMLCannotRegister;
public static String DELETE_JAVA_SOURCE;
public static String DeleteFacesConfigHandler_DeleteFacesConfig;
public static String DeleteFacesConfigHandler_DeleteReferenceFromWebXML;
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties 2012-02-10 22:17:06 UTC (rev 38624)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties 2012-02-10 22:48:07 UTC (rev 38625)
@@ -91,6 +91,7 @@
CreateFacesConfigSupport_WebXMLIncorrect=Faces config file cannot be registered because web.xml is incorrect.
CreateFacesConfigSupport_WebXMLNotFound=Faces config cannot be registered because web.xml is not found.
CreateFacesConfigSupport_WebXMLReadOnly=Faces config file cannot be registered because web.xml is read only.
+CreateFacesConfigSupport_WebXMLCannotRegister=Cannot register faces config file located outside of the Web root.
DELETE_JAVA_SOURCE = Delete Java Source
DeleteFacesConfigHandler_DeleteFacesConfig=Delete faces-config {0}
DeleteFacesConfigHandler_DeleteReferenceFromWebXML=Delete reference from web.xml
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/handlers/CreateFacesConfigSupport.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/handlers/CreateFacesConfigSupport.java 2012-02-10 22:17:06 UTC (rev 38624)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/handlers/CreateFacesConfigSupport.java 2012-02-10 22:48:07 UTC (rev 38625)
@@ -100,7 +100,8 @@
result = "/" + o.getAttributeValue("name") + result; //$NON-NLS-1$ //$NON-NLS-2$
o = o.getParent();
}
- if(o == null || !"WEB-ROOT".equals(o.getAttributeValue("name"))) { //$NON-NLS-1$ //$NON-NLS-2$
+ String name = o == null ? null : o.getAttributeValue("name"); //$NON-NLS-1$
+ if(o == null || (!"WEB-ROOT".equals(name) && !name.startsWith("WEB-ROOT-") )) { //$NON-NLS-1$ //$NON-NLS-2$
result = "/WEB-INF" + result; //$NON-NLS-1$
}
return result;
@@ -114,7 +115,7 @@
public void validate(Properties data) {
super.validate(data);
if(message != null) return;
- message = checkRegister(getTarget(), data.getProperty("register in web.xml")); //$NON-NLS-1$
+ message = checkRegister(getTargetFolder() == null ? getTarget() : getTargetFolder(), data.getProperty("register in web.xml")); //$NON-NLS-1$
}
}
@@ -130,6 +131,16 @@
}
if("yes".equals(webxml.get("isIncorrect"))) return JSFUIMessages.CreateFacesConfigSupport_WebXMLIncorrect; //$NON-NLS-1$ //$NON-NLS-2$
if(!webxml.isObjectEditable()) return JSFUIMessages.CreateFacesConfigSupport_WebXMLReadOnly;
+
+ XModelObject fs = object;
+ while(fs != null && fs.getFileType() != XModelObject.SYSTEM) fs = fs.getParent();
+ if(fs != null) {
+ String fsn = fs.getAttributeValue(XModelObjectConstants.ATTR_NAME);
+ if(!fsn.equals("WEB-INF") && !fsn.equals("WEB-ROOT") && !fsn.startsWith("WEB-ROOT-")) {
+ return JSFUIMessages.CreateFacesConfigSupport_WebXMLCannotRegister;
+ }
+ }
+
return null;
}
14 years, 1 month
JBoss Tools SVN: r38624 - in trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui: viewer/actionProvider and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-02-10 17:17:06 -0500 (Fri, 10 Feb 2012)
New Revision: 38624
Added:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateOrEditDomainAction.java
Removed:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/EditDomainAction.java
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/viewer/actionProvider/EditDomainActionProvider.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationWizardPage.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainDialog.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainWizardPage.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainDialog.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java
Log:
Open - JBIDE-10845 Application configuration UI issues JBIDE-10855
cannot create/rename domain so new users can't get started
https://issues.jboss.org/browse/JBIDE-10855
Copied: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateOrEditDomainAction.java (from rev 38621, trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/EditDomainAction.java)
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateOrEditDomainAction.java (rev 0)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateOrEditDomainAction.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -0,0 +1,47 @@
+package org.jboss.tools.openshift.express.internal.ui.action;
+
+import org.eclipse.jface.viewers.ITreeSelection;
+import org.eclipse.jface.wizard.IWizard;
+import org.eclipse.jface.wizard.WizardDialog;
+import org.eclipse.swt.widgets.Display;
+import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
+import org.jboss.tools.openshift.express.internal.ui.messages.OpenShiftExpressUIMessages;
+import org.jboss.tools.openshift.express.internal.ui.utils.Logger;
+import org.jboss.tools.openshift.express.internal.ui.wizard.EditDomainDialog;
+import org.jboss.tools.openshift.express.internal.ui.wizard.NewDomainDialog;
+
+import com.openshift.express.client.IUser;
+import com.openshift.express.client.OpenShiftException;
+
+public class CreateOrEditDomainAction extends AbstractAction {
+
+ public CreateOrEditDomainAction() {
+ super(OpenShiftExpressUIMessages.EDIT_DOMAIN_ACTION);
+ setImageDescriptor(OpenShiftUIActivator.getDefault().createImageDescriptor("edit.gif"));
+ }
+
+ @Override
+ public void run() {
+ final ITreeSelection treeSelection = (ITreeSelection) selection;
+ if (selection != null && selection instanceof ITreeSelection
+ && treeSelection.getFirstElement() instanceof IUser) {
+ IWizard domainDialog = null;
+ final IUser user = (IUser) treeSelection.getFirstElement();
+ try {
+ if (user.getDomain() == null || user.getDomain().getNamespace() == null) {
+ domainDialog = new NewDomainDialog(user);
+ } else {
+ domainDialog = new EditDomainDialog(user);
+ }
+ } catch (OpenShiftException e) {
+ Logger.warn("Failed to retrieve User domain, prompting for creation", e);
+ // let's use the domain creation wizard, then.
+ domainDialog = new NewDomainDialog(user);
+ }
+ WizardDialog dialog = new WizardDialog(Display.getCurrent().getActiveShell(), domainDialog);
+ dialog.create();
+ dialog.open();
+ }
+ }
+
+}
Property changes on: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/CreateOrEditDomainAction.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Deleted: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/EditDomainAction.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/EditDomainAction.java 2012-02-10 21:52:27 UTC (rev 38623)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/action/EditDomainAction.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -1,33 +0,0 @@
-package org.jboss.tools.openshift.express.internal.ui.action;
-
-import org.eclipse.jface.viewers.ITreeSelection;
-import org.eclipse.jface.wizard.WizardDialog;
-import org.eclipse.swt.widgets.Display;
-import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
-import org.jboss.tools.openshift.express.internal.ui.messages.OpenShiftExpressUIMessages;
-import org.jboss.tools.openshift.express.internal.ui.wizard.EditDomainDialog;
-
-import com.openshift.express.client.IUser;
-
-public class EditDomainAction extends AbstractAction {
-
- public EditDomainAction() {
- super(OpenShiftExpressUIMessages.EDIT_DOMAIN_ACTION);
- setImageDescriptor(OpenShiftUIActivator.getDefault().createImageDescriptor("edit.gif"));
- }
-
- @Override
- public void run() {
- final ITreeSelection treeSelection = (ITreeSelection)selection;
- if (selection != null && selection instanceof ITreeSelection && treeSelection.getFirstElement() instanceof IUser) {
- final IUser user = (IUser) treeSelection.getFirstElement();
- EditDomainDialog wizard = new EditDomainDialog(user);
- WizardDialog dialog = new WizardDialog(Display.getCurrent().getActiveShell(), wizard);
- dialog.create();
- dialog.open();
-
- }
- }
-
-
-}
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/viewer/actionProvider/EditDomainActionProvider.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/viewer/actionProvider/EditDomainActionProvider.java 2012-02-10 21:52:27 UTC (rev 38623)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/viewer/actionProvider/EditDomainActionProvider.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -10,7 +10,7 @@
******************************************************************************/
package org.jboss.tools.openshift.express.internal.ui.viewer.actionProvider;
-import org.jboss.tools.openshift.express.internal.ui.action.EditDomainAction;
+import org.jboss.tools.openshift.express.internal.ui.action.CreateOrEditDomainAction;
/**
* @author Xavier Coulon
@@ -18,7 +18,7 @@
public class EditDomainActionProvider extends AbstractActionProvider {
public EditDomainActionProvider() {
- super(new EditDomainAction(), "group.edition");
+ super(new CreateOrEditDomainAction(), "group.edition");
}
}
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationWizardPage.java 2012-02-10 21:52:27 UTC (rev 38623)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationWizardPage.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -198,7 +198,7 @@
private void createDomain() throws OpenShiftException {
if (WizardUtils.openWizardDialog(
- new NewDomainDialog(model.getNamespace(), wizardModel), getContainer().getShell()) == Dialog.OK) {
+ new NewDomainDialog(wizardModel.getUser()), getContainer().getShell()) == Dialog.OK) {
model.loadDomain();
}
}
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainDialog.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainDialog.java 2012-02-10 21:52:27 UTC (rev 38623)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainDialog.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -10,7 +10,13 @@
******************************************************************************/
package org.jboss.tools.openshift.express.internal.ui.wizard;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.wizard.Wizard;
+import org.jboss.tools.common.ui.WizardUtils;
+import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
import com.openshift.express.client.IUser;
@@ -29,30 +35,28 @@
@Override
public boolean performFinish() {
-// final ArrayBlockingQueue<Boolean> queue = new ArrayBlockingQueue<Boolean>(1);
-// try {
-// WizardUtils.runInWizard(new Job("Renaming domain...") {
-//
-// @Override
-// protected IStatus run(IProgressMonitor monitor) {
-// try {
-// model.renameDomain();
-// queue.offer(true);
-// } catch (Exception e) {
-// queue.offer(false);
-// return new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
-// NLS.bind("Could not create domain \"{0}\"", model.getNamespace()), e);
-// }
-// return Status.OK_STATUS;
-// }
-// }, getContainer());
-// } catch (Exception e) {
-// // ignore
-// }
-// return queue.poll();
+ renameDomain();
return true;
}
+ private void renameDomain() {
+ try {
+ WizardUtils.runInWizard(new Job("Renaming domain...") {
+ @Override
+ protected IStatus run(IProgressMonitor monitor) {
+ try {
+ model.renameDomain();
+ return Status.OK_STATUS;
+ } catch (Exception e) {
+ return new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID, "Could not rename domain", e);
+ }
+ }
+ }, getContainer());
+ } catch (Exception ex) {
+ // ignore
+ }
+ }
+
@Override
public void addPages() {
addPage(new EditDomainWizardPage(model, this));
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainWizardPage.java 2012-02-10 21:52:27 UTC (rev 38623)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/EditDomainWizardPage.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -10,37 +10,18 @@
******************************************************************************/
package org.jboss.tools.openshift.express.internal.ui.wizard;
-import org.eclipse.core.databinding.Binding;
import org.eclipse.core.databinding.DataBindingContext;
-import org.eclipse.core.databinding.UpdateValueStrategy;
-import org.eclipse.core.databinding.beans.BeanProperties;
-import org.eclipse.core.databinding.conversion.Converter;
-import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.core.runtime.jobs.Job;
-import org.eclipse.jface.databinding.swt.WidgetProperties;
-import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.layout.GridLayoutFactory;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.swt.SWT;
-import org.eclipse.swt.events.SelectionAdapter;
-import org.eclipse.swt.events.SelectionEvent;
-import org.eclipse.swt.events.SelectionListener;
-import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
-import org.jboss.tools.common.ui.WizardUtils;
import org.jboss.tools.common.ui.databinding.DataBindingUtils;
import org.jboss.tools.common.ui.databinding.ParametrizableWizardPageSupport;
-import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
-import com.openshift.express.client.IDomain;
-import com.openshift.express.client.OpenShiftException;
-
/**
* @author André Dietisheim
*/
@@ -49,7 +30,7 @@
private EditDomainWizardPageModel model;
public EditDomainWizardPage(EditDomainWizardPageModel model, IWizard wizard) {
- super("Domain", "Create a new domain", "New Domain", wizard);
+ super("OpenShift Domain Edition", "Rename your domain", "Domain Name Edition", wizard);
this.model = model;
}
@@ -57,90 +38,20 @@
GridLayoutFactory.fillDefaults().numColumns(3).applyTo(container);
createDomainGroup(container, dbc);
}
-
+
private void createDomainGroup(Composite container, DataBindingContext dbc) {
- Group domainGroup = new Group(container, SWT.BORDER);
- domainGroup.setText("Domain");
- GridDataFactory.fillDefaults()
- .grab(true, false).align(SWT.FILL, SWT.TOP).span(3, 1).applyTo(domainGroup);
+ Composite domainGroup = new Composite(container, SWT.NONE);
+ GridDataFactory.fillDefaults().grab(true, false).align(SWT.FILL, SWT.TOP).span(2, 1).applyTo(domainGroup);
GridLayoutFactory.fillDefaults().margins(6, 6).numColumns(4).applyTo(domainGroup);
Label namespaceLabel = new Label(domainGroup, SWT.NONE);
namespaceLabel.setText("&Domain name");
GridDataFactory.fillDefaults().align(SWT.LEFT, SWT.CENTER).applyTo(namespaceLabel);
Text namespaceText = new Text(domainGroup, SWT.BORDER);
GridDataFactory.fillDefaults().align(SWT.FILL, SWT.CENTER).grab(true, false).applyTo(namespaceText);
- Binding namespaceBinding = DataBindingUtils.bindMandatoryTextField(
- namespaceText, "Domain", ApplicationWizardPageModel.PROPERTY_NAMESPACE, model, dbc);
- Button createRenameButton = new Button(domainGroup, SWT.PUSH);
- DataBindingUtils.bindEnablementToValidationStatus(createRenameButton, IStatus.OK, dbc, namespaceBinding);
- dbc.bindValue(WidgetProperties.text().observe(createRenameButton)
- , BeanProperties.value(ApplicationWizardPageModel.PROPERTY_DOMAIN).observe(model)
- , new UpdateValueStrategy(UpdateValueStrategy.POLICY_NEVER)
- , new UpdateValueStrategy().setConverter(new Converter(IDomain.class, String.class) {
-
- @Override
- public Object convert(Object fromObject) {
- if (fromObject instanceof IDomain) {
- return "&Rename";
- } else {
- return "&Create";
- }
- }
- }));
- GridDataFactory.fillDefaults().align(SWT.RIGHT, SWT.CENTER).hint(80, SWT.DEFAULT).applyTo(createRenameButton);
- createRenameButton.addSelectionListener(onCreateRenameDomain(dbc));
+ DataBindingUtils.bindMandatoryTextField(namespaceText, "Domain", ApplicationWizardPageModel.PROPERTY_NAMESPACE,
+ model, dbc);
}
-
- private SelectionListener onCreateRenameDomain(DataBindingContext dbc) {
- return new SelectionAdapter() {
- @Override
- public void widgetSelected(SelectionEvent e) {
- if (model.hasDomain()) {
- renameDomain();
- } else {
- try {
- createDomain();
- } catch (OpenShiftException ex) {
- IStatus status = new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID, ex.getMessage(), ex);
- OpenShiftUIActivator.getDefault().getLog().log(status);
- ErrorDialog.openError(getShell(), "Error creating domain",
- "An error occurred while creating the domain.", status);
- }
- }
- }
- };
- }
-
- private void createDomain() throws OpenShiftException {
-// if (WizardUtils.openWizardDialog(
-// new NewDomainDialog(model.getNamespace(), wizardModel), getContainer().getShell()) == Dialog.OK) {
-// model.loadDomain();
-// }
- }
-
- private void renameDomain() {
- try {
- WizardUtils.runInWizard(
- new Job("Renaming domain...") {
-
- @Override
- protected IStatus run(IProgressMonitor monitor) {
- try {
- model.renameDomain();
- return Status.OK_STATUS;
- } catch (Exception e) {
- return new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
- "Could not rename domain", e);
- }
- }
- }, getContainer(), getDataBindingContext());
- } catch (Exception ex) {
- // ignore
- }
- }
-
-
@Override
protected void setupWizardPageSupport(DataBindingContext dbc) {
ParametrizableWizardPageSupport.create(IStatus.ERROR, this, dbc);
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainDialog.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainDialog.java 2012-02-10 21:52:27 UTC (rev 38623)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainDialog.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -10,8 +10,6 @@
******************************************************************************/
package org.jboss.tools.openshift.express.internal.ui.wizard;
-import java.util.concurrent.ArrayBlockingQueue;
-
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
@@ -20,8 +18,9 @@
import org.eclipse.osgi.util.NLS;
import org.jboss.tools.common.ui.WizardUtils;
import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
-import org.jboss.tools.openshift.express.internal.ui.wizard.appimport.ImportProjectWizardModel;
+import com.openshift.express.client.IUser;
+
/**
* @author André Dietisheim
*/
@@ -30,25 +29,20 @@
private String namespace;
private NewDomainWizardPageModel model;
- public NewDomainDialog(String namespace, ImportProjectWizardModel wizardModel) {
- this.namespace = namespace;
- this.model = new NewDomainWizardPageModel(namespace, wizardModel.getUser());
+ public NewDomainDialog(IUser user) {
+ this.model = new NewDomainWizardPageModel(user);
setNeedsProgressMonitor(true);
}
@Override
public boolean performFinish() {
- final ArrayBlockingQueue<Boolean> queue = new ArrayBlockingQueue<Boolean>(1);
try {
WizardUtils.runInWizard(new Job("Creating domain...") {
-
@Override
protected IStatus run(IProgressMonitor monitor) {
try {
model.createDomain();
- queue.offer(true);
} catch (Exception e) {
- queue.offer(false);
return new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
NLS.bind("Could not create domain \"{0}\"", model.getNamespace()), e);
}
@@ -56,9 +50,8 @@
}
}, getContainer());
} catch (Exception e) {
- // ignore
}
- return queue.poll();
+ return true;
}
@Override
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java 2012-02-10 21:52:27 UTC (rev 38623)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java 2012-02-10 22:17:06 UTC (rev 38624)
@@ -44,8 +44,7 @@
private String sshKey;
private IUser user;
- public NewDomainWizardPageModel(String namespace, IUser user) {
- this.namespace = namespace;
+ public NewDomainWizardPageModel(IUser user) {
this.user = user;
}
14 years, 1 month
JBoss Tools SVN: r38623 - in trunk/central/plugins/org.jboss.tools.central: schema and 4 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-02-10 16:52:27 -0500 (Fri, 10 Feb 2012)
New Revision: 38623
Removed:
trunk/central/plugins/org.jboss.tools.central/schema/tutorials.exsd
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/actions/JBossSeamRuntimePreferencesHandler.java
Modified:
trunk/central/plugins/org.jboss.tools.central/plugin.xml
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/configurators/DefaultJBossCentralConfigurator.java
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java
trunk/central/plugins/org.jboss.tools.central/template/DefaultJBossCentralConfigurator.java
Log:
JBIDE-10873 Removing org.jboss.tool.central.tutorials extension point
Modified: trunk/central/plugins/org.jboss.tools.central/plugin.xml
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/plugin.xml 2012-02-10 21:52:14 UTC (rev 38622)
+++ trunk/central/plugins/org.jboss.tools.central/plugin.xml 2012-02-10 21:52:27 UTC (rev 38623)
@@ -2,7 +2,6 @@
<?eclipse version="3.4"?>
<plugin>
- <extension-point id="tutorials" name="%Tutorials" schema="schema/tutorials.exsd"/>
<extension-point id="configurators" name="JBoss Central Configurator" schema="schema/configurators.exsd"/>
<extension
@@ -31,19 +30,6 @@
name="JBoss Central"/>
</extension>
- <!--
- <extension
- point="org.eclipse.ui.menus">
- <menuContribution
- locationURI="menu:help?before=group.intro">
- <command
- commandId="org.jboss.tools.central.show"
- icon="icons/jboss.png"
- id="org.jboss.tools.central.show">
- </command>
- </menuContribution>
- </extension>
- -->
<extension point="org.eclipse.ui.actionSets">
<actionSet
id="org.jboss.tools.central"
@@ -137,13 +123,6 @@
</command>
<command
- defaultHandler="org.jboss.tools.central.actions.JBossSeamRuntimePreferencesHandler"
- name="JBoss Seam Runtime Preferences"
- id="org.jboss.tools.seam.runtime.preferences">
- </command>
-
-
- <command
defaultHandler="org.jboss.tools.central.actions.WTPRuntimePreferencesHandler"
name="WTP Runtime Preferences"
id="org.jboss.tools.wtp.runtime.preferences">
@@ -213,11 +192,6 @@
</image>
<image
- commandId="org.jboss.tools.seam.runtime.preferences"
- icon="icons/seam16.png">
- </image>
-
- <image
commandId="org.jboss.tools.central.newProjectExamplesWizard"
icon="icons/examples_wiz.gif">
</image>
Deleted: trunk/central/plugins/org.jboss.tools.central/schema/tutorials.exsd
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/schema/tutorials.exsd 2012-02-10 21:52:14 UTC (rev 38622)
+++ trunk/central/plugins/org.jboss.tools.central/schema/tutorials.exsd 2012-02-10 21:52:27 UTC (rev 38623)
@@ -1,195 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!-- Schema file written by PDE -->
-<schema targetNamespace="org.jboss.tools.central" xmlns="http://www.w3.org/2001/XMLSchema">
-<annotation>
- <appinfo>
- <meta.schema plugin="org.jboss.tools.central" id="tutorials" name="Tutorials"/>
- </appinfo>
- <documentation>
- [Enter description of this extension point.]
- </documentation>
- </annotation>
-
- <element name="extension">
- <annotation>
- <appinfo>
- <meta.element />
- </appinfo>
- </annotation>
- <complexType>
- <sequence>
- <element ref="category" minOccurs="1" maxOccurs="unbounded"/>
- <element ref="tutorial" minOccurs="1" maxOccurs="unbounded"/>
- </sequence>
- <attribute name="point" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="id" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="name" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- <appinfo>
- <meta.attribute translatable="true"/>
- </appinfo>
- </annotation>
- </attribute>
- </complexType>
- </element>
-
- <element name="tutorial">
- <complexType>
- <attribute name="categoryId" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="name" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="id" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="type" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- <simpleType>
- <restriction base="string">
- <enumeration value="projectExample">
- </enumeration>
- <enumeration value="cheatsheet">
- </enumeration>
- <enumeration value="html">
- </enumeration>
- </restriction>
- </simpleType>
- </attribute>
- <attribute name="reference" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="priority" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="icon" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- <appinfo>
- <meta.attribute kind="resource"/>
- </appinfo>
- </annotation>
- </attribute>
- <attribute name="description" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- </complexType>
- </element>
-
- <element name="category">
- <complexType>
- <attribute name="id" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="name" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="priority" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="description" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- </complexType>
- </element>
-
- <annotation>
- <appinfo>
- <meta.section type="since"/>
- </appinfo>
- <documentation>
- [Enter the first release in which this extension point appears.]
- </documentation>
- </annotation>
-
- <annotation>
- <appinfo>
- <meta.section type="examples"/>
- </appinfo>
- <documentation>
- [Enter extension point usage example here.]
- </documentation>
- </annotation>
-
- <annotation>
- <appinfo>
- <meta.section type="apiinfo"/>
- </appinfo>
- <documentation>
- [Enter API information here.]
- </documentation>
- </annotation>
-
- <annotation>
- <appinfo>
- <meta.section type="implementation"/>
- </appinfo>
- <documentation>
- [Enter information about supplied implementation of this extension point.]
- </documentation>
- </annotation>
-
-
-</schema>
Deleted: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/actions/JBossSeamRuntimePreferencesHandler.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/actions/JBossSeamRuntimePreferencesHandler.java 2012-02-10 21:52:14 UTC (rev 38622)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/actions/JBossSeamRuntimePreferencesHandler.java 2012-02-10 21:52:27 UTC (rev 38623)
@@ -1,24 +0,0 @@
-/*************************************************************************************
- * Copyright (c) 2008-2011 Red Hat, Inc. 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:
- * JBoss by Red Hat - Initial implementation.
- ************************************************************************************/
-package org.jboss.tools.central.actions;
-
-
-/**
-* @author snjeza
-*
-*/
-public class JBossSeamRuntimePreferencesHandler extends AbstractPreferencesHandler {
-
- @Override
- public String getPreferenceId() {
- return "org.jboss.tools.common.model.ui.seam";
- }
-}
Modified: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/configurators/DefaultJBossCentralConfigurator.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/configurators/DefaultJBossCentralConfigurator.java 2012-02-10 21:52:14 UTC (rev 38622)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/configurators/DefaultJBossCentralConfigurator.java 2012-02-10 21:52:27 UTC (rev 38623)
@@ -74,11 +74,7 @@
@Override
public List<String> getWizardIds() {
List<String> wizardIds = new ArrayList<String>();
- //wizardIDs.add("org.jboss.ide.eclipse.as.openshift.express.ui.wizard.NewServerAdapter");
wizardIds.add("org.eclipse.jst.servlet.ui.project.facet.WebProjectWizard");
- //wizardIds.add("org.jboss.tools.seam.ui.wizards.SeamProjectWizard");
- //wizardIds.add("org.eclipse.m2e.core.wizards.Maven2ProjectWizard");
- //wizardIds.add(JBossCentralActivator.NEW_PROJECT_EXAMPLES_WIZARD_ID);
wizardIds.add("org.jboss.ide.eclipse.as.openshift.express.ui.wizard.createNewApplicationWizard");
return wizardIds;
}
Modified: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java 2012-02-10 21:52:14 UTC (rev 38622)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java 2012-02-10 21:52:27 UTC (rev 38623)
@@ -493,9 +493,6 @@
item = JBossCentralActivator.createContributionItem(getSite(), "org.jboss.tools.runtime.preferences");
toolBarManager.add(item);
- item = JBossCentralActivator.createContributionItem(getSite(), "org.jboss.tools.seam.runtime.preferences");
- toolBarManager.add(item);
-
item = JBossCentralActivator.createContributionItem(getSite(), "org.jboss.tools.wtp.runtime.preferences");
toolBarManager.add(item);
Modified: trunk/central/plugins/org.jboss.tools.central/template/DefaultJBossCentralConfigurator.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/template/DefaultJBossCentralConfigurator.java 2012-02-10 21:52:14 UTC (rev 38622)
+++ trunk/central/plugins/org.jboss.tools.central/template/DefaultJBossCentralConfigurator.java 2012-02-10 21:52:27 UTC (rev 38623)
@@ -74,11 +74,7 @@
@Override
public List<String> getWizardIds() {
List<String> wizardIds = new ArrayList<String>();
- //wizardIDs.add("org.jboss.ide.eclipse.as.openshift.express.ui.wizard.NewServerAdapter");
wizardIds.add("org.eclipse.jst.servlet.ui.project.facet.WebProjectWizard");
- //wizardIds.add("org.jboss.tools.seam.ui.wizards.SeamProjectWizard");
- //wizardIds.add("org.eclipse.m2e.core.wizards.Maven2ProjectWizard");
- //wizardIds.add(JBossCentralActivator.NEW_PROJECT_EXAMPLES_WIZARD_ID);
wizardIds.add("org.jboss.ide.eclipse.as.openshift.express.ui.wizard.createNewApplicationWizard");
return wizardIds;
}
14 years, 1 month
JBoss Tools SVN: r38622 - trunk/central/plugins/org.jboss.tools.community.central.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-02-10 16:52:14 -0500 (Fri, 10 Feb 2012)
New Revision: 38622
Modified:
trunk/central/plugins/org.jboss.tools.community.central/plugin.xml
Log:
JBIDE-10873 Removing org.jboss.tool.central.tutorials extension point
Modified: trunk/central/plugins/org.jboss.tools.community.central/plugin.xml
===================================================================
--- trunk/central/plugins/org.jboss.tools.community.central/plugin.xml 2012-02-10 19:47:12 UTC (rev 38621)
+++ trunk/central/plugins/org.jboss.tools.community.central/plugin.xml 2012-02-10 21:52:14 UTC (rev 38622)
@@ -1,114 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
- <extension
- point="org.jboss.tools.central.tutorials">
- <category
- id="org.jboss.tools.central.jbossas.quickstart"
- name="JBoss Quickstarts"
- description="These quickstarts are aimed to get you up to writing applications with minimal fuss. We recommend that you work through the quickstarts in the order they are presented in this guide, however if you have previous experience with Java EE 6, you may wish to skip some or all of the quickstarts."
- priority="2" />
- <!--
- <category
- id="org.jboss.tools.central.seam2"
- name="Seam 2 Tutorials"
- description="These tutorials are intended to help you develop Seam 2 applications."
- priority="5" />
- -->
- <tutorial
- id="org.jboss.tools.central.jbossas.quickstart.helloworld"
- categoryId="org.jboss.tools.central.jbossas.quickstart"
- name="Helloworld"
- type="projectExample"
- priority="1"
- icon="icons/jbossas7.png"
- reference="JBoss AS 7 Quickstarts::helloworld"/>
- <tutorial
- id="org.jboss.tools.central.jbossas.quickstart.numberguess"
- categoryId="org.jboss.tools.central.jbossas.quickstart"
- name="Numberguess"
- type="projectExample"
- priority="2"
- icon="icons/jbossas7.png"
- reference="JBoss AS 7 Quickstarts::numberguess"/>
-
- <tutorial
- id="org.jboss.tools.central.jbossas.quickstart.login"
- categoryId="org.jboss.tools.central.jbossas.quickstart"
- name="Login"
- type="projectExample"
- priority="3"
- icon="icons/jbossas7.png"
- reference="JBoss AS 7 Quickstarts::login"/>
-
- <tutorial
- id="org.jboss.tools.central.jbossas.quickstart.kitchensink"
- categoryId="org.jboss.tools.central.jbossas.quickstart"
- name="Kitchensink"
- type="projectExample"
- priority="4"
- icon="icons/jbossas7.png"
- reference="JBoss AS 7 Quickstarts::kitchensink"/>
-
- <tutorial
- id="org.jboss.tools.central.jbossas.quickstart.poh5helloworld"
- categoryId="org.jboss.tools.central.jbossas.quickstart"
- name="HTML5"
- type="projectExample"
- priority="5"
- icon="icons/jbossas7.png"
- reference="JBoss AS 7 Quickstarts::poh5-helloworld"/>
-
- <tutorial
- id="org.jboss.tools.central.jbossas.quickstart.ticketmonster"
- categoryId="org.jboss.tools.central.jbossas.quickstart"
- name="Ticket Monster"
- type="projectExample"
- priority="6"
- icon="icons/jbossas7.png"
- reference="JBoss AS 7 Quickstarts::ticketmonster"/>
-
- <!--
- <tutorial
- id="org.jboss.tools.central.Seam.registration2"
- categoryId="org.jboss.tools.central.seam2"
- name="Registration Example"
- type="projectExample"
- priority="1"
- icon="icons/seam16.png"
- reference="Seam::registration2"/>
- <tutorial
- id="org.jboss.tools.central.Seam.messages"
- categoryId="org.jboss.tools.central.seam2"
- name="Message Example"
- type="projectExample"
- priority="2"
- icon="icons/seam16.png"
- reference="Seam::messages"/>
- <tutorial
- id="org.jboss.tools.central.Seam.todo"
- categoryId="org.jboss.tools.central.seam2"
- name="Todo Example"
- type="projectExample"
- priority="3"
- icon="icons/seam16.png"
- reference="Seam::todo"/>
- <tutorial
- id="org.jboss.tools.central.Seam.numberguess"
- categoryId="org.jboss.tools.central.seam2"
- name="Numberguess Example"
- type="projectExample"
- priority="4"
- icon="icons/seam16.png"
- reference="Seam::numberguess"/>
- <tutorial
- id="org.jboss.tools.central.Seam.booking22"
- categoryId="org.jboss.tools.central.seam2"
- name="Boooking Example"
- type="projectExample"
- priority="5"
- icon="icons/seam16.png"
- reference="Seam::booking22"/>
- -->
- </extension>
+
</plugin>
14 years, 1 month
JBoss Tools SVN: r38621 - in trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui: META-INF and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2012-02-10 14:47:12 -0500 (Fri, 10 Feb 2012)
New Revision: 38621
Added:
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElementAdapterFactory.java
Modified:
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/META-INF/MANIFEST.MF
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/plugin.xml
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElement.java
Log:
jax-rs run on server menu items not showing when we want it to. FIXED!!!
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/META-INF/MANIFEST.MF 2012-02-10 19:06:33 UTC (rev 38620)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/META-INF/MANIFEST.MF 2012-02-10 19:47:12 UTC (rev 38621)
@@ -35,7 +35,8 @@
org.eclipse.ltk.core.refactoring;bundle-version="3.5.200",
org.eclipse.wst.validation;bundle-version="1.2.300",
org.eclipse.wst.server.core,
- org.eclipse.debug.core;bundle-version="3.7.0"
+ org.eclipse.debug.core;bundle-version="3.7.0",
+ org.eclipse.debug.ui;bundle-version="3.7.101"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: .
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/plugin.xml
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/plugin.xml 2012-02-10 19:06:33 UTC (rev 38620)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/plugin.xml 2012-02-10 19:47:12 UTC (rev 38621)
@@ -344,4 +344,14 @@
typeIds="*">
</launchableAdapter>
</extension>
+ <extension
+ point="org.eclipse.core.runtime.adapters">
+ <factory
+ adaptableType="org.jboss.tools.ws.jaxrs.ui.cnf.UriPathTemplateElement"
+ class="org.jboss.tools.ws.jaxrs.ui.cnf.UriPathTemplateElementAdapterFactory">
+ <adapter
+ type="org.eclipse.debug.ui.actions.ILaunchable">
+ </adapter>
+ </factory>
+ </extension>
</plugin>
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElement.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElement.java 2012-02-10 19:06:33 UTC (rev 38620)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElement.java 2012-02-10 19:47:12 UTC (rev 38621)
@@ -14,6 +14,7 @@
import java.util.ArrayList;
import java.util.List;
+import org.eclipse.debug.ui.actions.ILaunchable;
import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.jface.viewers.Viewer;
import org.jboss.tools.ws.jaxrs.core.metamodel.IJaxrsEndpoint;
@@ -21,7 +22,7 @@
import org.jboss.tools.ws.jaxrs.ui.cnf.UriPathTemplateMediaTypeMappingElement.EnumCapabilityType;
import org.jboss.tools.ws.jaxrs.ui.internal.utils.Logger;
-public class UriPathTemplateElement implements ITreeContentProvider {
+public class UriPathTemplateElement implements ITreeContentProvider, ILaunchable {
private final IJaxrsEndpoint endpoint;
Added: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElementAdapterFactory.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElementAdapterFactory.java (rev 0)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/cnf/UriPathTemplateElementAdapterFactory.java 2012-02-10 19:47:12 UTC (rev 38621)
@@ -0,0 +1,23 @@
+package org.jboss.tools.ws.jaxrs.ui.cnf;
+
+import org.eclipse.core.runtime.IAdapterFactory;
+import org.eclipse.debug.ui.actions.ILaunchable;
+
+public class UriPathTemplateElementAdapterFactory implements IAdapterFactory {
+
+ @Override
+ public Object getAdapter(Object adaptableObject, Class adapterType) {
+ if( adapterType.equals(ILaunchable.class)) {
+ if( adaptableObject instanceof UriPathTemplateElement ) {
+ return ((UriPathTemplateElement)adaptableObject);
+ }
+ }
+ return null;
+ }
+
+ @Override
+ public Class[] getAdapterList() {
+ return new Class[]{ILaunchable.class};
+ }
+
+}
14 years, 1 month
JBoss Tools SVN: r38620 - in trunk/forge/plugins/org.jboss.tools.forge.runtime/modules: ch and 201 other directories.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2012-02-10 14:06:33 -0500 (Fri, 10 Feb 2012)
New Revision: 38620
Modified:
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/
Log:
JBIDE-10870: Update Forge Runtime to Version 1.0.0.CR2
ignore *.index files
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main
___________________________________________________________________
Added: svn:ignore
+ *.index
14 years, 1 month