Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpmoogk2007-12-10 19:11:53 +0000
committerpmoogk2007-12-10 19:11:53 +0000
commit71e26180fb7adbd3736e7f146ae15925c2705679 (patch)
tree82961999af58d98ec93e5fc4ea2866acbb0d5746 /bundles
parentebff31d937caf563915e156d8ef4cffa5a48c0d7 (diff)
downloadwebtools.webservices-71e26180fb7adbd3736e7f146ae15925c2705679.tar.gz
webtools.webservices-71e26180fb7adbd3736e7f146ae15925c2705679.tar.xz
webtools.webservices-71e26180fb7adbd3736e7f146ae15925c2705679.zip
[209858] Initial development of this feature.
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.wst.ws.service.policy.ui/src/org/eclipse/wst/ws/internal/service/policy/ui/ServicePolicyRegistryUI.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.wst.ws.service.policy.ui/src/org/eclipse/wst/ws/internal/service/policy/ui/ServicePolicyRegistryUI.java b/bundles/org.eclipse.wst.ws.service.policy.ui/src/org/eclipse/wst/ws/internal/service/policy/ui/ServicePolicyRegistryUI.java
index 175a2cc89..cb1f6891d 100644
--- a/bundles/org.eclipse.wst.ws.service.policy.ui/src/org/eclipse/wst/ws/internal/service/policy/ui/ServicePolicyRegistryUI.java
+++ b/bundles/org.eclipse.wst.ws.service.policy.ui/src/org/eclipse/wst/ws/internal/service/policy/ui/ServicePolicyRegistryUI.java
@@ -114,10 +114,9 @@ public class ServicePolicyRegistryUI
}
else if( name.equals( "selection" ) ) //$NON-NLS-1$
{
- String iconValue = RegistryUtils.getAttribute( child, "icon" ); //$NON-NLS-1$
+ String iconValue = RegistryUtils.getAttribute( child, "icon" ); //$NON-NLS-1$
selection = true;
- enumId = "org.eclipse.wst.service.policy.booleanEnum"; //$NON-NLS-1$
if( iconValue != null && iconValue.equalsIgnoreCase( "true" ) ) //$NON-NLS-1$
{
@@ -207,6 +206,7 @@ public class ServicePolicyRegistryUI
if( selection )
{
+ operation.setEnumerationId( "org.eclipse.wst.service.policy.booleanEnum" ); //$NON-NLS-1$
operation.setSelection( icon );
}

Back to the top