Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/wizard/TypeSelectionMetadata.java')
-rw-r--r--core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/wizard/TypeSelectionMetadata.java84
1 files changed, 84 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/wizard/TypeSelectionMetadata.java b/core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/wizard/TypeSelectionMetadata.java
new file mode 100644
index 000000000..8275acc8c
--- /dev/null
+++ b/core/bundles/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/wizard/TypeSelectionMetadata.java
@@ -0,0 +1,84 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ * yyyymmdd bug Email and other contact information
+ * -------- -------- -----------------------------------------------------------
+ * 20060216 127138 pmoogk@ca.ibm.com - Peter Moogk
+ *******************************************************************************/
+
+package org.eclipse.jst.ws.internal.consumption.ui.wizard;
+
+import com.ibm.icu.util.StringTokenizer;
+
+
+ //
+ // This class holds the set of distinguishing factors in determining
+ // the default Web service type. The default Web Service type will be determined
+ // by pattern matching the initial selection with the supported extension
+ // and the resource type metadata specified in the manifest file.
+ //
+ public class TypeSelectionMetadata
+ {
+ // Copyright
+ public static final String copyright = "(c) Copyright IBM Corporation 2000, 2002.";
+
+ public String[] extensionMeta;
+ public String[] resourceTypeMeta;
+
+ public TypeSelectionMetadata(String extensionMD, String resourceTypeMD)
+ {
+ setExtensionMetadata(extensionMD);
+ setResourceTypeMetadata(resourceTypeMD);
+ }
+
+ public void setExtensionMetadata(String extensionMetadata)
+ {
+ StringTokenizer st = new StringTokenizer(extensionMetadata);
+ extensionMeta = new String[st.countTokens()];
+ int i=0;
+ while (st.hasMoreElements())
+ {
+ String exten = (String)st.nextToken();
+ if (exten!=null)
+ {
+ extensionMeta[i]=exten;
+ }
+ i++;
+ }
+
+ }
+
+ public String[] getExtensionMetadata()
+ {
+ return extensionMeta;
+ }
+
+ public void setResourceTypeMetadata(String resourceTypeMetadata)
+ {
+ StringTokenizer st = new StringTokenizer(resourceTypeMetadata);
+ resourceTypeMeta = new String[st.countTokens()];
+ int i=0;
+ while (st.hasMoreElements())
+ {
+ String resourceType = (String)st.nextToken();
+ if (resourceType!=null)
+ {
+ resourceTypeMeta[i]=resourceType;
+ }
+ i++;
+ }
+ }
+
+ public String[] getResourceTypeMetadata()
+ {
+ return resourceTypeMeta;
+ }
+
+ }
+

Back to the top