JBoss Tools SVN: r17946 - trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-10-06 13:53:57 -0400 (Tue, 06 Oct 2009)
New Revision: 17946
Modified:
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
Log:
JBIDE-4938 This plugin makes the apache ode runtime and depends on org.eclipse.bpel.runtimes which is no longer part of our distro
Modified: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF 2009-10-06 17:40:22 UTC (rev 17945)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF 2009-10-06 17:53:57 UTC (rev 17946)
@@ -14,7 +14,6 @@
org.eclipse.bpel.model;bundle-version="0.4.0",
org.eclipse.jem.util;bundle-version="[2.0.100,3.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.bpel.runtimes;bundle-version="0.4.0",
org.eclipse.jst.server.generic.ui;bundle-version="[1.0.305,2.0.0)",
org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)",
org.eclipse.bpel.ui;bundle-version="0.4.0",
15 years, 1 month
JBoss Tools SVN: r17945 - in trunk/esb: plugins/org.jboss.tools.esb.core and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2009-10-06 13:40:22 -0400 (Tue, 06 Oct 2009)
New Revision: 17945
Modified:
trunk/esb/features/org.jboss.tools.esb.feature/feature.xml
trunk/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.core/build.properties
trunk/esb/plugins/org.jboss.tools.esb.core/plugin.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-3628 - Plugins should be .jar's not directories for efficiency sake
esb.core plugin converted to jar
Modified: trunk/esb/features/org.jboss.tools.esb.feature/feature.xml
===================================================================
--- trunk/esb/features/org.jboss.tools.esb.feature/feature.xml 2009-10-06 17:28:27 UTC (rev 17944)
+++ trunk/esb/features/org.jboss.tools.esb.feature/feature.xml 2009-10-06 17:40:22 UTC (rev 17945)
@@ -1,52 +1,53 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.esb.feature"
- label="%featureName"
- version="1.0.0"
- provider-name="%providerName"
- plugin="org.jboss.tools.esb.ui">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <url>
- <update label="%updateSiteName" url="http://download.jboss.org/jbosstools/updates/stable"/>
- </url>
-
- <plugin
- id="org.jboss.tools.esb.core"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.esb.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.esb.project.core"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.esb.project.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.esb.feature"
+ label="%featureName"
+ version="1.0.0"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.esb.ui">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <url>
+ <update label="%updateSiteName" url="http://download.jboss.org/jbosstools/updates/stable"/>
+ </url>
+
+ <plugin
+ id="org.jboss.tools.esb.core"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.esb.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.esb.project.core"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.esb.project.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF 2009-10-06 17:28:27 UTC (rev 17944)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF 2009-10-06 17:40:22 UTC (rev 17945)
@@ -1,7 +1,6 @@
Manifest-Version: 1.0
Bundle-ActivationPolicy: lazy
Bundle-Name: %pluginName
-Bundle-ClassPath: esb.jar
Bundle-Activator: org.jboss.tools.esb.core.ESBCorePlugin
Bundle-ManifestVersion: 2
Bundle-Vendor: %providerName
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/build.properties
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/build.properties 2009-10-06 17:28:27 UTC (rev 17944)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/build.properties 2009-10-06 17:40:22 UTC (rev 17945)
@@ -1,13 +1,13 @@
-source.esb.jar = src/,\
- resources/
+source.. = src/,\
+ resources/
bin.includes = plugin.xml,\
META-INF/,\
plugin.properties,\
about.html,\
- esb.jar,\
+ .,\
images/,\
schemas/
-jars.compile.order = esb.jar
+jars.compile.order = .
src.includes = src/,\
images/,\
schemas/,\
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/plugin.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/plugin.xml 2009-10-06 17:28:27 UTC (rev 17944)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/plugin.xml 2009-10-06 17:40:22 UTC (rev 17945)
@@ -14,11 +14,6 @@
<keys path="help/keys-esb-lists.properties"/>
</extension>
- <extension
- point="org.eclipse.wst.xml.core.catalogContributions">
- <catalogContribution id="default">
- </catalogContribution>
- </extension>
<extension point="org.jboss.tools.common.model.classes">
<xclass id="org.jboss.tools.esb.core.model.ESBFileImpl"
@@ -45,17 +40,17 @@
<uri
name="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
- uri="schemas/jbossesb-1.0.xsd"/>
+ uri="platform:/plugin/org.jboss.tools.esb.core/schemas/jbossesb-1.0.xsd"/>
<uri
name="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
- uri="schemas/jbossesb-1.0.1.xsd"/>
+ uri="platform:/plugin/org.jboss.tools.esb.core/schemas/jbossesb-1.0.1.xsd"/>
<uri
name="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml..."
- uri="schemas/jbossesb-1.1.0.xsd"/>
+ uri="platform:/plugin/org.jboss.tools.esb.core/schemas/jbossesb-1.1.0.xsd"/>
</catalogContribution>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
15 years, 1 month
JBoss Tools SVN: r17944 - trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2009-10-06 13:28:27 -0400 (Tue, 06 Oct 2009)
New Revision: 17944
Modified:
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF
Log:
update bpel.runtimes id to org.jboss.tools.bpel.runtimes
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF 2009-10-06 17:06:51 UTC (rev 17943)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF 2009-10-06 17:28:27 UTC (rev 17944)
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
-Bundle-SymbolicName: org.eclipse.bpel.runtimes; singleton:=true
+Bundle-SymbolicName: org.jboss.tools.bpel.runtimes;singleton:=true
Bundle-Version: 0.4.0.qualifier
Bundle-Activator: org.jboss.tools.bpel.runtimes.RuntimesPlugin
Bundle-Localization: plugin
15 years, 1 month
JBoss Tools SVN: r17943 - trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2009-10-06 13:06:51 -0400 (Tue, 06 Oct 2009)
New Revision: 17943
Modified:
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF
Log:
downgrade wst.web version to 1.1.300 to fix build error
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF 2009-10-06 16:57:00 UTC (rev 17942)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF 2009-10-06 17:06:51 UTC (rev 17943)
@@ -24,7 +24,7 @@
javax.wsdl;bundle-version="[1.5.0,1.6.0)",
org.eclipse.jst.common.frameworks;bundle-version="1.1.300",
org.jboss.ide.eclipse.as.wtp.core;bundle-version="1.0.0",
- org.eclipse.wst.web;bundle-version="1.1.301"
+ org.eclipse.wst.web;bundle-version="1.1.300"
Eclipse-LazyStart: true
Export-Package: org.jboss.tools.bpel.runtimes,
org.jboss.tools.bpel.runtimes.facets,
15 years, 1 month
JBoss Tools SVN: r17942 - trunk/bpel/features/org.jboss.tools.bpel.feature.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2009-10-06 12:57:00 -0400 (Tue, 06 Oct 2009)
New Revision: 17942
Modified:
trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml
Log:
JBIDE-4938 removing two unused plugins from feature.xml
Modified: trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml 2009-10-06 16:30:08 UTC (rev 17941)
+++ trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml 2009-10-06 16:57:00 UTC (rev 17942)
@@ -63,12 +63,6 @@
version="0.0.0"
unpack="false"/>
- <plugin
- id="org.eclipse.bpel.runtimes"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
<plugin
id="org.eclipse.bpel.ui"
@@ -96,13 +90,6 @@
unpack="false"/>
<plugin
- id="org.jboss.tools.bpel.as.integration"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
id="org.jboss.tools.bpel.cheatsheet"
download-size="0"
install-size="0"
15 years, 1 month
JBoss Tools SVN: r17941 - trunk/bpel/features/org.jboss.tools.bpel.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-10-06 12:30:08 -0400 (Tue, 06 Oct 2009)
New Revision: 17941
Modified:
trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-4938 add rawblem's new plugin
Modified: trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml 2009-10-06 16:29:47 UTC (rev 17940)
+++ trunk/bpel/features/org.jboss.tools.bpel.feature/feature.xml 2009-10-06 16:30:08 UTC (rev 17941)
@@ -109,4 +109,12 @@
version="0.0.0"
unpack="false"/>
+ <plugin
+ id="org.jboss.tools.bpel.runtimes"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+
</feature>
15 years, 1 month
JBoss Tools SVN: r17940 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2009-10-06 12:29:47 -0400 (Tue, 06 Oct 2009)
New Revision: 17940
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/SeamRenameProcessor.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-1077
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/SeamRenameProcessor.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/SeamRenameProcessor.java 2009-10-06 16:21:08 UTC (rev 17939)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/SeamRenameProcessor.java 2009-10-06 16:29:47 UTC (rev 17940)
@@ -304,21 +304,15 @@
protected void checkDeclarations(ISeamComponent component) throws CoreException{
if(component.getJavaDeclaration() != null){
- if(coreHelper.isJar(component.getJavaDeclaration())){
- ITextSourceReference location = ((SeamComponentDeclaration)component.getJavaDeclaration()).getLocationFor(ISeamXmlComponentDeclaration.NAME);
- if(location == null || location.getStartPosition() != 0 || location.getLength() != 0)
- status.addInfo(Messages.format(SeamCoreMessages.SEAM_RENAME_PROCESSOR_COMPONENT_HAS_DECLARATION_FROM_JAR, new String[]{component.getName(), component.getJavaDeclaration().getResource().getFullPath().toString()}));
- }
+ if(coreHelper.isJar(component.getJavaDeclaration()) && component.getJavaDeclaration().getName() != null)
+ status.addInfo(Messages.format(SeamCoreMessages.SEAM_RENAME_PROCESSOR_COMPONENT_HAS_DECLARATION_FROM_JAR, new String[]{component.getName(), component.getJavaDeclaration().getResource().getFullPath().toString()}));
}
Set<ISeamXmlComponentDeclaration> xmlDecls = component.getXmlDeclarations();
for(ISeamXmlComponentDeclaration xmlDecl : xmlDecls){
- if(coreHelper.isJar(xmlDecl)){
- ITextSourceReference location = ((SeamComponentDeclaration)xmlDecl).getLocationFor(ISeamXmlComponentDeclaration.NAME);
- if(location == null || location.getStartPosition() != 0 || location.getLength() != 0)
- status.addInfo(Messages.format(SeamCoreMessages.SEAM_RENAME_PROCESSOR_COMPONENT_HAS_DECLARATION_FROM_JAR, new String[]{component.getName(), xmlDecl.getResource().getFullPath().toString()}));
- }
+ if(coreHelper.isJar(xmlDecl) && xmlDecl.getName() != null)
+ status.addInfo(Messages.format(SeamCoreMessages.SEAM_RENAME_PROCESSOR_COMPONENT_HAS_DECLARATION_FROM_JAR, new String[]{component.getName(), xmlDecl.getResource().getFullPath().toString()}));
}
}
15 years, 1 month
JBoss Tools SVN: r17939 - in trunk/bpel/plugins/org.jboss.tools.bpel.runtimes: META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2009-10-06 12:21:08 -0400 (Tue, 06 Oct 2009)
New Revision: 17939
Modified:
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/build.properties
Log:
https://jira.jboss.org/jira/browse/JBIDE-4938 use . instead of bin for compiled classes so we end up with a correct plugin structure
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF 2009-10-06 15:33:00 UTC (rev 17938)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/META-INF/MANIFEST.MF 2009-10-06 16:21:08 UTC (rev 17939)
@@ -30,6 +30,6 @@
org.jboss.tools.bpel.runtimes.facets,
org.jboss.tools.bpel.runtimes.module,
org.jboss.tools.bpel.runtimes.ui.wizards
-Bundle-ClassPath: bin
+Bundle-ClassPath: .
Bundle-Vendor: %providerName
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/build.properties
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/build.properties 2009-10-06 15:33:00 UTC (rev 17938)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/build.properties 2009-10-06 16:21:08 UTC (rev 17939)
@@ -1,20 +1,6 @@
-bin.includes = plugin.xml,\
- META-INF/,\
- icons/,\
- plugin.properties,\
- bin/,\
- bin
-
-jars.compile.order =
-src.includes = META-INF/,\
- icons/,\
- plugin.properties,\
- plugin.xml,\
- src/,\
- build.properties,\
- bin/,\
- .project,\
- .cvsignore,\
- .classpath
-source.bin = src/
-
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+ .,\
+ plugin.*,\
+ icons/
15 years, 1 month
JBoss Tools SVN: r17938 - in trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml: META-INF and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2009-10-06 11:33:00 -0400 (Tue, 06 Oct 2009)
New Revision: 17938
Added:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ELConstraint.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/IntELConstraint.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListELConstraint.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListIntELConstraint.java
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/resources/meta/hibconfig3.meta
Log:
https://jira.jboss.org/jira/browse/JBIDE-2607
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF 2009-10-06 15:25:09 UTC (rev 17937)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF 2009-10-06 15:33:00 UTC (rev 17938)
@@ -8,6 +8,7 @@
Bundle-Localization: plugin
Export-Package: org.jboss.tools.hibernate.xml,
org.jboss.tools.hibernate.xml.model,
+ org.jboss.tools.hibernate.xml.model.constraint,
org.jboss.tools.hibernate.xml.model.handlers,
org.jboss.tools.hibernate.xml.model.impl
Require-Bundle: org.eclipse.ui.ide,
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.xml 2009-10-06 15:25:09 UTC (rev 17937)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/plugin.xml 2009-10-06 15:33:00 UTC (rev 17938)
@@ -107,6 +107,14 @@
<xclass id="org.jboss.tools.hibernate.xml.model.GrantActionsConstraint"
class="org.jboss.tools.hibernate.xml.model.GrantActionsConstraint"/>
+
+
+ <xclass id="org.jboss.tools.hibernate.xml.model.constraint.IntELConstraint"
+ class="org.jboss.tools.hibernate.xml.model.constraint.IntELConstraint"/>
+ <xclass id="org.jboss.tools.hibernate.xml.model.constraint.ListELConstraint"
+ class="org.jboss.tools.hibernate.xml.model.constraint.ListELConstraint"/>
+ <xclass id="org.jboss.tools.hibernate.xml.model.constraint.ListIntELConstraint"
+ class="org.jboss.tools.hibernate.xml.model.constraint.ListIntELConstraint"/>
</extension>
</plugin>
\ No newline at end of file
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/resources/meta/hibconfig3.meta
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/resources/meta/hibconfig3.meta 2009-10-06 15:25:09 UTC (rev 17937)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/resources/meta/hibconfig3.meta 2009-10-06 15:33:00 UTC (rev 17938)
@@ -4,6 +4,11 @@
<XModelEntityGroup>
<VERSION DEPENDS="Model:1.0" MODULE="Hibernate" VERSION="1.0"/>
<MAPPINGS>
+ <MAPPING name="AttributeConstraints">
+ <PAIR name="IntEL" value="org.jboss.tools.hibernate.xml.model.constraint.IntELConstraint"/>
+ <PAIR name="ListEL" value="org.jboss.tools.hibernate.xml.model.constraint.ListELConstraint"/>
+ <PAIR name="ListIntEL" value="org.jboss.tools.hibernate.xml.model.constraint.ListIntELConstraint"/>
+ </MAPPING>
<MAPPING name="Implementations">
<PAIR name="ComplexProperty" value="org.jboss.tools.hibernate.xml.model.impl.HibConfigComplexPropertyImpl"/>
</MAPPING>
@@ -904,7 +909,7 @@
PROPERTIES="category=general;h_property=hibernate.bytecode.provider" name="provider"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.bytecode.use_reflection_optimizer" name="use reflection optimizer">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -943,42 +948,42 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.c3p0.acquire_increment" name="acquire increment">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.c3p0.idle_test_period" name="idle test period">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.c3p0.max_size" name="max size">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.c3p0.max_statements" name="max statements">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.c3p0.min_size" name="min size">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.c3p0.timeout" name="timeout">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
@@ -1029,7 +1034,7 @@
PROPERTIES="category=general;h_property=hibernate.cache.region_prefix" name="region prefix"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.cache.use_minimal_puts" name="use minimal puts">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1038,7 +1043,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.cache.use_query_cache" name="use query cache">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1047,7 +1052,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.cache.use_second_level_cache" name="use second level cache">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1056,7 +1061,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.cache.use_structured_entries" name="use structured entries">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1106,7 +1111,7 @@
PROPERTIES="category=general;h_property=hibernate.connection.password" name="password"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.connection.pool_size" name="pool size">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
@@ -1115,7 +1120,7 @@
PROPERTIES="category=advanced;h_property=hibernate.connection" name="connection"/>
<XModelAttribute
PROPERTIES="category=advanced;h_property=hibernate.connection.autocommit" name="autocommit">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1132,7 +1137,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=advanced;h_property=hibernate.connection.release_mode" name="release mode">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="on_close"/>
<value name="after_transaction"/>
@@ -1202,7 +1207,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.show_sql" name="show sql">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1211,7 +1216,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.use_sql_comments" name="use sql comments">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1220,7 +1225,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.format_sql" name="format sql">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1229,7 +1234,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.default_batch_fetch_size" name="default batch fetch size">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
@@ -1238,7 +1243,7 @@
PROPERTIES="category=general;h_property=hibernate.default_catalog" name="default catalog"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.default_entity_mode" name="default entity mode">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="dynamic-map"/>
<value name="dom4j"/>
@@ -1252,7 +1257,7 @@
PROPERTIES="category=general;h_property=hibernate.current_session_context_class" name="current session context class"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.generate_statistics" name="generate statistics">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1274,14 +1279,14 @@
PROPERTIES="category=general;h_property=hibernate.jacc_context_id" name="jacc context id"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.max_fetch_depth" name="max fetch depth">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.order_inserts" name="order inserts">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1290,7 +1295,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.order_updates" name="order updates">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1301,7 +1306,7 @@
PROPERTIES="category=general;h_property=hibernate.session_factory_name" name="session factory name"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.use_identifier_rollback" name="use identifier rollback">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1340,7 +1345,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.jdbc.batch_size" name="batch size">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
@@ -1351,7 +1356,7 @@
PROPERTIES="category=general;h_property=hibernate.jdbc.factory_class" name="factory class"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.jdbc.fetch_size" name="fetch size">
- <Constraint loader="Int">
+ <Constraint loader="%IntEL%">
<value name="mandatory=false"/>
</Constraint>
<Editor name="Int"/>
@@ -1360,7 +1365,7 @@
PROPERTIES="category=general;h_property=hibernate.jdbc.sql_exception_converter" name="sql exception converter"/>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.jdbc.use_get_generated_keys" name="use get generated keys">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1369,7 +1374,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.jdbc.use_scrollable_resultset" name="use scrollable resultset">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1378,7 +1383,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.jdbc.use_streams_for_binary" name="use streams for binary">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1387,7 +1392,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.jdbc.wrap_result_sets" name="wrap result sets">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1508,7 +1513,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.query.jpaql_strict_compliance" name="jpaql strict compliance">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1517,7 +1522,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.query.startup_check" name="startup check">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1558,7 +1563,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.transaction.auto_close_session" name="auto close session">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
@@ -1571,7 +1576,7 @@
</XModelAttribute>
<XModelAttribute
PROPERTIES="category=general;h_property=hibernate.transaction.flush_before_completion" name="flush before completion">
- <Constraint loader="List">
+ <Constraint loader="%ListEL%">
<value/>
<value name="true"/>
<value name="false"/>
Added: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ELConstraint.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ELConstraint.java (rev 0)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ELConstraint.java 2009-10-06 15:33:00 UTC (rev 17938)
@@ -0,0 +1,53 @@
+ /*******************************************************************************
+ * Copyright (c) 2007 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.hibernate.xml.model.constraint;
+
+import org.jboss.tools.common.meta.constraint.XAttributeConstraint;
+import org.jboss.tools.common.meta.constraint.impl.XAttributeConstraintImpl;
+
+/**
+ * @author Viacheslav Kabanovich
+ */
+public class ELConstraint extends XAttributeConstraintImpl {
+ public static ELConstraint INSTANCE = new ELConstraint();
+
+ public static XAttributeConstraint getInstance() {
+ return INSTANCE;
+ }
+
+ public boolean accepts(String value) {
+ if(value != null) {
+ if((value.startsWith("#{") || value.startsWith("${")) && value.endsWith("}")) {
+ return true;
+ }
+ if(value.length() >= 2 && value.startsWith("@") && value.endsWith("@")) {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ /**
+ * Returns not null only if value starts with EL tokens.
+ */
+ public String getError(String value) {
+ if(accepts(value)) return null;
+ if(value.startsWith("#{") || value.startsWith("${")) {
+ return "value is not a correct EL.";
+ }
+ if(value.startsWith("@")) {
+ return "value is not a correct property.";
+ }
+
+ return super.getError(value);
+ }
+
+}
Property changes on: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ELConstraint.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/IntELConstraint.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/IntELConstraint.java (rev 0)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/IntELConstraint.java 2009-10-06 15:33:00 UTC (rev 17938)
@@ -0,0 +1,36 @@
+ /*******************************************************************************
+ * Copyright (c) 2007 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.hibernate.xml.model.constraint;
+
+import org.jboss.tools.common.meta.constraint.impl.XAttributeConstraintInt;
+
+/**
+ * @author Viacheslav Kabanovich
+ */
+public class IntELConstraint extends XAttributeConstraintInt {
+
+ public boolean accepts(String value) {
+ if(ELConstraint.getInstance().accepts(value)) {
+ return true;
+ }
+ return super.accepts(value);
+ }
+
+ public String getError(String value) {
+ if(accepts(value)) return null;
+ String error = ELConstraint.getInstance().getError(value);
+ if(error != null) {
+ return error;
+ }
+ return super.getError(value);
+ }
+
+}
Property changes on: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/IntELConstraint.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListELConstraint.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListELConstraint.java (rev 0)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListELConstraint.java 2009-10-06 15:33:00 UTC (rev 17938)
@@ -0,0 +1,36 @@
+ /*******************************************************************************
+ * Copyright (c) 2007 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.hibernate.xml.model.constraint;
+
+import org.jboss.tools.common.meta.constraint.impl.XAttributeConstraintList;
+
+/**
+ * @author Viacheslav Kabanovich
+ */
+public class ListELConstraint extends XAttributeConstraintList {
+
+ public boolean accepts(String value) {
+ if(ELConstraint.getInstance().accepts(value)) {
+ return true;
+ }
+ return super.accepts(value);
+ }
+
+ public String getError(String value) {
+ if(accepts(value)) return null;
+ String error = ELConstraint.getInstance().getError(value);
+ if(error != null) {
+ return error;
+ }
+ return super.getError(value);
+ }
+
+}
Property changes on: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListELConstraint.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListIntELConstraint.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListIntELConstraint.java (rev 0)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListIntELConstraint.java 2009-10-06 15:33:00 UTC (rev 17938)
@@ -0,0 +1,36 @@
+ /*******************************************************************************
+ * Copyright (c) 2007 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.hibernate.xml.model.constraint;
+
+import org.jboss.tools.common.meta.constraint.impl.XAttributeConstraintListInt;
+
+/**
+ * @author Viacheslav Kabanovich
+ */
+public class ListIntELConstraint extends XAttributeConstraintListInt {
+
+ public boolean accepts(String value) {
+ if(ELConstraint.getInstance().accepts(value)) {
+ return true;
+ }
+ return super.accepts(value);
+ }
+
+ public String getError(String value) {
+ if(accepts(value)) return null;
+ String error = ELConstraint.getInstance().getError(value);
+ if(error != null) {
+ return error;
+ }
+ return super.getError(value);
+ }
+
+}
Property changes on: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/src/org/jboss/tools/hibernate/xml/model/constraint/ListIntELConstraint.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
15 years, 1 month
JBoss Tools SVN: r17937 - trunk/seam/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2009-10-06 11:25:09 -0400 (Tue, 06 Oct 2009)
New Revision: 17937
Modified:
trunk/seam/docs/reference/en/modules/seam_preferences.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-773 - adding the description of a new option in the Seam Validator Preferences page;
Modified: trunk/seam/docs/reference/en/modules/seam_preferences.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/seam_preferences.xml 2009-10-06 15:23:42 UTC (rev 17936)
+++ trunk/seam/docs/reference/en/modules/seam_preferences.xml 2009-10-06 15:25:09 UTC (rev 17937)
@@ -92,12 +92,16 @@
</imageobject>
</mediaobject>
</figure>
+
+ <para>The <emphasis>
+ <property>Revalidate unresolved ELs automatically</property></emphasis> option is enabled by default.
+ If necessary, you can uncheck it. It may increase a performance for big complex projects.</para>
- <para>In the upper right corner of the page there is a <property>Configure Project
- Specific Settings</property> link. Clicking on it you get the form where you can
+ <para>In the upper right corner of the Seam Validator preferences page there is a <emphasis><property>Configure Project
+ Specific Settings</property></emphasis> link. Clicking on it you get the form where you can
choose a project for specific setting. Project specific configuration allows you to
- have different validator settings for each project. Check the <property>Show only
- projects with project specific settings</property> if you want to see the
+ have different validator settings for each project. Check the <emphasis><property>Show only
+ projects with project specific settings</property></emphasis> if you want to see the
projects that have been already set. Click on <property>Ok</property>.</para>
<figure>
15 years, 1 month