JBoss Tools SVN: r31922 - in trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core: util and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-06-08 16:33:05 -0400 (Wed, 08 Jun 2011)
New Revision: 31922
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerConverter.java
Log:
[JBIDE-9100] hid the list of makers (that shall be created) behind accessors in the server behavior.
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java 2011-06-08 18:58:13 UTC (rev 31921)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java 2011-06-08 20:33:05 UTC (rev 31922)
@@ -10,9 +10,6 @@
******************************************************************************/
package org.jboss.ide.eclipse.as.core.server.internal.v7;
-import java.util.ArrayList;
-import java.util.List;
-
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
@@ -26,7 +23,6 @@
import org.jboss.ide.eclipse.as.core.server.IDeployableServer;
import org.jboss.ide.eclipse.as.core.server.IJBossServerPublishMethod;
import org.jboss.ide.eclipse.as.core.server.IJBossServerPublisher;
-import org.jboss.ide.eclipse.as.core.server.internal.DeployableServerBehavior;
import org.jboss.ide.eclipse.as.core.util.ServerConverter;
public class JBoss7JSTPublisher extends AbstractServerToolsPublisher {
@@ -55,7 +51,7 @@
publishType == IJBossServerPublisher.INCREMENTAL_PUBLISH) {
// Only mark a doDeploy file for the root module, but this must be delayed,
// becuase we don't know how many children modules will get published here (SUCK)
- JBoss7JSTPublisher.markDeployed(method, ds, module, monitor);
+ markDeployed(method, ds, module, monitor);
}
return s;
}
@@ -75,21 +71,13 @@
}
- public static final String MARK_DO_DEPLOY = "org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7JSTPublisher.markUndeploy"; //$NON-NLS-1$
// public static final String MARK_UNDEPLOY = "org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7JSTPublisher.markUndeploy"; //$NON-NLS-1$
- public static void markDeployed(IJBossServerPublishMethod method,IDeployableServer server,
+ private void markDeployed(IJBossServerPublishMethod method,IDeployableServer server,
IModule[] moduleTree, IProgressMonitor monitor ) throws CoreException {
IPath p = PublishUtil.getDeployPath(method, moduleTree, server);
- DeployableServerBehavior beh = ServerConverter.getDeployableServerBehavior(server.getServer());
- Object o = beh.getPublishData(MARK_DO_DEPLOY);
- if(!(o instanceof List<?>)) {
- o = new ArrayList<IPath>();
- beh.setPublishData(MARK_DO_DEPLOY, o);
- }
- List<IPath> list = (List<IPath>)o;
- if( !list.contains(p))
- list.add(p);
+ JBoss7ServerBehavior beh = ServerConverter.getJBoss7ServerBehavior(server.getServer());
+ beh.markDoDeploy(p);
}
// public static void markUndeployed(
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 18:58:13 UTC (rev 31921)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 20:33:05 UTC (rev 31922)
@@ -12,8 +12,8 @@
import java.text.MessageFormat;
import java.util.ArrayList;
+import java.util.Collections;
import java.util.HashMap;
-import java.util.Iterator;
import java.util.List;
import org.eclipse.core.runtime.CoreException;
@@ -44,6 +44,8 @@
public class JBoss7ServerBehavior extends JBossServerBehavior {
+ public static final String MARK_DO_DEPLOY = "org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7JSTPublisher.markUndeploy"; //$NON-NLS-1$
+
private IProcess serverProcess;
private IJBoss7ManagerService service;
private IDebugEventSetListener serverProcessListener;
@@ -120,17 +122,17 @@
if (method == null)
throw new CoreException(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, "Not publishing")); //$NON-NLS-1$
// Handle the dodeploy
- DeployableServerBehavior beh = ServerConverter.getDeployableServerBehavior(getServer());
- Object o = beh.getPublishData(JBoss7JSTPublisher.MARK_DO_DEPLOY);
- if (!(o instanceof List<?>)) {
- super.publishFinish(monitor);
+ createDoDeployMarkers(monitor);
+ super.publishFinish(new SubProgressMonitor(monitor, 1));
+ }
+
+ private void createDoDeployMarkers(IProgressMonitor monitor) throws CoreException {
+ if (!hasMarkedDoDeploy()) {
+ return;
}
-
- List<IPath> paths = (List<IPath>) o;
+ List<IPath> paths = getMarkedDoDeploy();
monitor.beginTask("Completing Publishes", paths.size() + 1); //$NON-NLS-1$
- DeploymentMarkerUtils.addDoDeployMarker(method, getServer(), paths, monitor);
-
- super.publishFinish(new SubProgressMonitor(monitor, 1));
+ createDoDeployMarker(paths, monitor);
}
protected IJBoss7ManagerService getService() throws Exception {
@@ -208,4 +210,35 @@
}
}
}
+
+ public void markDoDeploy(IPath path) {
+ Object o = getPublishData(MARK_DO_DEPLOY);
+ if(!(o instanceof List<?>)) {
+ o = new ArrayList<IPath>();
+ setPublishData(MARK_DO_DEPLOY, o);
+ }
+ List<IPath> list = (List<IPath>)o;
+ if( !list.contains(path)) {
+ list.add(path);
+ }
+
+ }
+
+ public boolean hasMarkedDoDeploy() {
+ return getMarkedDoDeploy().size() > 0;
+ }
+
+ private List<IPath> getMarkedDoDeploy() {
+ DeployableServerBehavior beh = ServerConverter.getDeployableServerBehavior(getServer());
+ Object o = beh.getPublishData(MARK_DO_DEPLOY);
+ if (!(o instanceof List<?>)) {
+ return Collections.emptyList();
+ }
+ return (List<IPath>) o;
+ }
+
+ private void createDoDeployMarker(List<IPath> paths, IProgressMonitor monitor) throws CoreException {
+ DeploymentMarkerUtils.addDoDeployMarker(method, getServer(), paths, monitor);
+ }
+
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerConverter.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerConverter.java 2011-06-08 18:58:13 UTC (rev 31921)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerConverter.java 2011-06-08 20:33:05 UTC (rev 31922)
@@ -23,6 +23,7 @@
import org.jboss.ide.eclipse.as.core.server.IJBossServerRuntime;
import org.jboss.ide.eclipse.as.core.server.internal.DeployableServerBehavior;
import org.jboss.ide.eclipse.as.core.server.internal.JBossServer;
+import org.jboss.ide.eclipse.as.core.server.internal.v7.JBoss7ServerBehavior;
/**
*
@@ -68,6 +69,13 @@
return (DeployableServerBehavior)server.loadAdapter(
DeployableServerBehavior.class, new NullProgressMonitor());
}
+
+ public static JBoss7ServerBehavior getJBoss7ServerBehavior(IServer server) {
+ if( server == null ) return null;
+ return (JBoss7ServerBehavior)server.loadAdapter(
+ JBoss7ServerBehavior.class, new NullProgressMonitor());
+ }
+
/**
* Return all JBossServer instances from the ServerCore
* @return
14 years, 10 months
JBoss Tools SVN: r31921 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-06-08 14:58:13 -0400 (Wed, 08 Jun 2011)
New Revision: 31921
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java
Log:
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java 2011-06-08 18:19:51 UTC (rev 31920)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7JSTPublisher.java 2011-06-08 18:58:13 UTC (rev 31921)
@@ -11,6 +11,7 @@
package org.jboss.ide.eclipse.as.core.server.internal.v7;
import java.util.ArrayList;
+import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
@@ -82,11 +83,11 @@
IPath p = PublishUtil.getDeployPath(method, moduleTree, server);
DeployableServerBehavior beh = ServerConverter.getDeployableServerBehavior(server.getServer());
Object o = beh.getPublishData(MARK_DO_DEPLOY);
- if( o == null || !(o instanceof ArrayList<?>)) {
+ if(!(o instanceof List<?>)) {
o = new ArrayList<IPath>();
beh.setPublishData(MARK_DO_DEPLOY, o);
}
- ArrayList<IPath> list = (ArrayList<IPath>)o;
+ List<IPath> list = (List<IPath>)o;
if( !list.contains(p))
list.add(p);
}
14 years, 10 months
JBoss Tools SVN: r31920 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-06-08 14:19:51 -0400 (Wed, 08 Jun 2011)
New Revision: 31920
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/DeploymentMarkerUtils.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
Log:
[JBIDE-9054] extracted method to add deploy markers for several artifacts to DeploymentMarkerUtils
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/DeploymentMarkerUtils.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/DeploymentMarkerUtils.java 2011-06-08 17:55:51 UTC (rev 31919)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/DeploymentMarkerUtils.java 2011-06-08 18:19:51 UTC (rev 31920)
@@ -14,6 +14,8 @@
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
+import java.util.Iterator;
+import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
@@ -22,6 +24,7 @@
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
+import org.eclipse.core.runtime.SubProgressMonitor;
import org.eclipse.wst.server.core.IModule;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.core.model.IModuleFile;
@@ -86,6 +89,14 @@
return Status.OK_STATUS;
}
+ public static IStatus addDoDeployMarker(IJBossServerPublishMethod method, IServer server,
+ List<IPath> deployPaths, IProgressMonitor monitor) throws CoreException {
+ for(Iterator<IPath> pathsIterator = deployPaths.iterator(); pathsIterator.hasNext(); ) {
+ addDoDeployMarker(method, server, pathsIterator.next(), new SubProgressMonitor(monitor, 1));
+ }
+ return Status.OK_STATUS;
+ }
+
private static IModuleFile createBlankModule() {
return new ModuleFile(getOrCreateBlankFile(), "", new Path("/")); //$NON-NLS-1$ //$NON-NLS-2$
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 17:55:51 UTC (rev 31919)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 18:19:51 UTC (rev 31920)
@@ -122,18 +122,15 @@
// Handle the dodeploy
DeployableServerBehavior beh = ServerConverter.getDeployableServerBehavior(getServer());
Object o = beh.getPublishData(JBoss7JSTPublisher.MARK_DO_DEPLOY);
- if (o != null && (o instanceof List<?>)) {
- List<IPath> l = (List<IPath>) o;
- int size = l.size();
- monitor.beginTask("Completing Publishes", size + 1); //$NON-NLS-1$
- Iterator<IPath> i = l.iterator();
- while (i.hasNext()) {
- DeploymentMarkerUtils.addDoDeployMarker(method, getServer(), i.next(), new SubProgressMonitor(monitor,
- 1));
- }
- super.publishFinish(new SubProgressMonitor(monitor, 1));
- } else
+ if (!(o instanceof List<?>)) {
super.publishFinish(monitor);
+ }
+
+ List<IPath> paths = (List<IPath>) o;
+ monitor.beginTask("Completing Publishes", paths.size() + 1); //$NON-NLS-1$
+ DeploymentMarkerUtils.addDoDeployMarker(method, getServer(), paths, monitor);
+
+ super.publishFinish(new SubProgressMonitor(monitor, 1));
}
protected IJBoss7ManagerService getService() throws Exception {
14 years, 10 months
JBoss Tools SVN: r31919 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-06-08 13:55:51 -0400 (Wed, 08 Jun 2011)
New Revision: 31919
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
Log:
[JBIDE-9054] removed unneeded local var
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 17:52:42 UTC (rev 31918)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 17:55:51 UTC (rev 31919)
@@ -122,12 +122,11 @@
// Handle the dodeploy
DeployableServerBehavior beh = ServerConverter.getDeployableServerBehavior(getServer());
Object o = beh.getPublishData(JBoss7JSTPublisher.MARK_DO_DEPLOY);
- if (o != null && (o instanceof ArrayList<?>)) {
+ if (o != null && (o instanceof List<?>)) {
List<IPath> l = (List<IPath>) o;
int size = l.size();
monitor.beginTask("Completing Publishes", size + 1); //$NON-NLS-1$
Iterator<IPath> i = l.iterator();
- IPath p;
while (i.hasNext()) {
DeploymentMarkerUtils.addDoDeployMarker(method, getServer(), i.next(), new SubProgressMonitor(monitor,
1));
14 years, 10 months
JBoss Tools SVN: r31918 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-06-08 13:52:42 -0400 (Wed, 08 Jun 2011)
New Revision: 31918
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
Log:
[JBIDE-9054] removed unneeded imports
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 17:38:42 UTC (rev 31917)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-08 17:52:42 UTC (rev 31918)
@@ -34,15 +34,12 @@
import org.jboss.ide.eclipse.as.core.Messages;
import org.jboss.ide.eclipse.as.core.extensions.events.IEventCodes;
import org.jboss.ide.eclipse.as.core.extensions.events.ServerLogger;
-import org.jboss.ide.eclipse.as.core.extensions.polling.WebPortPoller;
import org.jboss.ide.eclipse.as.core.publishers.LocalPublishMethod;
import org.jboss.ide.eclipse.as.core.server.IJBoss7ManagerService;
import org.jboss.ide.eclipse.as.core.server.IJBossServerRuntime;
-import org.jboss.ide.eclipse.as.core.server.IServerStatePoller;
import org.jboss.ide.eclipse.as.core.server.internal.DeployableServerBehavior;
import org.jboss.ide.eclipse.as.core.server.internal.JBossServerBehavior;
import org.jboss.ide.eclipse.as.core.server.internal.PollThread;
-import org.jboss.ide.eclipse.as.core.util.PollThreadUtils;
import org.jboss.ide.eclipse.as.core.util.ServerConverter;
public class JBoss7ServerBehavior extends JBossServerBehavior {
14 years, 10 months
JBoss Tools SVN: r31917 - in trunk: build/aggregate/site and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-06-08 13:38:42 -0400 (Wed, 08 Jun 2011)
New Revision: 31917
Modified:
trunk/build/aggregate/site/site.xml
trunk/build/build.xml
trunk/site/site.xml
trunk/ws/site/site.xml
Log:
adding jaxrs to JBT updatesite JBIDE-9097
Modified: trunk/build/aggregate/site/site.xml
===================================================================
--- trunk/build/aggregate/site/site.xml 2011-06-08 17:13:02 UTC (rev 31916)
+++ trunk/build/aggregate/site/site.xml 2011-06-08 17:38:42 UTC (rev 31917)
@@ -67,6 +67,10 @@
<category name="AllTools" />
<category name="SOATools" />
</feature>
+ <feature url="features/org.jboss.tools.ws.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature" version="0.0.0">
+ <category name="AllTools" />
+ <category name="SOATools" />
+ </feature>
<feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0">
<category name="AllTools" />
<category name="WebTools" />
Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml 2011-06-08 17:13:02 UTC (rev 31916)
+++ trunk/build/build.xml 2011-06-08 17:38:42 UTC (rev 31917)
@@ -1654,6 +1654,9 @@
<property name="get.artifact.id.expected.ws/features/org.jboss.tools.ws.feature/target/org.jboss.tools.ws.feature-1.1.0-SNAPSHOT.jar"
value="org.jboss.tools.ws.feature"
/>
+ <property name="get.artifact.id.expected.ws/features/org.jboss.tools.ws.jaxrs.feature/target/org.jboss.tools.ws.jaxrs.feature-1.1.0-SNAPSHOT.jar"
+ value="org.jboss.tools.ws.jaxrs.feature"
+ />
<property name="get.artifact.id.expected.cdi/features/org.jboss.tools.cdi.feature/target/org.jboss.tools.cdi.feature-1.0.0-SNAPSHOT.jar"
value="org.jboss.tools.cdi.feature"
/>
Modified: trunk/site/site.xml
===================================================================
--- trunk/site/site.xml 2011-06-08 17:13:02 UTC (rev 31916)
+++ trunk/site/site.xml 2011-06-08 17:38:42 UTC (rev 31917)
@@ -18,6 +18,7 @@
<feature url="features/org.jboss.tools.struts.feature_0.0.0.jar" id="org.jboss.tools.struts.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0" />
+ <feature url="features/org.jboss.tools.ws.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.smooks.feature_0.0.0.jar" id="org.jboss.tools.smooks.feature" version="0.0.0" />
<feature url="features/org.drools.eclipse.task.feature_0.0.0.jar" id="org.drools.eclipse.task.feature" version="0.0.0" />
Modified: trunk/ws/site/site.xml
===================================================================
--- trunk/ws/site/site.xml 2011-06-08 17:13:02 UTC (rev 31916)
+++ trunk/ws/site/site.xml 2011-06-08 17:38:42 UTC (rev 31917)
@@ -8,5 +8,8 @@
<feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
<category name="JBoss Tools ws Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.tools.ws.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature" version="0.0.0">
+ <category name="JBoss Tools ws Nightly Build Update Site"/>
+ </feature>
</site>
14 years, 10 months
JBoss Tools SVN: r31916 - in trunk: common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver and 10 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-06-08 13:13:02 -0400 (Wed, 08 Jun 2011)
New Revision: 31916
Added:
trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.java
trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFValidationConfigurationBlock.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFSeverityPreferences.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFValidationMessage.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/composition/
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/composition/CompositionComponentValidator.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/messages.properties
Modified:
trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/ca/AbstractELCompletionEngine.java
trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/ELSegmentImpl.java
trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/JavaMemberELSegmentImpl.java
trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/MessagePropertyELSegmentImpl.java
trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.properties
trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties
trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSF2CCAttrsELCompletionEngine.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSFMessageELCompletionEngine.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFELValidationDelegate.java
trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/MessagePropertyRefactoringTest.java
trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/src/org/jboss/tools/jst/jsp/test/TestUtil.java
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/PageContextFactory.java
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/KBValidator.java
trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/internal/preferences/ELSeverityPreferencesMessages.properties
Log:
https://issues.jboss.org/browse/JBIDE-9088
Modified: trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/ca/AbstractELCompletionEngine.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/ca/AbstractELCompletionEngine.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/ca/AbstractELCompletionEngine.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -445,8 +445,7 @@
resolvedVariables = resolveVariables(file, expr, true, returnEqualedVariablesOnly, offset);
Set<TextProposal> proposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
- JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl();
- segment.setToken(expr.getFirstToken());
+ JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl(expr.getFirstToken());
segment.setResolved(false);
resolution.addSegment(segment);
for (V var : resolvedVariables) {
@@ -496,8 +495,7 @@
// JBIDE-512, JBIDE-2541 related changes ===>>>
TypeInfoCollector.MemberInfo bijectedAttribute = null;
- JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl();
- segment.setToken(operand.getFirstToken());
+ JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl(operand.getFirstToken());
segment.setResolved(true);
resolution.addSegment(segment);
@@ -554,8 +552,7 @@
// First segment is found - proceed with next tokens
List<TypeInfoCollector.MemberInfo> members = new ArrayList<TypeInfoCollector.MemberInfo>();
- JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl();
- segment.setToken(expr.getFirstToken());
+ JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl(expr.getFirstToken());
for (V var : resolvedVariables) {
TypeInfoCollector.MemberInfo member = getMemberInfoByVariable(var, returnEqualedVariablesOnly, offset);
if (member != null && !members.contains(member)) {
@@ -571,7 +568,7 @@
while(left != expr) {
left = (ELInvocationExpression)left.getParent();
if (left != expr) { // inside expression
- segment = new JavaMemberELSegmentImpl();
+ segment = new JavaMemberELSegmentImpl(left.getLastToken());
if(left instanceof ELArgumentInvocation) {
String s = "#{" + left.getLeft().toString() + collectionAdditionForCollectionDataModel + "}"; //$NON-NLS-1$ //$NON-NLS-2$
if(getParserFactory()!=null) {
@@ -686,13 +683,14 @@
boolean returnEqualedVariablesOnly, boolean varIsUsed) {
Set<TextProposal> kbProposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
- JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl();
+ JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl(null);
if(expr instanceof ELPropertyInvocation) {
segment.setToken(((ELPropertyInvocation)expr).getName());
}
-// segment.setToken(expr.getLastToken());
if(segment.getToken()!=null) {
resolution.addSegment(segment);
+ } else {
+ segment.setToken(expr.getLastToken());
}
resolution.setProposals(kbProposals);
Modified: trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/ELSegmentImpl.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/ELSegmentImpl.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/ELSegmentImpl.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -28,6 +28,10 @@
protected boolean resolved = false;
protected List<IVariable> variables = new ArrayList<IVariable>();
+ public ELSegmentImpl(LexicalToken token) {
+ this.token = token;
+ }
+
/* (non-Javadoc)
* @see org.jboss.tools.common.el.core.resolver.ELSegment#getResource()
*/
Modified: trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/JavaMemberELSegmentImpl.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/JavaMemberELSegmentImpl.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/JavaMemberELSegmentImpl.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -16,6 +16,7 @@
import java.util.Set;
import org.eclipse.jdt.core.IJavaElement;
+import org.jboss.tools.common.el.core.parser.LexicalToken;
import org.jboss.tools.common.el.core.resolver.TypeInfoCollector.MemberInfo;
/**
@@ -30,6 +31,10 @@
protected boolean hasGetter;
protected Map<String, TypeInfoCollector.MethodInfo> unpairedGettersOrSetters;
+ public JavaMemberELSegmentImpl(LexicalToken token) {
+ super(token);
+ }
+
/* (non-Javadoc)
* @see org.jboss.tools.common.el.core.resolver.JavaMemberElSegment#getJavaElement()
*/
Modified: trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/MessagePropertyELSegmentImpl.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/MessagePropertyELSegmentImpl.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/common/plugins/org.jboss.tools.common.el.core/src/org/jboss/tools/common/el/core/resolver/MessagePropertyELSegmentImpl.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -11,6 +11,7 @@
package org.jboss.tools.common.el.core.resolver;
import org.eclipse.core.resources.IResource;
+import org.jboss.tools.common.el.core.parser.LexicalToken;
import org.jboss.tools.common.text.ITextSourceReference;
/**
@@ -25,6 +26,10 @@
private String baseName=null;
private boolean isBundle = false;
+ public MessagePropertyELSegmentImpl(LexicalToken token) {
+ super(token);
+ }
+
public IResource getMessageBundleResource() {
return messageBundleResource;
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/plugin.properties 2011-06-08 17:13:02 UTC (rev 31916)
@@ -17,4 +17,7 @@
CreateJSF2Composite=Create JSF2 composite...
-JSFELValidationDelegate=JSF EL Validator
\ No newline at end of file
+JSFELValidationDelegate=JSF EL Validator
+
+ComponentCompositionProblemName=JSF Composition Component Problem
+ComponentCompositionValidator=JSF Composition Component Validator
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml 2011-06-08 17:13:02 UTC (rev 31916)
@@ -490,6 +490,23 @@
</delegate>
</extension>
+ <extension id="compositionproblem" name="%ComponentCompositionProblemName" point="org.eclipse.core.resources.markers">
+ <super type="org.jboss.tools.jst.web.kb.kbproblemmarker">
+ </super>
+ <persistent value="true">
+ </persistent>
+ </extension>
+
+ <!--extension
+ id="CompositionComponentValidator"
+ point="org.jboss.tools.jst.web.kb.validator">
+ <validator
+ class="org.jboss.tools.jsf.web.validation.composition.CompositionComponentValidator"
+ name="%ComponentCompositionValidator"
+ id="org.jboss.tools.jsf.CompositionComponentValidator">
+ </validator>
+ </extension-->
+
<extension
point="org.jboss.tools.common.model.modelnatures">
<modelnature
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSF2CCAttrsELCompletionEngine.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSF2CCAttrsELCompletionEngine.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSF2CCAttrsELCompletionEngine.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -192,17 +192,15 @@
resolvedVariables = resolvedVars;
resolution.setLastResolvedToken(left);
- ELSegmentImpl segment = new ELSegmentImpl();
// Combine left's tokens into a single token
LexicalToken token = left.getFirstToken();
String singleText = left.getText();
int start = token.getStart();
int type = token.getType();
int length = singleText.length();
-
+
LexicalToken singleToken = new LexicalToken(start, length, singleText, type);
-
- segment.setToken(singleToken);
+ ELSegmentImpl segment = new ELSegmentImpl(singleToken);
segment.setResolved(true);
resolution.addSegment(segment);
@@ -221,8 +219,7 @@
resolvedVariables = resolveVariablesInternal(file, expr, true, returnEqualedVariablesOnly);
Set<TextProposal> proposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
- ELSegmentImpl segment = new ELSegmentImpl();
- segment.setToken(expr.getFirstToken());
+ ELSegmentImpl segment = new ELSegmentImpl(expr.getFirstToken());
segment.setResolved(false);
resolution.addSegment(segment);
@@ -245,8 +242,7 @@
if (resolution.getLastResolvedToken() == operand) {
// First segment is the last one
Set<TextProposal> proposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
- ELSegmentImpl segment = new ELSegmentImpl();
- segment.setToken(operand.getFirstToken());
+ ELSegmentImpl segment = new ELSegmentImpl(operand.getFirstToken());
segment.setResolved(true);
resolution.addSegment(segment);
@@ -281,8 +277,7 @@
while(left != expr) {
left = (ELInvocationExpression)left.getParent();
if (left != expr) { // inside expression
- ELSegmentImpl segment = new ELSegmentImpl();
- segment = new ELSegmentImpl();
+ ELSegmentImpl segment = new ELSegmentImpl(left.getLastToken());
segment.setResolved(true);
resolution.addSegment(segment);
resolution.setLastResolvedToken(left);
@@ -293,8 +288,7 @@
}
}
} else {
- ELSegmentImpl segment = new ELSegmentImpl();
- segment.setToken(expr.getFirstToken());
+ ELSegmentImpl segment = new ELSegmentImpl(expr.getFirstToken());
resolution.addSegment(segment);
}
@@ -307,8 +301,7 @@
boolean varIsUsed = false;
// First segment is found - proceed with next tokens
List<TypeInfoCollector.MemberInfo> members = new ArrayList<TypeInfoCollector.MemberInfo>();
- JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl();
- segment.setToken(expr.getFirstToken());
+ JavaMemberELSegmentImpl segment = new JavaMemberELSegmentImpl(expr.getFirstToken());
for (IVariable var : resolvedVariables) {
TypeInfoCollector.MemberInfo member = getMemberInfoByVariable(var, returnEqualedVariablesOnly, offset);
if (member != null && !members.contains(member)) {
@@ -324,7 +317,7 @@
while(left != expr) {
left = (ELInvocationExpression)left.getParent();
if (left != expr) { // inside expression
- segment = new JavaMemberELSegmentImpl();
+ segment = new JavaMemberELSegmentImpl(left.getLastToken());
if(left instanceof ELArgumentInvocation) {
String s = "#{" + left.getLeft().toString() + collectionAdditionForCollectionDataModel + "}"; //$NON-NLS-1$ //$NON-NLS-2$
ELParser p = getParserFactory().createParser();
@@ -433,12 +426,10 @@
boolean returnEqualedVariablesOnly) {
Set<TextProposal> kbProposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
- ELSegmentImpl segment = new ELSegmentImpl();
+ ELSegmentImpl segment = new ELSegmentImpl(expr.getFirstToken());
resolution.setProposals(kbProposals);
if(expr instanceof ELPropertyInvocation) {
segment.setToken(((ELPropertyInvocation)expr).getName());
- } else {
- segment.setToken(expr.getFirstToken());
}
if(segment.getToken()!=null) {
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSFMessageELCompletionEngine.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSFMessageELCompletionEngine.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/model/JSFMessageELCompletionEngine.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -191,8 +191,7 @@
if (resolvedVariables != null && !resolvedVariables.isEmpty()) {
resolution.setLastResolvedToken(left);
- ELSegmentImpl segment = new MessagePropertyELSegmentImpl();
- segment.setToken(left.getFirstToken());
+ ELSegmentImpl segment = new MessagePropertyELSegmentImpl(left.getFirstToken());
processMessageBundleSegment(expr, (MessagePropertyELSegmentImpl)segment, resolvedVariables);
segment.setResolved(true);
@@ -214,8 +213,7 @@
resolvedVariables = resolvedVars;
resolution.setLastResolvedToken(left);
- ELSegmentImpl segment = new MessagePropertyELSegmentImpl();
- segment.setToken(left.getFirstToken());
+ ELSegmentImpl segment = new MessagePropertyELSegmentImpl(left.getFirstToken());
processMessageBundleSegment(expr, (MessagePropertyELSegmentImpl)segment, resolvedVariables);
segment.setResolved(true);
@@ -240,8 +238,7 @@
Set<TextProposal> proposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
if (left != null) {
- ELSegmentImpl segment = new MessagePropertyELSegmentImpl();
- segment.setToken(left.getFirstToken());
+ ELSegmentImpl segment = new MessagePropertyELSegmentImpl(left.getFirstToken());
processMessageBundleSegment(expr, (MessagePropertyELSegmentImpl)segment, resolvedVariables);
segment.setResolved(false);
@@ -267,8 +264,7 @@
if (resolution.getLastResolvedToken() == operand) {
// First segment is the last one
Set<TextProposal> proposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
- ELSegmentImpl segment = new ELSegmentImpl();
- segment.setToken(operand.getFirstToken());
+ ELSegmentImpl segment = new ELSegmentImpl(operand.getFirstToken());
segment.setResolved(true);
resolution.addSegment(segment);
@@ -299,8 +295,7 @@
while(left != expr) {
left = (ELInvocationExpression)left.getParent();
if (left != expr) { // inside expression
- ELSegmentImpl segment = new ELSegmentImpl();
- segment = new ELSegmentImpl();
+ ELSegmentImpl segment = new ELSegmentImpl(left.getLastToken());
segment.setResolved(true);
resolution.addSegment(segment);
resolution.setLastResolvedToken(left);
@@ -311,8 +306,7 @@
}
}
} else {
- ELSegmentImpl segment = new ELSegmentImpl();
- segment.setToken(expr.getFirstToken());
+ ELSegmentImpl segment = new ELSegmentImpl(expr.getFirstToken());
resolution.addSegment(segment);
}
@@ -363,18 +357,14 @@
boolean returnEqualedVariablesOnly) {
Set<TextProposal> kbProposals = new TreeSet<TextProposal>(TextProposal.KB_PROPOSAL_ORDER);
- ELSegmentImpl segment = new ELSegmentImpl();
+ ELSegmentImpl segment = new ELSegmentImpl(expr.getFirstToken());
resolution.setProposals(kbProposals);
if(expr instanceof ELPropertyInvocation) {
- segment = new MessagePropertyELSegmentImpl();
- segment.setToken(((ELPropertyInvocation)expr).getName());
+ segment = new MessagePropertyELSegmentImpl(((ELPropertyInvocation)expr).getName());
processMessagePropertySegment(expr, (MessagePropertyELSegmentImpl)segment, members);
} else if (expr instanceof ELArgumentInvocation) {
- segment = new MessagePropertyELSegmentImpl();
- segment.setToken(((ELArgumentInvocation)expr).getArgument().getOpenArgumentToken().getNextToken());
+ segment = new MessagePropertyELSegmentImpl(((ELArgumentInvocation)expr).getArgument().getOpenArgumentToken().getNextToken());
processMessagePropertySegment(expr, (MessagePropertyELSegmentImpl)segment, members);
- } else {
- segment.setToken(expr.getFirstToken());
}
if(segment.getToken()!=null) {
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFELValidationDelegate.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFELValidationDelegate.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFELValidationDelegate.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -10,21 +10,13 @@
******************************************************************************/
package org.jboss.tools.jsf.web.validation;
-import java.util.HashSet;
-import java.util.Set;
-
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.jboss.tools.jsf.JSFModelPlugin;
import org.jboss.tools.jsf.project.JSFNature;
-import org.jboss.tools.jst.web.kb.IKbProject;
-import org.jboss.tools.jst.web.kb.KbProjectFactory;
import org.jboss.tools.jst.web.kb.internal.KbProject;
-import org.jboss.tools.jst.web.kb.internal.validation.SimpleValidatingProjectTree;
-import org.jboss.tools.jst.web.kb.internal.validation.ValidatingProjectSet;
+import org.jboss.tools.jst.web.kb.internal.validation.KBValidator;
import org.jboss.tools.jst.web.kb.validation.IELValidationDelegate;
-import org.jboss.tools.jst.web.kb.validation.IProjectValidationContext;
-import org.jboss.tools.jst.web.kb.validation.IValidatingProjectSet;
import org.jboss.tools.jst.web.kb.validation.IValidatingProjectTree;
/**
@@ -37,15 +29,7 @@
* @see org.jboss.tools.jst.web.kb.validation.IELValidationDelegate#getValidatingProjects(org.eclipse.core.resources.IProject)
*/
public IValidatingProjectTree getValidatingProjects(IProject project) {
- Set<IProject> projects = new HashSet<IProject>();
- projects.add(project);
- IKbProject kbProject = KbProjectFactory.getKbProject(project, false);
- if(kbProject!=null) {
- IProjectValidationContext rootContext = kbProject.getValidationContext();
- IValidatingProjectSet projectSet = new ValidatingProjectSet(project, projects, rootContext);
- return new SimpleValidatingProjectTree(projectSet);
- }
- return new SimpleValidatingProjectTree(project);
+ return KBValidator.createSimpleValidatingProjectTree(project);
}
/* (non-Javadoc)
Added: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFSeverityPreferences.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFSeverityPreferences.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFSeverityPreferences.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -0,0 +1,83 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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.jsf.web.validation;
+
+import java.util.HashSet;
+import java.util.Set;
+
+import org.eclipse.core.resources.IProject;
+import org.jboss.tools.common.preferences.SeverityPreferences;
+import org.jboss.tools.jsf.JSFModelPlugin;
+
+/**
+ * @author Alexey kazakov
+ */
+public class JSFSeverityPreferences extends SeverityPreferences {
+
+ public static final Set<String> SEVERITY_OPTION_NAMES = new HashSet<String>();
+
+ private static JSFSeverityPreferences INSTANCE = new JSFSeverityPreferences();
+
+ // Mark tag which can't be found.
+ public static final String UNKNOWN_COMPOSITION_COMPONENT_NAME = INSTANCE.createSeverityOption("unknownComponent"); //$NON-NLS-1$
+
+ // Mark attribute which can't be found.
+ public static final String UNKNOWN_COMPOSITION_COMPONENT_ATTRIBUTE = INSTANCE.createSeverityOption("unknownAttribute"); //$NON-NLS-1$
+
+ /**
+ * @return the only instance of JSFSeverityPreferences
+ */
+ public static JSFSeverityPreferences getInstance() {
+ return INSTANCE;
+ }
+
+ private JSFSeverityPreferences() {
+ }
+
+ /* (non-Javadoc)
+ * @see org.jboss.tools.common.preferences.SeverityPreferences#createSeverityOption(java.lang.String)
+ */
+ @Override
+ protected String createSeverityOption(String shortName) {
+ String name = getPluginId() + ".composition.validator.problem." + shortName; //$NON-NLS-1$
+ SEVERITY_OPTION_NAMES.add(name);
+ return name;
+ }
+
+ /* (non-Javadoc)
+ * @see org.jboss.tools.common.preferences.SeverityPreferences#getPluginId()
+ */
+ @Override
+ protected String getPluginId() {
+ return JSFModelPlugin.PLUGIN_ID;
+ }
+
+ /* (non-Javadoc)
+ * @see org.jboss.tools.common.preferences.SeverityPreferences#getSeverityOptionNames()
+ */
+ @Override
+ protected Set<String> getSeverityOptionNames() {
+ return SEVERITY_OPTION_NAMES;
+ }
+
+ public static boolean isValidationEnabled(IProject project) {
+ return INSTANCE.isEnabled(project);
+ }
+
+ public static int getMaxNumberOfProblemMarkersPerFile(IProject project) {
+ return INSTANCE.getMaxNumberOfProblemMarkersPerResource(project);
+ }
+
+ public static boolean shouldValidateEL(IProject project) {
+ return !(SeverityPreferences.IGNORE.equals(INSTANCE.getProjectPreference(project, UNKNOWN_COMPOSITION_COMPONENT_NAME)) &&
+ SeverityPreferences.IGNORE.equals(INSTANCE.getProjectPreference(project, UNKNOWN_COMPOSITION_COMPONENT_ATTRIBUTE)));
+ }
+}
\ No newline at end of file
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFSeverityPreferences.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFValidationMessage.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFValidationMessage.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFValidationMessage.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -0,0 +1,19 @@
+package org.jboss.tools.jsf.web.validation;
+
+import org.eclipse.osgi.util.NLS;
+
+public class JSFValidationMessage {
+
+ private static final String BUNDLE_NAME = "org.jboss.tools.jsf.web.validation.messages"; //$NON-NLS-1$
+
+ public static String UNKNOWN_COMPOSITION_COMPONENT_NAME;
+ public static String UNKNOWN_COMPOSITION_COMPONENT_ATTRIBUTE;
+
+ public static String SEARCHING_RESOURCES;
+ public static String VALIDATING_RESOURCE;
+ public static String VALIDATING_PROJECT;
+
+ static {
+ NLS.initializeMessages(BUNDLE_NAME, JSFValidationMessage.class);
+ }
+}
\ No newline at end of file
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/JSFValidationMessage.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/composition/CompositionComponentValidator.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/composition/CompositionComponentValidator.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/composition/CompositionComponentValidator.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -0,0 +1,221 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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.jsf.web.validation.composition;
+
+import java.util.Set;
+
+import org.eclipse.core.resources.IContainer;
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Path;
+import org.eclipse.jst.j2ee.project.facet.IJ2EEFacetConstants;
+import org.eclipse.wst.common.componentcore.ComponentCore;
+import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
+import org.eclipse.wst.common.componentcore.resources.IVirtualFolder;
+import org.eclipse.wst.common.project.facet.core.IFacetedProject;
+import org.eclipse.wst.common.project.facet.core.ProjectFacetsManager;
+import org.eclipse.wst.validation.internal.core.ValidationException;
+import org.eclipse.wst.validation.internal.provisional.core.IReporter;
+import org.jboss.tools.common.el.core.resolver.ELContext;
+import org.jboss.tools.jsf.JSFModelPlugin;
+import org.jboss.tools.jsf.project.JSFNature;
+import org.jboss.tools.jsf.web.validation.JSFSeverityPreferences;
+import org.jboss.tools.jsf.web.validation.JSFValidationMessage;
+import org.jboss.tools.jst.web.kb.IPageContext;
+import org.jboss.tools.jst.web.kb.PageContextFactory;
+import org.jboss.tools.jst.web.kb.internal.KbBuilder;
+import org.jboss.tools.jst.web.kb.internal.validation.ContextValidationHelper;
+import org.jboss.tools.jst.web.kb.internal.validation.KBValidator;
+import org.jboss.tools.jst.web.kb.internal.validation.ValidatorManager;
+import org.jboss.tools.jst.web.kb.validation.IProjectValidationContext;
+import org.jboss.tools.jst.web.kb.validation.IValidatingProjectTree;
+
+/**
+ * JSF 2 composition component validator.
+ *
+ * @author Alexey Kazakov
+ */
+public class CompositionComponentValidator extends KBValidator {
+
+ public static final String ID = "org.jboss.tools.jsf.CompositionComponentValidator"; //$NON-NLS-1$
+ public static final String PROBLEM_TYPE = "org.jboss.tools.jsf.compositionproblem"; //$NON-NLS-1$
+
+ private IProject currentProject;
+ private IContainer webRootFolder;
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.internal.validation.ValidationErrorManager#init(org.eclipse.core.resources.IProject, org.jboss.tools.jst.web.kb.internal.validation.ContextValidationHelper, org.jboss.tools.jst.web.kb.validation.IProjectValidationContext, org.eclipse.wst.validation.internal.provisional.core.IValidator, org.eclipse.wst.validation.internal.provisional.core.IReporter)
+ */
+ @Override
+ public void init(IProject project, ContextValidationHelper validationHelper, IProjectValidationContext context, org.eclipse.wst.validation.internal.provisional.core.IValidator manager, IReporter reporter) {
+ super.init(project, validationHelper, context, manager, reporter);
+ currentProject = null;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.validation.IValidator#validate(java.util.Set, org.eclipse.core.resources.IProject, org.jboss.tools.jst.web.kb.internal.validation.ContextValidationHelper, org.jboss.tools.jst.web.kb.validation.IProjectValidationContext, org.jboss.tools.jst.web.kb.internal.validation.ValidatorManager, org.eclipse.wst.validation.internal.provisional.core.IReporter)
+ */
+ public IStatus validate(Set<IFile> changedFiles, IProject project, ContextValidationHelper validationHelper, IProjectValidationContext validationContext, ValidatorManager manager, IReporter reporter) throws ValidationException {
+ displaySubtask(JSFValidationMessage.SEARCHING_RESOURCES);
+ init(project, validationHelper, validationContext, manager, reporter);
+ webRootFolder = null;
+
+ return OK_STATUS;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.validation.IValidator#validateAll(org.eclipse.core.resources.IProject, org.jboss.tools.jst.web.kb.internal.validation.ContextValidationHelper, org.jboss.tools.jst.web.kb.validation.IProjectValidationContext, org.jboss.tools.jst.web.kb.internal.validation.ValidatorManager, org.eclipse.wst.validation.internal.provisional.core.IReporter)
+ */
+ public IStatus validateAll(IProject project, ContextValidationHelper validationHelper, IProjectValidationContext validationContext, ValidatorManager manager, IReporter reporter) throws ValidationException {
+ displaySubtask(JSFValidationMessage.SEARCHING_RESOURCES);
+ init(project, validationHelper, validationContext, manager, reporter);
+ webRootFolder = null;
+
+ return OK_STATUS;
+ }
+
+ private void validateResource(IFile file) {
+ if(shouldFileBeValidated(file)) {
+ coreHelper.getValidationContextManager().addValidatedProject(this, file.getProject());
+ removeAllMessagesFromResource(file);
+ ELContext context = PageContextFactory.createPageContext(file);
+ if(context!=null && context instanceof IPageContext) {
+ IPageContext pageContext = (IPageContext)context;
+ }
+ }
+ }
+
+ private boolean enabled = true;
+
+ private boolean shouldFileBeValidated(IFile file) {
+ if(!file.isAccessible()) {
+ return false;
+ }
+ IProject project = file.getProject();
+ if(!file.isSynchronized(IResource.DEPTH_ZERO)) {
+ // The resource is out of sync with the file system
+ // Just ignore this resource.
+ return false;
+ }
+ if(!project.equals(currentProject)) {
+ currentProject = project;
+ enabled = isEnabled(project);
+ if(!enabled) {
+ return false;
+ }
+ if(webRootFolder!=null && !project.equals(webRootFolder.getProject())) {
+ webRootFolder = null;
+ }
+ if(webRootFolder==null) {
+ IFacetedProject facetedProject = null;
+ try {
+ facetedProject = ProjectFacetsManager.create(project);
+ } catch (CoreException e) {
+ JSFModelPlugin.getDefault().logError(e);
+ }
+ if(facetedProject!=null && facetedProject.getProjectFacetVersion(IJ2EEFacetConstants.DYNAMIC_WEB_FACET)!=null) {
+ IVirtualComponent component = ComponentCore.createComponent(project);
+ if(component!=null) {
+ IVirtualFolder webRootVirtFolder = component.getRootFolder().getFolder(new Path("/")); //$NON-NLS-1$
+ webRootFolder = webRootVirtFolder.getUnderlyingFolder();
+ }
+ }
+ }
+ currentProject = project;
+ }
+
+ // Validate files from Web-Content only (in case of WTP project)
+ return enabled && webRootFolder!=null && webRootFolder.getLocation().isPrefixOf(file.getLocation()) && PageContextFactory.isPage(file);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.validation.IValidator#getId()
+ */
+ public String getId() {
+ return ID;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.validation.IValidator#getBuilderId()
+ */
+ public String getBuilderId() {
+ return KbBuilder.BUILDER_ID;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.validation.IValidator#getValidatingProjects(org.eclipse.core.resources.IProject)
+ */
+ public IValidatingProjectTree getValidatingProjects(IProject project) {
+ return createSimpleValidatingProjectTree(project);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.validation.IValidator#shouldValidate(org.eclipse.core.resources.IProject)
+ */
+ public boolean shouldValidate(IProject project) {
+ try {
+ return project != null
+ && project.isAccessible()
+ && project.hasNature(JSFNature.NATURE_ID)
+ && validateBuilderOrder(project)
+ && isEnabled(project);
+ } catch (CoreException e) {
+ JSFModelPlugin.getDefault().logError(e);
+ }
+ return false;
+ }
+
+ private boolean validateBuilderOrder(IProject project) throws CoreException {
+ return ValidatorManager.validateBuilderOrder(project, getBuilderId(), getId(), JSFSeverityPreferences.getInstance());
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.validation.IValidator#isEnabled(org.eclipse.core.resources.IProject)
+ */
+ public boolean isEnabled(IProject project) {
+ return JSFSeverityPreferences.isValidationEnabled(project);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.internal.validation.ValidationErrorManager#getPreference(org.eclipse.core.resources.IProject, java.lang.String)
+ */
+ protected String getPreference(IProject project, String preferenceKey) {
+ return JSFSeverityPreferences.getInstance().getProjectPreference(project, preferenceKey);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.internal.validation.ValidationErrorManager#getMaxNumberOfMarkersPerFile(org.eclipse.core.resources.IProject)
+ */
+ public int getMaxNumberOfMarkersPerFile(IProject project) {
+ return JSFSeverityPreferences.getMaxNumberOfProblemMarkersPerFile(project);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.jboss.tools.jst.web.kb.internal.validation.ValidationErrorManager#getMarkerType()
+ */
+ public String getMarkerType() {
+ return PROBLEM_TYPE;
+ }
+}
\ No newline at end of file
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/composition/CompositionComponentValidator.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/messages.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/messages.properties (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/messages.properties 2011-06-08 17:13:02 UTC (rev 31916)
@@ -0,0 +1,8 @@
+#
+UNKNOWN_COMPOSITION_COMPONENT_NAME=Unknown composition component "{0}"
+UNKNOWN_COMPOSITION_COMPONENT_ATTRIBUTE=Unknown attribute "{0}" of composition component "{1}"
+
+#Messages for Progress Monitor
+SEARCHING_RESOURCES=project "{0}"; searching resources for validation (JSF Validator)
+VALIDATING_RESOURCE=project "{0}"; resource "{1}" (JSF Validator)
+VALIDATING_PROJECT=project "{0}" (JSF Validator)
\ No newline at end of file
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/messages.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -0,0 +1,36 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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.jsf.ui.preferences;
+
+import org.eclipse.osgi.util.NLS;
+
+/**
+ * @author Alexey Kazakov
+ */
+public class JSFSeverityPreferencesMessages extends NLS {
+
+ private static final String BUNDLE_NAME = "org.jboss.tools.jsf.ui.preferences.JSFSeverityPreferencesMessages"; //$NON-NLS-1$
+
+ public static String JSF_VALIDATION_CONFIGURATION_BLOCK_JSF_VALIDATION_CONFIGURATION_BLOCK;
+ public static String JSF_VALIDATION_PREFERENCE_PAGE_JSF_VALIDATOR;
+
+ //Validation Preference page
+ public static String JSFValidationConfigurationBlock_common_description;
+
+ //Expression Language
+ public static String JSFValidationConfigurationBlock_section_composition_components;
+ public static String JSFValidationConfigurationBlock_pb_unknownComponent_label;
+ public static String JSFValidationConfigurationBlock_pb_unknownAttribute_label;
+
+ static {
+ NLS.initializeMessages(BUNDLE_NAME, JSFSeverityPreferencesMessages.class);
+ }
+}
\ No newline at end of file
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.properties 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFSeverityPreferencesMessages.properties 2011-06-08 17:13:02 UTC (rev 31916)
@@ -10,16 +10,12 @@
##################################################################################
#Preferences Page
-JSFValidatorConfigurationBlock_common_description=Select the severity level for the following optional JSF Validator problems:
+JSFValidationConfigurationBlock_common_description=Select the severity level for the following optional JSF validation problems:
##Expression Language
-JSFValidatorConfigurationBlock_section_el=Expression language
-JSFValidatorConfigurationBlock_pb_elSyntaxError_label=EL Syntax Error
-JSFValidatorConfigurationBlock_pb_unknownElVariableName_label=Variable cannot be resolved:
-JSFValidatorConfigurationBlock_pb_checkVars_label=Recognize "var" attributes
-JSFValidatorConfigurationBlock_pb_revalidateUnresolvedEl_label=Revalidate unresolved ELs automatically.
-JSFValidatorConfigurationBlock_pb_unknownElVariablePropertyName_label=Property cannot be resolved:
-JSFValidatorConfigurationBlock_pb_unpairedGetterOrSetter_label=Unpaired Getter/Setter:
+JSFValidationConfigurationBlock_section_composition_components=Composition Components
+JSFValidationConfigurationBlock_pb_unknownComponent_label=Unknown composition component:
+JSFValidationConfigurationBlock_pb_unknownAttribute_label=Unknown composition component attribute:
-JSF_VALIDATOR_CONFIGURATION_BLOCK_JSF_VALIDATOR_CONFIGURATION_BLOCK=JSFValidatorConfigurationBlock
-JSF_VALIDATOR_PREFERENCE_PAGE_JSF_VALIDATOR=JSF Validator
\ No newline at end of file
+JSF_VALIDATION_CONFIGURATION_BLOCK_JSF_VALIDATION_CONFIGURATION_BLOCK=JSFValidationConfigurationBlock
+JSF_VALIDATION_PREFERENCE_PAGE_JSF_VALIDATOR=JSF Validator
\ No newline at end of file
Added: trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFValidationConfigurationBlock.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFValidationConfigurationBlock.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFValidationConfigurationBlock.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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.jsf.ui.preferences;
+
+import java.util.ArrayList;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.jdt.internal.ui.wizards.IStatusChangeListener;
+import org.eclipse.jface.dialogs.IDialogSettings;
+import org.eclipse.ui.preferences.IWorkbenchPreferenceContainer;
+import org.jboss.tools.common.preferences.SeverityPreferences;
+import org.jboss.tools.common.ui.preferences.SeverityConfigurationBlock;
+import org.jboss.tools.jsf.JSFModelPlugin;
+import org.jboss.tools.jsf.web.validation.JSFSeverityPreferences;
+
+/**
+ * @author Alexey Kazakov
+ */
+public class JSFValidationConfigurationBlock extends SeverityConfigurationBlock {
+
+ private static final String SETTINGS_SECTION_NAME = JSFSeverityPreferencesMessages.JSF_VALIDATION_CONFIGURATION_BLOCK_JSF_VALIDATION_CONFIGURATION_BLOCK;
+
+ private static SectionDescription SECTION_COMPOSITION_COMPONENTS = new SectionDescription(
+ JSFSeverityPreferencesMessages.JSFValidationConfigurationBlock_section_composition_components,
+ new String[][]{
+ {JSFSeverityPreferences.UNKNOWN_COMPOSITION_COMPONENT_NAME, JSFSeverityPreferencesMessages.JSFValidationConfigurationBlock_pb_unknownComponent_label},
+ {JSFSeverityPreferences.UNKNOWN_COMPOSITION_COMPONENT_ATTRIBUTE, JSFSeverityPreferencesMessages.JSFValidationConfigurationBlock_pb_unknownAttribute_label},
+ },
+ JSFModelPlugin.PLUGIN_ID
+ );
+
+ private static SectionDescription[] ALL_SECTIONS = new SectionDescription[] {
+ SECTION_COMPOSITION_COMPONENTS
+ };
+
+ private static Key[] getKeys() {
+ ArrayList<Key> keys = new ArrayList<Key>();
+ for (int i = 0; i < ALL_SECTIONS.length; i++) {
+ for (int j = 0; j < ALL_SECTIONS[i].options.length; j++) {
+ keys.add(ALL_SECTIONS[i].options[j].key);
+ }
+ }
+ keys.add(MAX_NUMBER_OF_PROBLEMS_KEY);
+ keys.add(WRONG_BUILDER_ORDER_KEY);
+ return keys.toArray(new Key[0]);
+ }
+
+ private static final Key MAX_NUMBER_OF_PROBLEMS_KEY = getKey(JSFModelPlugin.PLUGIN_ID, SeverityPreferences.MAX_NUMBER_OF_MARKERS_PREFERENCE_NAME);
+
+ @Override
+ protected Key getMaxNumberOfProblemsKey() {
+ return MAX_NUMBER_OF_PROBLEMS_KEY;
+ }
+
+ private static final Key WRONG_BUILDER_ORDER_KEY = getKey(JSFModelPlugin.PLUGIN_ID, SeverityPreferences.WRONG_BUILDER_ORDER_PREFERENCE_NAME);
+
+ protected Key getWrongBuilderOrderKey() {
+ return WRONG_BUILDER_ORDER_KEY;
+ }
+
+ public JSFValidationConfigurationBlock(IStatusChangeListener context,
+ IProject project, IWorkbenchPreferenceContainer container) {
+ super(context, project, getKeys(), container);
+ }
+
+ @Override
+ protected SectionDescription[] getAllSections() {
+ return ALL_SECTIONS;
+ }
+
+ @Override
+ protected String getCommonDescription() {
+ return JSFSeverityPreferencesMessages.JSFValidationConfigurationBlock_common_description;
+ }
+
+ @Override
+ protected IDialogSettings getDialogSettings() {
+ return JSFModelPlugin.getDefault().getDialogSettings().getSection(SETTINGS_SECTION_NAME);
+ }
+ }
\ No newline at end of file
Property changes on: trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/preferences/JSFValidationConfigurationBlock.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/MessagePropertyRefactoringTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/MessagePropertyRefactoringTest.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/MessagePropertyRefactoringTest.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -48,8 +48,7 @@
structure.addTextChange(change);
list.add(structure);
- MessagePropertyELSegmentImpl segment = new MessagePropertyELSegmentImpl();
- segment.setToken(new LexicalToken(position,13,"hello_message",-1000));
+ MessagePropertyELSegmentImpl segment = new MessagePropertyELSegmentImpl(new LexicalToken(position,13,"hello_message",-1000));
segment.setMessageBundleResource(propertyFile);
segment.setBaseName("demo.Messages");
segment.setMessagePropertySourceReference(0,10);
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/src/org/jboss/tools/jst/jsp/test/TestUtil.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/src/org/jboss/tools/jst/jsp/test/TestUtil.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/src/org/jboss/tools/jst/jsp/test/TestUtil.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -7,6 +7,15 @@
public class TestUtil {
+ /**
+ * Wait for validation to be completed.
+ * Usage:
+ * ValidatorManager.setStatus("Any status but ValidatorManager.SLEEPING");
+ * ... // do some work here which will make Eclipse build the project
+ * TestUtil.waitForValidation(project);
+ * @param project
+ * @throws CoreException
+ */
public static void waitForValidation(IProject project) throws CoreException{
JobUtils.waitForIdle();
for (int i = 0; i < 50; i++) {
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/PageContextFactory.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/PageContextFactory.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/PageContextFactory.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -125,6 +125,18 @@
return (fInstance = new PageContextFactory());
}
+ /**
+ * Returns true if the file is XHTML or JSP page.
+ *
+ * @param file
+ * @return
+ */
+ public static boolean isPage(IFile file) {
+ IContentType type = IDE.getContentType(file);
+ String typeId = (type == null ? null : type.getId());
+ return JSP_PAGE_CONTEXT_TYPE.equals(typeId) || FACELETS_PAGE_CONTEXT_TYPE.equals(typeId);
+ }
+
private PageContextFactory() {
// IWorkspace workspace = ResourcesPlugin.getWorkspace();
// if (workspace != null) workspace.addResourceChangeListener(this);
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/KBValidator.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/KBValidator.java 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/KBValidator.java 2011-06-08 17:13:02 UTC (rev 31916)
@@ -10,8 +10,16 @@
******************************************************************************/
package org.jboss.tools.jst.web.kb.internal.validation;
+import java.util.HashSet;
+import java.util.Set;
+
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
+import org.jboss.tools.jst.web.kb.IKbProject;
+import org.jboss.tools.jst.web.kb.KbProjectFactory;
+import org.jboss.tools.jst.web.kb.validation.IProjectValidationContext;
+import org.jboss.tools.jst.web.kb.validation.IValidatingProjectSet;
+import org.jboss.tools.jst.web.kb.validation.IValidatingProjectTree;
import org.jboss.tools.jst.web.kb.validation.IValidator;
/**
@@ -23,4 +31,22 @@
IProject pr = resource.getProject();
return coreHelper==null || !coreHelper.getValidationContextManager().projectHasBeenValidated(this, pr);
}
+
+ /**
+ * Creates a simple validating project tree for the project.
+ *
+ * @param project
+ * @return
+ */
+ public static IValidatingProjectTree createSimpleValidatingProjectTree(IProject project) {
+ Set<IProject> projects = new HashSet<IProject>();
+ projects.add(project);
+ IKbProject kbProject = KbProjectFactory.getKbProject(project, false);
+ if(kbProject!=null) {
+ IProjectValidationContext rootContext = kbProject.getValidationContext();
+ IValidatingProjectSet projectSet = new ValidatingProjectSet(project, projects, rootContext);
+ return new SimpleValidatingProjectTree(projectSet);
+ }
+ return new SimpleValidatingProjectTree(project);
+ }
}
\ No newline at end of file
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/internal/preferences/ELSeverityPreferencesMessages.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/internal/preferences/ELSeverityPreferencesMessages.properties 2011-06-08 15:23:54 UTC (rev 31915)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.ui/src/org/jboss/tools/jst/web/ui/internal/preferences/ELSeverityPreferencesMessages.properties 2011-06-08 17:13:02 UTC (rev 31916)
@@ -14,7 +14,7 @@
##Expression Language
JSFValidatorConfigurationBlock_section_el=Expression language
-JSFValidatorConfigurationBlock_pb_elSyntaxError_label=EL Syntax Error
+JSFValidatorConfigurationBlock_pb_elSyntaxError_label=EL Syntax Error:
JSFValidatorConfigurationBlock_pb_unknownElVariableName_label=Variable cannot be resolved:
JSFValidatorConfigurationBlock_pb_checkVars_label=Recognize "var" attributes
JSFValidatorConfigurationBlock_pb_revalidateUnresolvedEl_label=Revalidate unresolved ELs automatically.
14 years, 10 months
JBoss Tools SVN: r31915 - in trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test: ca and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2011-06-08 11:23:54 -0400 (Wed, 08 Jun 2011)
New Revision: 31915
Added:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide9092Test.java
Modified:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide1791Test.java
Log:
JBIDE-9092
Wrong attribute name proposals appear in CA Window for CSS styles inside <style></style> tag
JUnit Test is added
JBIDE-7100
Wrong proposals appear in CA Window for CSS styles inside <style></style> tag
Issue is fixed in UpStream WTP 3.3. JUnit test that covers the issue is enabled
Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java 2011-06-08 15:03:55 UTC (rev 31914)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/JstJspAllTests.java 2011-06-08 15:23:54 UTC (rev 31915)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007-2010 Red Hat, Inc.
+ * Copyright (c) 2007-2011 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,
@@ -13,7 +13,9 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.jboss.tools.jst.jsp.test.ca.Jbide1791Test;
import org.jboss.tools.jst.jsp.test.ca.Jbide6061Test;
+import org.jboss.tools.jst.jsp.test.ca.Jbide9092Test;
import org.jboss.tools.jst.jsp.test.ca.JstJspJbide1585Test;
import org.jboss.tools.jst.jsp.test.ca.JstJspJbide1641Test;
import org.jboss.tools.jst.jsp.test.selbar.SelectionBarTest;
@@ -27,13 +29,8 @@
suite.addTestSuite(JstJspJbide1585Test.class);
suite.addTestSuite(JstJspJbide1641Test.class);
- /*
- * TODO: Uncomment the following test case after https://jira.jboss.org/browse/JBIDE-7100 issue
- * is resolved due to enable the test to run
- *
suite.addTestSuite(Jbide1791Test.class);
- */
-
+ suite.addTestSuite(Jbide9092Test.class);
suite.addTestSuite(Jbide6061Test.class);
suite.addTestSuite(JspPreferencesPageTest.class);
Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide1791Test.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide1791Test.java 2011-06-08 15:03:55 UTC (rev 31914)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide1791Test.java 2011-06-08 15:23:54 UTC (rev 31915)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007-2008 Red Hat, Inc.
+ * Copyright (c) 2007-2011 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,
@@ -20,7 +20,8 @@
import org.jboss.tools.test.util.TestProjectProvider;
/**
- * Test cast testing http://jira.jboss.com/jira/browse/JBIDE-1791 issue.
+ * Test case testing http://jira.jboss.com/jira/browse/JBIDE-1791 issue.
+ * The same test case is suitable for http://jira.jboss.com/jira/browse/JBIDE-7100 issue
*
* @author Eugene Stherbin
*
@@ -62,6 +63,8 @@
} catch (BadLocationException e) {
fail(e.getMessage());
}
+ assertNotNull("Cannot find a text region to test", reg);
+
final ICompletionProposal[] rst = checkProposals(PAGE_NAME,reg.getOffset(), proposals, false);
checkResult(rst,proposals);
Added: trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide9092Test.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide9092Test.java (rev 0)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide9092Test.java 2011-06-08 15:23:54 UTC (rev 31915)
@@ -0,0 +1,104 @@
+/*******************************************************************************
+ * Copyright (c) 2011 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
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.jst.jsp.test.ca;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+import org.eclipse.jface.text.BadLocationException;
+import org.eclipse.jface.text.FindReplaceDocumentAdapter;
+import org.eclipse.jface.text.IRegion;
+import org.eclipse.jface.text.contentassist.ICompletionProposal;
+import org.jboss.tools.test.util.TestProjectProvider;
+
+/**
+* Test case testing http://jira.jboss.com/jira/browse/JBIDE-9092 issue.
+*
+* @author Victor Rubezhny
+*
+*/
+public class Jbide9092Test extends ContentAssistantTestCase {
+ private static final String PROJECT_NAME = "JsfJbide1791Test"; //$NON-NLS-1$
+ private static final String PAGE_NAME = "/WebContent/pages/jbide1791.xhtml"; //$NON-NLS-1$
+ private TestProjectProvider provider = null;
+
+ public static Test suite() {
+ return new TestSuite(Jbide9092Test.class);
+ }
+
+ public void setUp() throws Exception {
+ provider = new TestProjectProvider("org.jboss.tools.jst.jsp.test", null, PROJECT_NAME,false); //$NON-NLS-1$
+ project = provider.getProject();
+ }
+
+ protected void tearDown() throws Exception {
+ if(provider != null) {
+ provider.dispose();
+ }
+ }
+
+ public void testJbide9092(){
+
+ // Do not use dir-attribute here because there is dir-tag proposal (the correct proposal with the same name)
+ final String[] wrongProposals = new String[]{
+ "jsfc", //$NON-NLS-1$
+ "lang", //$NON-NLS-1$
+ "media", //$NON-NLS-1$
+ "title", //$NON-NLS-1$
+ "type", //$NON-NLS-1$
+ };
+ openEditor(PAGE_NAME);
+ try {
+ IRegion reg=null;
+ try {
+ reg = new FindReplaceDocumentAdapter(this.document).find(0, "<style", true, false, false, false); //$NON-NLS-1$
+ } catch (BadLocationException e) {
+ fail(e.getMessage());
+ }
+ assertNotNull("Cannot find a text region to test", reg);
+ try {
+ reg = new FindReplaceDocumentAdapter(this.document).find(reg.getOffset(), ">", true, false, false, false); //$NON-NLS-1$
+ } catch (BadLocationException e) {
+ fail(e.getMessage());
+ }
+ assertNotNull("Cannot find a text region to test", reg);
+
+ final ICompletionProposal[] rst = checkProposals(PAGE_NAME,reg.getOffset() + reg.getLength(), new String[] {}, false);
+
+ checkNotInResult(rst,wrongProposals);
+ } finally {
+ closeEditor();
+ }
+ }
+ /**
+ * @param rst
+ * @param proposals
+ */
+ private void checkNotInResult(ICompletionProposal[] rst, String[] proposals) {
+ for ( int i = 0 ; i < proposals.length ; i ++ ){
+ assertTrue("Proposal '" + proposals[i] + "' should NOT be in proposals list",isNotInResultList(rst,proposals[i])); //$NON-NLS-1$
+ }
+
+ }
+ /**
+ * @param rst
+ * @param string
+ * @return
+ */
+ private boolean isNotInResultList(ICompletionProposal[] rst, String string) {
+ for(ICompletionProposal cp:rst){
+ if(cp.getDisplayString().equals(string)){
+ return false;
+ }
+ }
+ return true;
+ }
+}
Property changes on: trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/Jbide9092Test.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years, 10 months
JBoss Tools SVN: r31914 - trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2011-06-08 11:03:55 -0400 (Wed, 08 Jun 2011)
New Revision: 31914
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/FaceletsTagCompletionProposalComputer.java
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java
Log:
JBIDE-9092
Wrong attribute name proposals appear in CA Window for CSS styles inside <style></style> tag
issue is fixed
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/FaceletsTagCompletionProposalComputer.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/FaceletsTagCompletionProposalComputer.java 2011-06-08 14:57:10 UTC (rev 31913)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/FaceletsTagCompletionProposalComputer.java 2011-06-08 15:03:55 UTC (rev 31914)
@@ -1,12 +1,12 @@
/*******************************************************************************
- * Copyright (c) 2010 Exadel, Inc. and Red Hat, Inc.
+ * Copyright (c) 2010-2011 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:
- * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ * Red Hat, Inc. - initial API and implementation
******************************************************************************/
package org.jboss.tools.jst.jsp.contentassist.computers;
@@ -172,6 +172,9 @@
protected void addAttributeNameProposals(
ContentAssistRequest contentAssistRequest,
CompletionProposalInvocationContext context) {
+ if (!(contentAssistRequest.getNode() instanceof Element))
+ return;
+
super.addAttributeNameProposals(contentAssistRequest, context);
if (isExistingAttribute(JSFC_ATTRIBUTE_NAME)) {
this.replaceJsfcTags = true;
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java 2011-06-08 14:57:10 UTC (rev 31913)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java 2011-06-08 15:03:55 UTC (rev 31914)
@@ -1,12 +1,12 @@
/*******************************************************************************
- * Copyright (c) 2010 Exadel, Inc. and Red Hat, Inc.
+ * Copyright (c) 2010-2011 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:
- * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ * Red Hat, Inc. - initial API and implementation
******************************************************************************/
package org.jboss.tools.jst.jsp.contentassist.computers;
@@ -116,6 +116,9 @@
@Override
protected void addAttributeNameProposals(ContentAssistRequest contentAssistRequest,
CompletionProposalInvocationContext context) {
+ if (!(contentAssistRequest.getNode() instanceof Element))
+ return;
+
String matchString = contentAssistRequest.getMatchString();
String query = matchString;
if (query == null)
14 years, 10 months
JBoss Tools SVN: r31913 - in branches/jbosstools-3.2.x: as/features/org.jboss.ide.eclipse.as.feature and 98 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-06-08 10:57:10 -0400 (Wed, 08 Jun 2011)
New Revision: 31913
Modified:
branches/jbosstools-3.2.x/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties
branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.feature/feature.properties
branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml
branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java
branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java
branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java
branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java
branches/jbosstools-3.2.x/birt/features/org.jboss.tools.birt.feature/feature.properties
branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java
branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java
branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/feature.properties
branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties
branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.model/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.ui/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.validator/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties
branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties
branches/jbosstools-3.2.x/build/target-platform/jbds.target
branches/jbosstools-3.2.x/build/target-platform/multiple.target
branches/jbosstools-3.2.x/build/target-platform/unified.target
branches/jbosstools-3.2.x/cdi/features/org.jboss.tools.cdi.feature/feature.xml
branches/jbosstools-3.2.x/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.feature/feature.xml
branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml
branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.core.feature/feature.properties
branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.feature/feature.properties
branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.text.ext.feature/feature.properties
branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.ui.feature/feature.properties
branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.verification.feature/feature.properties
branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java
branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java
branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java
branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties
branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties
branches/jbosstools-3.2.x/esb/features/org.jboss.tools.esb.feature/feature.properties
branches/jbosstools-3.2.x/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties
branches/jbosstools-3.2.x/examples/features/org.jboss.tools.project.examples.feature/feature.properties
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java
branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java
branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties
branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties
branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties
branches/jbosstools-3.2.x/gwt/features/org.jboss.tools.gwt.feature/feature.properties
branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties
branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties
branches/jbosstools-3.2.x/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties
branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.feature/feature.xml
branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml
branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.jsf.feature/feature.properties
branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.richfaces.feature/feature.properties
branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.feature/feature.properties
branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/feature.properties
branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties
branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java
branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java
branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java
branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.jsf/src/org/jboss/tools/maven/jsf/configurators/JSFProjectConfigurator.java
branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java
branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java
branches/jbosstools-3.2.x/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java
branches/jbosstools-3.2.x/portlet/features/org.jboss.tools.portlet.feature/feature.properties
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java
branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java
branches/jbosstools-3.2.x/profiler/features/org.jboss.tools.profiler.feature/feature.properties
branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties
branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.feature/feature.properties
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/JbpmHandler.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/SeamHandler.java
branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java
branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.properties
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java
branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java
branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java
branches/jbosstools-3.2.x/smooks/features/org.jboss.tools.smooks.feature/feature.properties
branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.properties
branches/jbosstools-3.2.x/tptp/features/org.jboss.tools.tptp.feature/feature.properties
branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.feature/feature.properties
branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.test.feature/feature.properties
branches/jbosstools-3.2.x/vpe/features/org.jboss.tools.vpe.feature/feature.properties
branches/jbosstools-3.2.x/ws/features/org.jboss.tools.ws.feature/feature.properties
Log:
https://issues.jboss.org/browse/JBDS-1636 fix copyrights
Modified: branches/jbosstools-3.2.x/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml 2011-06-08 14:57:10 UTC (rev 31913)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java
===================================================================
--- branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java
===================================================================
--- branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java
===================================================================
--- branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/birt/features/org.jboss.tools.birt.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/birt/features/org.jboss.tools.birt.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/birt/features/org.jboss.tools.birt.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=JBoss BIRT Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java
===================================================================
--- branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java
===================================================================
--- branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -28,7 +28,7 @@
description=JBoss BPEL Editor
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\\n \
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\\n \
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.\n
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -11,7 +11,7 @@
# do not translate value - just change to point to a locale-specific HTML page
licenseURL=license.html
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml 2011-06-08 14:57:10 UTC (rev 31913)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat, and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat, and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.model/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.model/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.model/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.ui/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.ui/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.ui/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.validator/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.validator/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.validator/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/build/target-platform/jbds.target
===================================================================
--- branches/jbosstools-3.2.x/build/target-platform/jbds.target 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/build/target-platform/jbds.target 2011-06-08 14:57:10 UTC (rev 31913)
@@ -10,27 +10,27 @@
-->
<!-- CVS -->
- <unit id="org.eclipse.cvs.feature.group" version="1.2.0.v20100427-7B77FKt90GE5h0SBT5FV9A01911"/>
+ <unit id="org.eclipse.cvs.feature.group" version="1.2.1.r362_v20101111-7B77FKv99HL0GvIAF99I8H14B7E"/>
<!-- DTP 1.8.2 -->
<unit id="org.eclipse.datatools.enablement.sdk.feature.feature.group" version="1.8.2.v201010181125-7I977XFE9JfheEiJQF88iIv2_vUh"/>
- <unit id="org.eclipse.datatools.sdk.feature.feature.group" version="1.8.1.v20100618-7P9i7KFDxNYrp4cjPjqnPaRKxeyT"/>
+ <unit id="org.eclipse.datatools.sdk.feature.feature.group" version="1.8.2.v201010181125-7P9j7eFEPPYjqNWgPz-1SsWN7dZo"/>
<unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.8.2.v201010181125-77078CcNBGKBZI_FcRd"/>
- <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.8.1.v20100618-7C7b8hEt1ZvtiLkdlO7BVoL_wm6"/>
+ <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.8.2.v201010181125-7C7b8mEt1Zwkn9kfkUHHsoP_3to"/>
<unit id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.8.2.v201010181125-7H7C7CCcNBHEDPHcETPO"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.8.1.v20100618-4107w3121151A1A53"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.8.1.v20100618-7B7C79CcNBGKBgIZCSNS"/>
- <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.8.1.v20100618-7J8x7FBWwUL6z-2z-fcrYC2s55KI"/>
+ <unit id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.8.2.v201010181125-4107w3121151A1A53"/>
+ <unit id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.8.2.v201010181125-7B7C7ACcNBGLEOIeD_SO"/>
+ <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.8.2.v201010181125-7J8x7UBWwUN6z02z-fiI_w4x4uLf"/>
<unit id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.8.2.v201010181125-77778fBmKDNOMgJvJ8Of7QBR"/>
- <unit id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.8.1.v20100618-67C1AqGBJVKbHlH1GU7QBR"/>
- <unit id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.8.1.v20100618-7F47SFC7sRbrSZope9vW"/>
+ <unit id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.8.2.v201010181125-67C2AqGBJVKbHlH1GU7QBR"/>
+ <unit id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.8.2.v201010181125-7F47SFC7sRbrSZope9vW"/>
<unit id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.8.2.v201010181125-4-29oB56N5N7L6PAQ"/>
<unit id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.8.2.v201010181125-2-07w31211518181A"/>
- <unit id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.8.1.v20100618-542AkF79P7QCP9SDB"/>
- <unit id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.8.1.v20100618-546AkF78Y7R9PAX77"/>
+ <unit id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.8.2.v201010181125-542AkF79P7QCP9SDB"/>
+ <unit id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.8.2.v201010181125-546AkF78Y7R9PAX77"/>
<unit id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.8.2.v201010181125-7A7T78DZRDKDFbGwFjNK"/>
<unit id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.8.2.v201010181125-3328s735357795A78"/>
- <unit id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.8.1.v20100618-548cAkF79P7UBMATEE"/>
+ <unit id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.8.2.v201010181125-548dAkF79Q7RAN9UEE"/>
<unit id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.8.2.v201010181125-542AkF77g7V9N9e77"/>
<unit id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.8.2.v201010181125-540AkF77g7V9N9e77"/>
<unit id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.8.2.v201010181125-7E45F9NiNZVR6a1PMVn"/>
@@ -38,19 +38,19 @@
<unit id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.8.2.v201010181125-541AkF79P7N8NAQ77"/>
<unit id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.8.2.v201010181125-7N7y7JFDrhqbGIFUNhcFodMMD2J0"/>
- <unit id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.8.1.v20100618-4209oB57E5N8H9ICE"/>
+ <unit id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.8.2.v201010181125-4219oB57E6G9F7KDB"/>
<unit id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.8.2.v201010181125-7A-3F7RZHLz-Hz-OlPz0Qf"/>
<unit id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.8.2.v201010181125-277178B04G8S_IMz00Iz00PmQz01"/>
<unit id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.8.2.v201010181125-641BgJ9DJ9VGTCaHL"/>
- <unit id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.8.1.v20100618-622BgJ9CR9XFcEWLP"/>
- <unit id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.8.1.v20100618-79-3EVVFJoFsJcMz0Pe"/>
+ <unit id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.8.2.v201010181125-622BgJ9CR9XFcEWLP"/>
+ <unit id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.8.2.v201010181125-79-4EVVFJoFwKcN-L_"/>
<unit id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.8.2.v201010181125-4208375LG5BJ93413"/>
- <unit id="org.eclipse.datatools.intro.feature.group" version="1.8.1.v20100618-26-7w312116392911"/>
+ <unit id="org.eclipse.datatools.intro.feature.group" version="1.8.2.v201010181125-26-7w312116392911"/>
<unit id="org.eclipse.datatools.doc.user.feature.group" version="1.8.2.v201010181125-47C08w95ENAK6AFDFK7"/>
- <unit id="org.eclipse.datatools.common.doc.user.feature.group" version="1.8.1.v20100618-26-311A16321A3557"/>
+ <unit id="org.eclipse.datatools.common.doc.user.feature.group" version="1.8.2.v201010181125-26-311A16321A3557"/>
<unit id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.8.2.v201010181125-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.8.1.v20100618-37D-7733L3D753L7BBF"/>
+ <unit id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.8.2.v201010181125-37D-7733L3D753L7BBF"/>
<!-- XSD -->
<unit id="org.eclipse.xsd.ecore.converter.feature.group" version="2.6.0.v20100914-1218"/>
@@ -65,93 +65,93 @@
<!-- GEF 3.6.2 -->
<unit id="org.eclipse.draw2d.feature.group" version="3.6.2.v20110128-0100-4517w3122123901211"/>
- <unit id="org.eclipse.gef.feature.group" version="3.6.1.v20100908-1100-777B181A3Bz-6B663E7974242"/>
- <unit id="org.eclipse.zest.feature.group" version="1.2.0.v20100519-2050-67808yE5F-8HAH4HECF4242"/>
+ <unit id="org.eclipse.gef.feature.group" version="3.6.2.v20110128-0100-777B381A4Bz06565376E32322"/>
+ <unit id="org.eclipse.zest.feature.group" version="1.2.0.v20100519-2050-67818yE6F-AA7P4B8I52322"/>
<!-- JDT 3.6.2 -->
<unit id="org.eclipse.jdt.feature.group" version="3.6.2.r362_v20101117-0800-7z8XFW6FLFlmjJcvz03jyeFBLS_F"/>
<!-- WTP 3.2.3 -->
- <unit id="org.eclipse.jpt.eclipselink.feature.feature.group" version="2.3.3.v201102072310-7778BkBgJ9EA9VGcDFBA"/>
- <unit id="org.eclipse.jpt.feature.feature.group" version="2.3.2.v201008242310-7N7UF75FD3wTgbUpoff0aT"/>
+ <unit id="org.eclipse.jpt.eclipselink.feature.feature.group" version="2.3.4.v201104192310-7778BkBgJ9EA9VGcDFBA"/>
+ <unit id="org.eclipse.jpt.feature.feature.group" version="2.3.4.v201104192310-7N7UF77FD3wTgcVbmmf0cT"/>
<unit id="org.eclipse.jsf.feature.feature.group" version="3.2.4.v201104182301-7E7I7CF9JgLWPN-X2DIHK"/>
<unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.2.2.v201008170019-377AB8s73533J5J759F"/>
- <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.2.1.v201007070821-52FMTAkF7B77UBR7W98"/>
+ <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.2.3.v201102071500-52FMUAkF7B87PAT8SA8"/>
<unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.2.4.v201104201417-7b7HHfYFSK2WDvSHB0pTyNZ7TpYo"/>
- <unit id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.2.100.v201007151547-62FR7BgJ9E99_EmEJFX"/>
+ <unit id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.10.v201104200444-62FSgBgJ9EA9YGdILLd"/>
<unit id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.102.v201104182301-208_7w31211A17"/>
- <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.2.v20100818b-777HFGRCcNBDiBjIbhBA8"/>
- <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.0.v201005241530-208Z7w31211419"/>
- <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.0.v201005241530-31FA28s73533C66"/>
+ <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.4.v20110323-777HFGTCcNBDjBfIW4BA8"/>
+ <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.3.v201104191412-208Z7w31211419"/>
+ <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.4.v20110323-31FA38s73543B4E"/>
<unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.2.4.v20110323-7A5FEn9xFc7TCFKWBBINHK43A"/>
<unit id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.0.v201005241530-2-Eo7w3121162A3329"/>
- <unit id="org.eclipse.jst.web_core.feature.feature.group" version="3.2.2.v201008170029-7Q7BG75FE9Le9BCy-tZxTqohz000"/>
+ <unit id="org.eclipse.jst.web_core.feature.feature.group" version="3.2.4.v201103231838-7Q7BG7OFE9LeABBX5jb4Ltojqz-7oEpj5963"/>
<unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.3.v201104182301-4619oB5865D8I2331"/>
- <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.3.v201101262333-7F77FJ_C25TkfyypjhqQuxNYsMrJ"/>
- <unit id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.2.1.v201009091720-2107w31211938"/>
+ <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.4.v201103231838-7F77FJcC25Tkfz-8pggwPyqQj55b71NDjuB2IcyF"/>
+ <unit id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.2.2.v201010211813-2107w31211938"/>
<unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.100.v201005241530-78-FF0DZRDKDDePSKwHj"/>
<unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.0.3.v201103270854-7H777FFAKlRiQX8jSbaqy878J"/>
<unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.0.v201005241530-5--AkF7B77NBZBgBg"/>
- <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.1.v201008232129-7E777CF8NcJSSK-UBTwXn"/>
+ <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.2.v201103270854-7E777DF8NcJSTJwUFS1_i"/>
<unit id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.2.v201008232129-3-28s73533I67767I"/>
<unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.2.4.v201103101400-7B7DFEuF7RZHOaLjSqMqRK"/>
- <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.2.2.v201008170019-377AB8s73533J5H335L"/>
- <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.3.v201011031800-7C78FPlEdhO_oXWe4k_elbMgT1Lq"/>
- <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.3.v201102160540-7C78FGUF9JgLWNO2UCNqfa"/>
- <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.0.v201005241510-51EoAkF77g8HBSc"/>
- <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.2.v20100908-30F8V8s734C3I3K"/>
- <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.3.v20101104-7B4FBuAtJb1qEKLnCKHHHI347"/>
- <unit id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.1.10.v201005241510-20Bg7w3121162A3236"/>
+ <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.2.3.v201101121727-377AC8s73543C6H4A5H"/>
+ <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.4.v201103101400-7C78FPmEdhO_oXYe4k_elbMkTrNrSL"/>
+ <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.4.v201103240300-7C78FGYF9JgLWPMA_ENpYd"/>
+ <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.1.v201104191422-51EoAkF77g8HBSc"/>
+ <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.4.v20110323-30F8Z8s73553A3Da2622"/>
+ <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.4.v20110323-7B4FDgAtJcbuEKOlpFPMJIjBD33"/>
+ <unit id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.1.120.v201104182004-20DF7w312215222664"/>
<unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.2.4.v201103170600-7E7AFIAAJrn5WMH1wVGEpTILWIDTYd"/>
- <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.2.v201008100100-7O7CFbKEMf84nUlEJyX7-SPQjhYZ"/>
+ <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.4.v201103170600-7O7CFbbEMf84sL-GEz-v6KOf-MfOa4C140IylMHO"/>
<unit id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.2.0.v201005241510-31Eo8s734B3E4H7799"/>
- <unit id="org.eclipse.wst.ws_core.feature.feature.group" version="3.2.2.v201008211705-7L7RFezFGtGd-ngz--z0mHnb4852"/>
- <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.3.v201102160541-7I78FZIEtEoO2d7AsK6jSNqC-8jj"/>
+ <unit id="org.eclipse.wst.ws_core.feature.feature.group" version="3.2.3.v201102160541-7L7RFf0FGtGd-nipy6nDoi4852"/>
+ <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.4.v201103170600-7I78FZLEtEoO4cC9yKz-eSNz0B07ngOrgut6FPKH"/>
<unit id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.200.v201007151546-44FO-9oB5855O8M9JHH"/>
<unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.300.v201005241450-2407w312116191741"/>
<unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.2.4.v201103231834-7C7OFXfF7RZHQLInN2MhWd"/>
<unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.2.4.v201103170600-7H7AFUaDxumQJOs8hggQZ6_jl1EOJGNlUsOsTM"/>
- <unit id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.2.100.v201005241420-50FXNAkF7B77RBgFFBF"/>
+ <unit id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.2.101.v201102161624-50FXNAkF7B77RBgFFBF"/>
<unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="1.1.6.v201101212357-67K3BgJ9DJAPEUCSKQ"/>
<unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.1.3.v201102102045-7S7WFASFIpS-21NUD58xfPVDTLR"/>
<!-- RCP 3.6.2 -->
- <unit id="org.eclipse.equinox.executable.feature.group" version="3.4.1.R36x_v20100823-7M7K7JF90dnJ-WLf3cf4yi"/>
- <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.0.1.r361_v20100903-897HFZFFZRuSD2LMtVxyz0Vr"/>
+ <unit id="org.eclipse.equinox.executable.feature.group" version="3.4.2.R36x_v20110125-7N7K7bF8zk1BAKMh0iz0t94miBLY"/>
+ <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.0.1.r361_v20100903-897HFa-FX0z-z-ntoaavz0JPX628"/>
<unit id="org.eclipse.help.feature.group" version="1.2.1.r362_v20101111-7e7jEVFDr6xg-LSlC_z0w1D"/>
<unit id="org.eclipse.platform.feature.group" version="3.6.2.r362_v20110210-9gF78Gs1FrIGnHDHWkEcopoN8AmxeZflGDGKQi"/>
<unit id="org.eclipse.rcp.feature.group" version="3.6.2.r362_v20101104-9SAxFMKFkSAqi8axkv1ZjegmiBLY"/>
<!-- UML -->
- <unit id="org.eclipse.uml2.feature.group" version="3.1.1.v201008191505"/>
+ <unit id="org.eclipse.uml2.feature.group" version="3.1.2.v201010261927"/>
<unit id="org.eclipse.uml2.doc.feature.group" version="3.1.0.v201005281015"/>
<!-- PDE -->
- <unit id="org.eclipse.pde.feature.group" version="3.6.1.r361_v20100727-7b7mFL-FET3dhESDgE5_bkJ"/>
+ <unit id="org.eclipse.pde.feature.group" version="3.6.2.r362_v20110203-7b7mFL2FET3dhHalh1iNZtL"/>
<!-- TPTP 4.7 -->
<unit id="org.eclipse.tptp.platform.commons.logging.feature.group" version="4.5.0.v201005032111-2-37w312116191612"/>
- <unit id="org.eclipse.tptp.platform.core.feature.group" version="4.7.1.v201009092123-8X8ZFXUFLWUl6knOxRCm9t"/>
- <unit id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version="4.3.1.v201009092123-797908s73533D4H6D56"/>
+ <unit id="org.eclipse.tptp.platform.core.feature.group" version="4.7.2.v201101261720-8X8ZFXoFLWUl6wn5veAISx"/>
+ <unit id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version="4.3.2.v201101261720-797918s735435695C83"/>
<unit id="org.eclipse.tptp.platform.jakarta.log4j.feature.group" version="4.5.0.v201005032111-217E7w312116191611"/>
<unit id="org.eclipse.tptp.platform.jvmti.feature.group" version="4.5.2.v201101261720-797A48s735536585A93"/>
- <unit id="org.eclipse.tptp.platform.probekit.feature.group" version="4.5.1.v201009092123-7H7BF8PAkF7B77ZARCNEK"/>
- <unit id="org.eclipse.tptp.platform.profile.server.feature.group" version="4.5.1.v201009092123-7H7F2AkF7B77c7dEGDG"/>
- <unit id="org.eclipse.tptp.platform.trace.feature.group" version="4.5.1.v201009092123-7L7O8bBgJ9E99jAfGWEM"/>
+ <unit id="org.eclipse.tptp.platform.probekit.feature.group" version="4.5.2.v201101271120-7H7BF8QAkF7B87RBVCFFD"/>
+ <unit id="org.eclipse.tptp.platform.profile.server.feature.group" version="4.5.2.v201101261720-7H7F4AkF7B88MAQCKJH"/>
+ <unit id="org.eclipse.tptp.platform.trace.feature.group" version="4.5.2.v201101261720-7L7O8fBgJ9EC9NDREaF9"/>
<unit id="org.eclipse.tptp.platform.xerces.feature.group" version="4.6.0.v201005032111-777K4AkF7B77R7c7N77"/>
<!-- RSE 3.2 -->
- <unit id="org.eclipse.rse.feature.group" version="3.2.1.v201008191400-7L78FA-8wqbPcNj4qa8R0eViy7vZ"/>
+ <unit id="org.eclipse.rse.feature.group" version="3.2.2.R32x_v201102130925-7L78FA58SreKCHr_JG7UA8bra19p"/>
<unit id="org.eclipse.rse.useractions.feature.group" version="1.1.200.v201005221100-31A78s733L3D7H7933"/>
<unit id="org.eclipse.tm.terminal.feature.group" version="3.0.202.R32x_v201102011435-4-8a7S43yaw312213122546"/>
<unit id="org.eclipse.tm.terminal.view.feature.group" version="2.1.2.R32x_v201102011435-3017S43yaw312213122546"/>
<unit id="org.eclipse.tm.terminal.telnet.feature.group" version="2.0.200.v201005032000-3-8_7w311A1A271116"/>
<unit id="org.eclipse.tm.terminal.ssh.feature.group" version="2.0.200.v201005271030-3-A77w312116382141"/>
- <unit id="org.apache.commons.io" version="1.4.0.v20081110-1000"/>
+ <unit id="org.apache.commons.io" version="2.0.1.v201101200200"/>
<repository location="http://download.jboss.org/jbosstools/updates/helios/"/>
</location>
</locations>
<!-- <includeBundles><plugin id="org.apache.commons.io"/></includeBundles> -->
- </target>
+ </target>
\ No newline at end of file
Modified: branches/jbosstools-3.2.x/build/target-platform/multiple.target
===================================================================
--- branches/jbosstools-3.2.x/build/target-platform/multiple.target 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/build/target-platform/multiple.target 2011-06-08 14:57:10 UTC (rev 31913)
@@ -180,30 +180,30 @@
<unit id="org.eclipse.jpt.feature.feature.group" version="2.3.4.v201104192310-7N7UF77FD3wTgcVbmmf0cT"/>
<unit id="org.eclipse.wst.common.fproj.feature.group" version="3.2.3.v201101121727-377AC8s73543C6H4A5H"/>
<unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.2.4.v201104201417-7b7HHfYFSK2WDvSHB0pTyNZ7TpYo"/>
- <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.3.v201102160541-7O7CFbWEMf84qYjGDyP3DNEwcgFU"/>
+ <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.4.v201103170600-7O7CFbbEMf84sL-GEz-v6KOf-MfOa4C140IylMHO"/>
<unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.2.4.v201103170600-7H7AFUaDxumQJOs8hggQZ6_jl1EOJGNlUsOsTM"/>
<unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.1.3.v201102102045-7S7WFASFIpS-21NUD58xfPVDTLR"/>
- <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.3.v201102160540-7C78FGUF9JgLWNO2UCNqfa"/>
+ <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.4.v201103240300-7C78FGYF9JgLWPMA_ENpYd"/>
<unit id="org.eclipse.jsf.feature.feature.group" version="3.2.4.v201104182301-7E7I7CF9JgLWPN-X2DIHK"/>
<unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.0.v201005241530-5--AkF7B77NBZBgBg"/>
- <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.1.v201008232129-7E777CF8NcJSSK-UBTwXn"/>
+ <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.2.v201103270854-7E777DF8NcJSTJwUFS1_i"/>
<unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.2.3.v201102071500-52FMUAkF7B87PAT8SA8"/>
- <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.3.v20110111-777HFGSCcNBDjBdHV4BA8"/>
- <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.0.v201005241530-208Z7w31211419"/>
- <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.0.v201005241530-31FA28s73533C66"/>
+ <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.4.v20110323-777HFGTCcNBDjBfIW4BA8"/>
+ <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.3.v201104191412-208Z7w31211419"/>
+ <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.4.v20110323-31FA38s73543B4E"/>
<unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.2.4.v20110323-7A5FEn9xFc7TCFKWBBINHK43A"/>
- <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.3.v201101262333-7F77FJ_C25TkfyypjhqQuxNYsMrJ"/>
- <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.2.3.v201101112207-7E7I7BF9JgLWPMz0VyDEHH"/>
+ <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.4.v201103231838-7F77FJcC25Tkfz-8pggwPyqQj55b71NDjuB2IcyF"/>
+ <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.2.4.v201104182301-7E7I7CF9JgLWPN-X2DIHK"/>
<unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="1.1.6.v201101212357-67K3BgJ9DJAPEUCSKQ"/>
<unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.3.v201104182301-4619oB5865D8I2331"/>
<unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.300.v201005241450-2407w312116191741"/>
<unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.2.4.v201103101400-7B7DFEuF7RZHOaLjSqMqRK"/>
- <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.3.v201011031800-7C78FPlEdhO_oXWe4k_elbMgT1Lq"/>
- <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.0.v201005241510-51EoAkF77g8HBSc"/>
- <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.3.v20101104-30F8X8s734D3A4C"/>
- <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.3.v20101104-7B4FBuAtJb1qEKLnCKHHHI347"/>
+ <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.4.v201103101400-7C78FPmEdhO_oXYe4k_elbMkTrNrSL"/>
+ <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.1.v201104191422-51EoAkF77g8HBSc"/>
+ <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.4.v20110323-30F8Z8s73553A3Da2622"/>
+ <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.4.v20110323-7B4FDgAtJcbuEKOlpFPMJIjBD33"/>
<unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.2.4.v201103170600-7E7AFIAAJrn5WMH1wVGEpTILWIDTYd"/>
- <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.3.v201102160541-7I78FZIEtEoO2d7AsK6jSNqC-8jj"/>
+ <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.4.v201103170600-7I78FZLEtEoO4cC9yKz-eSNz0B07ngOrgut6FPKH"/>
<unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.2.4.v201103231834-7C7OFXfF7RZHQLInN2MhWd"/>
<unit id="com.google.gdt.eclipse.suite.e36.feature.feature.group" version="1.4.2.v201012211742"/>
Modified: branches/jbosstools-3.2.x/build/target-platform/unified.target
===================================================================
--- branches/jbosstools-3.2.x/build/target-platform/unified.target 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/build/target-platform/unified.target 2011-06-08 14:57:10 UTC (rev 31913)
@@ -180,30 +180,30 @@
<unit id="org.eclipse.jpt.feature.feature.group" version="2.3.4.v201104192310-7N7UF77FD3wTgcVbmmf0cT"/>
<unit id="org.eclipse.wst.common.fproj.feature.group" version="3.2.3.v201101121727-377AC8s73543C6H4A5H"/>
<unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.2.4.v201104201417-7b7HHfYFSK2WDvSHB0pTyNZ7TpYo"/>
- <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.3.v201102160541-7O7CFbWEMf84qYjGDyP3DNEwcgFU"/>
+ <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.4.v201103170600-7O7CFbbEMf84sL-GEz-v6KOf-MfOa4C140IylMHO"/>
<unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.2.4.v201103170600-7H7AFUaDxumQJOs8hggQZ6_jl1EOJGNlUsOsTM"/>
<unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.1.3.v201102102045-7S7WFASFIpS-21NUD58xfPVDTLR"/>
- <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.3.v201102160540-7C78FGUF9JgLWNO2UCNqfa"/>
+ <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.4.v201103240300-7C78FGYF9JgLWPMA_ENpYd"/>
<unit id="org.eclipse.jsf.feature.feature.group" version="3.2.4.v201104182301-7E7I7CF9JgLWPN-X2DIHK"/>
<unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.0.v201005241530-5--AkF7B77NBZBgBg"/>
- <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.1.v201008232129-7E777CF8NcJSSK-UBTwXn"/>
+ <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.2.v201103270854-7E777DF8NcJSTJwUFS1_i"/>
<unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.2.3.v201102071500-52FMUAkF7B87PAT8SA8"/>
- <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.3.v20110111-777HFGSCcNBDjBdHV4BA8"/>
- <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.0.v201005241530-208Z7w31211419"/>
- <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.0.v201005241530-31FA28s73533C66"/>
+ <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.4.v20110323-777HFGTCcNBDjBfIW4BA8"/>
+ <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.3.v201104191412-208Z7w31211419"/>
+ <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.4.v20110323-31FA38s73543B4E"/>
<unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.2.4.v20110323-7A5FEn9xFc7TCFKWBBINHK43A"/>
- <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.3.v201101262333-7F77FJ_C25TkfyypjhqQuxNYsMrJ"/>
- <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.2.3.v201101112207-7E7I7BF9JgLWPMz0VyDEHH"/>
+ <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.4.v201103231838-7F77FJcC25Tkfz-8pggwPyqQj55b71NDjuB2IcyF"/>
+ <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.2.4.v201104182301-7E7I7CF9JgLWPN-X2DIHK"/>
<unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="1.1.6.v201101212357-67K3BgJ9DJAPEUCSKQ"/>
<unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.3.v201104182301-4619oB5865D8I2331"/>
<unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.300.v201005241450-2407w312116191741"/>
<unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.2.4.v201103101400-7B7DFEuF7RZHOaLjSqMqRK"/>
- <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.3.v201011031800-7C78FPlEdhO_oXWe4k_elbMgT1Lq"/>
- <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.0.v201005241510-51EoAkF77g8HBSc"/>
- <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.3.v20101104-30F8X8s734D3A4C"/>
- <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.3.v20101104-7B4FBuAtJb1qEKLnCKHHHI347"/>
+ <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.4.v201103101400-7C78FPmEdhO_oXYe4k_elbMkTrNrSL"/>
+ <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.1.v201104191422-51EoAkF77g8HBSc"/>
+ <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.4.v20110323-30F8Z8s73553A3Da2622"/>
+ <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.4.v20110323-7B4FDgAtJcbuEKOlpFPMJIjBD33"/>
<unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.2.4.v201103170600-7E7AFIAAJrn5WMH1wVGEpTILWIDTYd"/>
- <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.3.v201102160541-7I78FZIEtEoO2d7AsK6jSNqC-8jj"/>
+ <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.4.v201103170600-7I78FZLEtEoO4cC9yKz-eSNz0B07ngOrgut6FPKH"/>
<unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.2.4.v201103231834-7C7OFXfF7RZHQLInN2MhWd"/>
<unit id="com.google.gdt.eclipse.suite.e36.feature.feature.group" version="1.4.2.v201012211742"/>
Modified: branches/jbosstools-3.2.x/cdi/features/org.jboss.tools.cdi.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/cdi/features/org.jboss.tools.cdi.feature/feature.xml 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/cdi/features/org.jboss.tools.cdi.feature/feature.xml 2011-06-08 14:57:10 UTC (rev 31913)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors
as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
Modified: branches/jbosstools-3.2.x/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
===================================================================
--- branches/jbosstools-3.2.x/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.feature/feature.xml 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.feature/feature.xml 2011-06-08 14:57:10 UTC (rev 31913)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml 2011-06-08 14:57:10 UTC (rev 31913)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.core.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.core.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.core.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.text.ext.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.text.ext.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.text.ext.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.ui.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.ui.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.ui.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.verification.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.verification.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/features/org.jboss.tools.common.verification.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java
===================================================================
--- branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java
===================================================================
--- branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java
===================================================================
--- branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=Deltacloud Development Tools (Experimental)
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=TPTP Profile On JBoss Server
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/esb/features/org.jboss.tools.esb.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/esb/features/org.jboss.tools.esb.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/esb/features/org.jboss.tools.esb.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=JBoss ESB Tools
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=JBoss Tools Community Project Examples
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: branches/jbosstools-3.2.x/examples/features/org.jboss.tools.project.examples.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/examples/features/org.jboss.tools.project.examples.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/features/org.jboss.tools.project.examples.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=Project Examples
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java
===================================================================
--- branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -29,7 +29,7 @@
description=FreeMarkerIDE provides editor for FreeMarker templates
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -12,7 +12,7 @@
# do not translate value - just change to point to a locale-specific HTML page
licenseURL=license.html
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -12,7 +12,7 @@
# do not translate value - just change to point to a locale-specific HTML page
licenseURL=license.html
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/gwt/features/org.jboss.tools.gwt.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/gwt/features/org.jboss.tools.gwt.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/gwt/features/org.jboss.tools.gwt.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss GWT Integration (Experimental)
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=Conversion of bpmn files to jBPM syntax.
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.feature/feature.xml 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.feature/feature.xml 2011-06-08 14:57:10 UTC (rev 31913)
@@ -12,7 +12,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml 2011-06-08 14:57:10 UTC (rev 31913)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.jsf.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.jsf.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.jsf.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.richfaces.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.richfaces.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/jsf/features/org.jboss.tools.richfaces.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -13,7 +13,7 @@
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Portlet Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Project Examples
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -12,7 +12,7 @@
licenseURL=license.html
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java
===================================================================
--- branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009 JBoss by Red Hat and others.
+ * Copyright (c) 2009-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
Modified: branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java
===================================================================
--- branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009 JBoss by Red Hat and others.
+ * Copyright (c) 2009-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
Modified: branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java
===================================================================
--- branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.jsf/src/org/jboss/tools/maven/jsf/configurators/JSFProjectConfigurator.java
===================================================================
--- branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.jsf/src/org/jboss/tools/maven/jsf/configurators/JSFProjectConfigurator.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.jsf/src/org/jboss/tools/maven/jsf/configurators/JSFProjectConfigurator.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java
===================================================================
--- branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java
===================================================================
--- branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java
===================================================================
--- branches/jbosstools-3.2.x/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/features/org.jboss.tools.portlet.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/portlet/features/org.jboss.tools.portlet.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/features/org.jboss.tools.portlet.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=JBoss Portlet
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.\n
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/profiler/features/org.jboss.tools.profiler.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/profiler/features/org.jboss.tools.profiler.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/profiler/features/org.jboss.tools.profiler.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2011 JBoss by Red Hat and others.
+# Copyright (c) 2009-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
Modified: branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2011 JBoss by Red Hat and others.
+# Copyright (c) 2009-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
@@ -28,7 +28,7 @@
description=Project Examples
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/features/org.jboss.tools.runtime.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2011 JBoss by Red Hat and others.
+# Copyright (c) 2009-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
@@ -28,7 +28,7 @@
description=This feature provides runtime initialization
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/JbpmHandler.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/JbpmHandler.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/JbpmHandler.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/SeamHandler.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/SeamHandler.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/handlers/SeamHandler.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-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
Modified: branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java
===================================================================
--- branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java
===================================================================
--- branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java
===================================================================
--- branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * 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
Modified: branches/jbosstools-3.2.x/smooks/features/org.jboss.tools.smooks.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/smooks/features/org.jboss.tools.smooks.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/smooks/features/org.jboss.tools.smooks.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=Smooks Tools
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.\n
############### end of copyright property ####################################
Modified: branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
Modified: branches/jbosstools-3.2.x/tptp/features/org.jboss.tools.tptp.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/tptp/features/org.jboss.tools.tptp.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/tptp/features/org.jboss.tools.tptp.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=TPTP Profile On JBoss Server
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=JBoss Tools Usage Reporting
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.test.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.test.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/usage/features/org.jboss.tools.usage.test.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -27,7 +27,7 @@
description=TPTP Profile On JBoss Server
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n\
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
Modified: branches/jbosstools-3.2.x/vpe/features/org.jboss.tools.vpe.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/vpe/features/org.jboss.tools.vpe.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/vpe/features/org.jboss.tools.vpe.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2011 JBoss by Red Hat and others.
+# Copyright (c) 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
Modified: branches/jbosstools-3.2.x/ws/features/org.jboss.tools.ws.feature/feature.properties
===================================================================
--- branches/jbosstools-3.2.x/ws/features/org.jboss.tools.ws.feature/feature.properties 2011-06-08 12:43:16 UTC (rev 31912)
+++ branches/jbosstools-3.2.x/ws/features/org.jboss.tools.ws.feature/feature.properties 2011-06-08 14:57:10 UTC (rev 31913)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2011 JBoss by Red Hat and others.
+# 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
@@ -28,7 +28,7 @@
description=JBoss WebServices Tools
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. and others.\n\
All rights reserved. This program and the accompanying materials\n
are made available under the terms of the Eclipse Public License v1.0\n\
which accompanies this distribution, and is available at\n\
14 years, 10 months