JBoss Tools SVN: r20525 - trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2010-02-26 17:32:10 -0500 (Fri, 26 Feb 2010)
New Revision: 20525
Removed:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/DeploymentFailure.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/ForwardingBean.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/deployment/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/event/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/extensions/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/impl/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/literals/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/policy/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/xml/
Log:
https://jira.jboss.org/jira/browse/JBIDE-5808
Deleted: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/DeploymentFailure.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/DeploymentFailure.java 2010-02-26 22:28:05 UTC (rev 20524)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/DeploymentFailure.java 2010-02-26 22:32:10 UTC (rev 20525)
@@ -1,56 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc., and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.jboss.jsr299.tck;
-
-/**
- * A category exception which can be declared in the @ExpectedDeploymentException
- * annotation of an @Artifact to detect a definition error as described in
- * Section 12.4, "Problems detected automatically by the container".
- *
- * @see org.jboss.jsr299.tck.spi.Managers#isDefinitionError(Throwable)
- */
-public class DeploymentFailure extends RuntimeException
-{
-
- /**
- *
- */
- private static final long serialVersionUID = 3544233876045340712L;
-
-public DeploymentFailure()
- {
- super();
- }
-
- public DeploymentFailure(String message, Throwable cause)
- {
- super(message, cause);
- }
-
- public DeploymentFailure(String message)
- {
- super(message);
- }
-
- public DeploymentFailure(Throwable cause)
- {
- super(cause);
- }
-
-
-
-}
Deleted: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/ForwardingBean.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/ForwardingBean.java 2010-02-26 22:28:05 UTC (rev 20524)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/ForwardingBean.java 2010-02-26 22:32:10 UTC (rev 20525)
@@ -1,93 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc., and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.jboss.jsr299.tck;
-
-import java.lang.annotation.Annotation;
-import java.lang.reflect.Type;
-import java.util.Set;
-
-import javax.enterprise.context.spi.CreationalContext;
-import javax.enterprise.inject.spi.Bean;
-import javax.enterprise.inject.spi.InjectionPoint;
-
-public abstract class ForwardingBean<T> implements Bean<T>
-{
-
- protected ForwardingBean()
- {
- }
-
- protected abstract Bean<T> delegate();
-
- public Set<Annotation> getQualifiers()
- {
- return delegate().getQualifiers();
- }
-
- public Set<InjectionPoint> getInjectionPoints()
- {
- return delegate().getInjectionPoints();
- }
-
- public String getName()
- {
- return delegate().getName();
- }
-
- public Class<? extends Annotation> getScope()
- {
- return delegate().getScope();
- }
-
- public Set<Type> getTypes()
- {
- return delegate().getTypes();
- }
-
- public boolean isNullable()
- {
- return delegate().isNullable();
- }
-
- public T create(CreationalContext<T> creationalContext)
- {
- return delegate().create(creationalContext);
- }
-
- public void destroy(T instance, CreationalContext<T> creationalContext)
- {
- delegate().destroy(instance, creationalContext);
- }
-
- @Override
- public boolean equals(Object obj)
- {
- return delegate().equals(obj);
- }
-
- @Override
- public String toString()
- {
- return delegate().toString();
- }
-
- @Override
- public int hashCode()
- {
- return delegate().hashCode();
- }
-}
14 years, 10 months
JBoss Tools SVN: r20521 - in trunk/cdi/tests: org.jboss.tools.cdi.text.ext.test/src/org/jboss/tools/cdi/text/ext/test and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2010-02-26 15:53:23 -0500 (Fri, 26 Feb 2010)
New Revision: 20521
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/TCKTest.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java
trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/src/org/jboss/tools/cdi/text/ext/test/InjectedPointHyperlinkDetectorTest.java
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CATest.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5808
Modified: trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/TCKTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/TCKTest.java 2010-02-26 19:51:29 UTC (rev 20520)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/TCKTest.java 2010-02-26 20:53:23 UTC (rev 20521)
@@ -28,7 +28,7 @@
// protected static String WEB_CONTENT = PROJECT_PATH + WEB_CONTENT_SUFFIX;
// protected static String WEB_INF = WEB_CONTENT + WEB_INF_SUFFIX;
- static String PACKAGE = "/org/jboss/jsr299/tck/tests";
+ static String PACKAGE = "/org/jboss/jsr299/tck";
protected static String TCK_RESOURCES_PREFIX = "/resources/tck";
Modified: trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java 2010-02-26 19:51:29 UTC (rev 20520)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java 2010-02-26 20:53:23 UTC (rev 20521)
@@ -21,9 +21,9 @@
public class ValidationTest extends TCKTest {
public void testLegalTypesInTyped() throws Exception {
- IProject p = importPreparedProject("/lookup/typesafe/resolution");
+ IProject p = importPreparedProject("/tests/lookup/typesafe/resolution");
IFile petShopFile = p.getFile("JavaSource/org/jboss/jsr299/tck/tests/lookup/typesafe/resolution/PetShop.java");
- AbstractResourceMarkerTest.assertMarkerIsCreated(petShopFile, AbstractResourceMarkerTest.MARKER_TYPE, "Bean class or producer method or field specifies a @Typed annotation, and the value member specifies a class which does not correspond to a type in the unrestricted set of bean types of a bean", 9);
+ AbstractResourceMarkerTest.assertMarkerIsCreated(petShopFile, AbstractResourceMarkerTest.MARKER_TYPE, "Bean class or producer method or field specifies a @Typed annotation, and the value member specifies a class which does not correspond to a type in the unrestricted set of bean types of a bean", 25);
int markerNumbers = getMarkersNumber(petShopFile);
assertEquals("PetShop.java should has the only error marker.", markerNumbers, 1);
cleanProject("/lookup/typesafe/resolution");
@@ -33,9 +33,9 @@
* 2.7.1.3. Stereotype declares a non-empty @Named annotation (Non-Portable behavior)
*/
public void testNonEmptyNamedForStereotype() throws Exception {
- IProject p = importPreparedProject("/definition/stereotype");
+ IProject p = importPreparedProject("/tests/definition/stereotype");
IFile file = p.getFile("JavaSource/org/jboss/jsr299/tck/tests/definition/stereotype/broken/nonEmptyNamed/StereotypeWithNonEmptyNamed_Broken.java");
- AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Stereotype declares a non-empty @Named annotation", 15);
+ AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Stereotype declares a non-empty @Named annotation", 31);
int markerNumbers = getMarkersNumber(file);
assertEquals("StereotypeWithNonEmptyNamed_Broken.java should has the only error marker.", markerNumbers, 1);
cleanProject("/definition/stereotype");
@@ -45,9 +45,9 @@
* 2.7.1.3. Stereotype declares any other qualifier annotation
*/
public void testAnnotatedStereotype() throws Exception {
- IProject p = importPreparedProject("/definition/stereotype");
+ IProject p = importPreparedProject("/tests/definition/stereotype");
IFile file = p.getFile("JavaSource/org/jboss/jsr299/tck/tests/definition/stereotype/broken/withBindingType/StereotypeWithBindingTypes_Broken.java");
- AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Stereotype declares any qualifier annotation other than @Named", 14);
+ AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Stereotype declares any qualifier annotation other than @Named", 30);
int markerNumbers = getMarkersNumber(file);
assertEquals("StereotypeWithBindingTypes_Broken.java should has the only error marker.", markerNumbers, 1);
cleanProject("/definition/stereotype");
@@ -57,7 +57,7 @@
* 2.7.1.3. Stereotype is annotated @Typed
*/
public void testTypedStereotype() throws Exception {
- IProject p = importPreparedProject("/definition/stereotype");
+ IProject p = importPreparedProject("/tests/definition/stereotype");
IFile file = p.getFile("JavaSource/org/jboss/jsr299/tck/tests/definition/stereotype/broken/withBindingType/StereotypeWithTyped_Broken.java");
AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Stereotype is annotated @Typed", 15);
int markerNumbers = getMarkersNumber(file);
@@ -70,9 +70,9 @@
* - stereotype declares more than one scope
*/
public void testStereotypeScope() throws Exception {
- IProject p = importPreparedProject("/definition/stereotype");
+ IProject p = importPreparedProject("/tests/definition/stereotype");
IFile file = p.getFile("JavaSource/org/jboss/jsr299/tck/tests/definition/stereotype/broken/tooManyScopes/StereotypeWithTooManyScopeTypes_Broken.java");
- AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Stereotype declares more than one scope", 16, 17);
+ AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Stereotype declares more than one scope", 32, 33);
int markerNumbers = getMarkersNumber(file);
assertEquals("StereotypeWithTooManyScopeTypes_Broken.java should has two error markers.", markerNumbers, 2);
cleanProject("/definition/stereotype");
@@ -83,9 +83,9 @@
* - bean class or producer method or field specifies multiple scope type annotations
*/
public void testMultipleBeanScope() throws Exception {
- IProject p = importPreparedProject("/definition/scope");
+ IProject p = importPreparedProject("/tests/definition/scope");
IFile file = p.getFile("JavaSource/org/jboss/jsr299/tck/tests/definition/scope/broken/tooManyScopes/BeanWithTooManyScopeTypes_Broken.java");
- AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Bean class or producer method or field specifies multiple scope type annotations", 6, 7);
+ AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Bean class or producer method or field specifies multiple scope type annotations", 22, 23);
int markerNumbers = getMarkersNumber(file);
assertEquals("StereotypeWithTyped_Broken.java should has two error markers.", markerNumbers, 2);
cleanProject("/definition/scope");
@@ -97,9 +97,9 @@
* (there are two different stereotypes declared by the bean that declare different default scopes)
*/
public void testBeanWithMultipleScopedStereotypes() throws Exception {
- IProject p = importPreparedProject("/definition/stereotype");
+ IProject p = importPreparedProject("/tests/definition/stereotype");
IFile file = p.getFile("JavaSource/org/jboss/jsr299/tck/tests/definition/stereotype/broken/scopeConflict/Scallop_Broken.java");
- AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Bean does not explicitly declare a scope when there is no default scope", 8, 9);
+ AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, "Bean does not explicitly declare a scope when there is no default scope", 24, 25);
int markerNumbers = getMarkersNumber(file);
assertEquals("Scallop_Broken.java should has two error markers.", markerNumbers, 2);
cleanProject("/definition/stereotype");
Modified: trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/src/org/jboss/tools/cdi/text/ext/test/InjectedPointHyperlinkDetectorTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/src/org/jboss/tools/cdi/text/ext/test/InjectedPointHyperlinkDetectorTest.java 2010-02-26 19:51:29 UTC (rev 20520)
+++ trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/src/org/jboss/tools/cdi/text/ext/test/InjectedPointHyperlinkDetectorTest.java 2010-02-26 20:53:23 UTC (rev 20521)
@@ -33,7 +33,7 @@
import org.jboss.tools.common.text.ext.util.AxisUtil;
public class InjectedPointHyperlinkDetectorTest extends TCKTest {
- private static final String PROJECT_NAME = "/lookup/injectionpoint";
+ private static final String PROJECT_NAME = "/tests/lookup/injectionpoint";
private static final String FILE_NAME = "JavaSource/org/jboss/jsr299/tck/tests/lookup/injectionpoint/LoggerConsumer.java";
public static Test suite() {
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CATest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CATest.java 2010-02-26 19:51:29 UTC (rev 20520)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CATest.java 2010-02-26 20:53:23 UTC (rev 20521)
@@ -39,7 +39,7 @@
public CATest() {
super();
try {
- project = importPreparedProject("/lookup");
+ project = importPreparedProject("/tests/lookup");
Bundle ui = Platform.getBundle(UI_TEST_PLUGIN_ID);
String projectPath = project.getLocation().toString();
String resourcePath = FileLocator.resolve(ui.getEntry(RESOURCE_NAME)).getFile();
14 years, 10 months
JBoss Tools SVN: r20519 - trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common.
by jbosstools-commits@lists.jboss.org
Author: yzhishko
Date: 2010-02-26 12:22:51 -0500 (Fri, 26 Feb 2010)
New Revision: 20519
Modified:
trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleListener.java
trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleRuleContainer.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5954 - fixed
Modified: trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleListener.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleListener.java 2010-02-26 15:06:28 UTC (rev 20518)
+++ trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleListener.java 2010-02-26 17:22:51 UTC (rev 20519)
@@ -20,10 +20,12 @@
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.views.contentoutline.ContentOutline;
+import org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleDeclItem;
import org.eclipse.wst.sse.core.internal.provisional.INodeAdapter;
import org.eclipse.wst.sse.core.internal.provisional.INodeNotifier;
import org.jboss.tools.jst.css.CssPlugin;
+@SuppressWarnings("restriction")
public class CSSStyleListener implements ISelectionListener, INodeAdapter,
IPartListener {
@@ -148,6 +150,8 @@
public void notifyChanged(INodeNotifier notifier, int eventType,
Object changedFeature, Object oldValue, Object newValue, int pos) {
+ clearListeners(newValue);
+ clearListeners(oldValue);
Object[] array = listeners.getListeners();
for (int i = 0; i < array.length; i++) {
final ICSSViewListner l = (ICSSViewListner) array[i];
@@ -161,9 +165,22 @@
}
}
-
}
-
+
+ /*
+ * Fixed by yzhishko. See https://jira.jboss.org/jira/browse/JBIDE-5954.
+ */
+ private void clearListeners(Object node){
+ if (!(node instanceof ICSSStyleDeclItem)) {
+ return;
+ }
+ if (!(node instanceof INodeNotifier)) {
+ return;
+ }
+ ((INodeNotifier)node).removeAdapter(this);
+ ((INodeNotifier)node).addAdapter(this);
+ }
+
public void partActivated(IWorkbenchPart part) {
currentPart = part;
Object[] array = listeners.getListeners();
Modified: trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleRuleContainer.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleRuleContainer.java 2010-02-26 15:06:28 UTC (rev 20518)
+++ trunk/jst/plugins/org.jboss.tools.jst.css/src/org/jboss/tools/jst/css/common/CSSStyleRuleContainer.java 2010-02-26 17:22:51 UTC (rev 20519)
@@ -13,6 +13,7 @@
import java.util.HashMap;
import java.util.Map;
+import org.eclipse.wst.css.core.internal.provisional.document.ICSSNode;
import org.eclipse.wst.css.core.internal.provisional.document.ICSSNodeList;
import org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleDeclaration;
import org.eclipse.wst.sse.core.internal.provisional.INodeAdapter;
@@ -24,6 +25,7 @@
* @author Sergey Dzmitrovich
*
*/
+@SuppressWarnings("restriction")
public class CSSStyleRuleContainer extends StyleContainer {
private CSSStyleRule styleRule;
@@ -80,12 +82,46 @@
ICSSStyleDeclaration declaration = (ICSSStyleDeclaration) styleRule
.getStyle();
addNodeAdapter(declaration, adapter);
- ICSSNodeList nodeList = declaration.getChildNodes();
+ addNodeListenersForChildren(declaration, adapter);
+ }
+
+ /*
+ * Fixed by yzhishko. See https://jira.jboss.org/jira/browse/JBIDE-5954.
+ */
+ private void addNodeListenersForChildren(Object node, INodeAdapter adapter){
+ if (!(node instanceof ICSSNode)) {
+ return;
+ }
+ ICSSNode cssNode = (ICSSNode) node;
+ ICSSNodeList nodeList = cssNode.getChildNodes();
+ if (nodeList == null) {
+ return;
+ }
for (int i = 0; i < nodeList.getLength(); i++) {
- addNodeAdapter(nodeList.item(i), adapter);
+ ICSSNode cssChildNode = nodeList.item(i);
+ addNodeAdapter(cssChildNode, adapter);
+ addNodeListenersForChildren(cssChildNode, adapter);
}
-
}
+
+ /*
+ * Fixed by yzhishko. See https://jira.jboss.org/jira/browse/JBIDE-5954.
+ */
+ private void removeNodeListenersForChildren(Object node, INodeAdapter adapter){
+ if (!(node instanceof ICSSNode)) {
+ return;
+ }
+ ICSSNode cssNode = (ICSSNode) node;
+ ICSSNodeList nodeList = cssNode.getChildNodes();
+ if (nodeList == null) {
+ return;
+ }
+ for (int i = 0; i < nodeList.getLength(); i++) {
+ ICSSNode cssChildNode = nodeList.item(i);
+ removeNodeAdapter(cssChildNode, adapter);
+ removeNodeListenersForChildren(cssChildNode, adapter);
+ }
+ }
@Override
public void removeNodelListener(INodeAdapter adapter) {
@@ -93,11 +129,7 @@
ICSSStyleDeclaration declaration = (ICSSStyleDeclaration) styleRule
.getStyle();
removeNodeAdapter(declaration, adapter);
- ICSSNodeList nodeList = declaration.getChildNodes();
- for (int i = 0; i < nodeList.getLength(); i++) {
- removeNodeAdapter(nodeList.item(i), adapter);
- }
-
+ removeNodeListenersForChildren(declaration, adapter);
}
@Override
14 years, 10 months
JBoss Tools SVN: r20516 - branches/jbosstools-3.1.x/esb/plugins/org.jboss.tools.esb.core/resources/meta.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2010-02-26 09:26:46 -0500 (Fri, 26 Feb 2010)
New Revision: 20516
Modified:
branches/jbosstools-3.1.x/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta
Log:
https://jira.jboss.org/jira/browse/JBIDE-5552
Modified: branches/jbosstools-3.1.x/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta
===================================================================
--- branches/jbosstools-3.1.x/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta 2010-02-26 14:23:31 UTC (rev 20515)
+++ branches/jbosstools-3.1.x/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta 2010-02-26 14:26:46 UTC (rev 20516)
@@ -2676,7 +2676,7 @@
<XModelAttribute PROPERTIES="category=general;id=true" name="index">
<Constraint loader="Int"/>
</XModelAttribute>
- <XModelAttribute PROPERTIES="category=general" name="name" xmlname="text"/>
+ <XModelAttribute PROPERTIES="category=general" name="name" xmlname="#text"/>
<XModelAttribute PROPERTIES="category=general" name="type" xmlname="type">
<Editor name="AccessibleJava"/>
</XModelAttribute>
14 years, 10 months
JBoss Tools SVN: r20515 - trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2010-02-26 09:23:31 -0500 (Fri, 26 Feb 2010)
New Revision: 20515
Modified:
trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta
Log:
https://jira.jboss.org/jira/browse/JBIDE-5552
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta 2010-02-26 13:55:38 UTC (rev 20514)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/resources/meta/esb-actions.meta 2010-02-26 14:23:31 UTC (rev 20515)
@@ -2676,7 +2676,7 @@
<XModelAttribute PROPERTIES="category=general;id=true" name="index">
<Constraint loader="Int"/>
</XModelAttribute>
- <XModelAttribute PROPERTIES="category=general" name="name" xmlname="text"/>
+ <XModelAttribute PROPERTIES="category=general" name="name" xmlname="#text"/>
<XModelAttribute PROPERTIES="category=general" name="type" xmlname="type">
<Editor name="AccessibleJava"/>
</XModelAttribute>
14 years, 10 months