Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/ValueTokenizer.java')
-rw-r--r--bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/ValueTokenizer.java76
1 files changed, 0 insertions, 76 deletions
diff --git a/bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/ValueTokenizer.java b/bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/ValueTokenizer.java
deleted file mode 100644
index 51032b155..000000000
--- a/bundles/org.eclipse.equinox.metatype/src/org/eclipse/equinox/metatype/ValueTokenizer.java
+++ /dev/null
@@ -1,76 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 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
- *******************************************************************************/
-package org.eclipse.equinox.metatype;
-
-import java.util.Vector;
-
-public class ValueTokenizer {
-
- private static final char SEPARATE = ',';
- private static final char CONTROL = '\\';
-
- Vector _value_vector = new Vector(7);
-
- /*
- * Constructor of class ValueTokenizer
- */
- public ValueTokenizer(String values_str) {
-
- if (values_str != null) {
-
- StringBuffer buffer = new StringBuffer(""); //$NON-NLS-1$
- for (int i = 0; i < values_str.length(); i++) {
- if (values_str.charAt(i) == CONTROL) {
- if (i + 1 < values_str.length()) {
- buffer.append(values_str.charAt(++i));
- continue;
- }
- // CONTROL char should not occur in last char.
- Logging.log(Logging.ERROR, this, "ValueTokenizer(String)", //$NON-NLS-1$
- MetaTypeMsg.TOKENIZER_GOT_INVALID_DATA);
- // It's an invalid char, but since it's the last one,
- // just ignore it.
- continue;
- }
- if (values_str.charAt(i) == SEPARATE) {
- _value_vector.addElement(buffer.toString().trim());
- buffer = new StringBuffer(""); //$NON-NLS-1$
- continue;
- }
- buffer.append(values_str.charAt(i));
- }
- // Don't forget the final one.
- _value_vector.addElement(buffer.toString().trim());
- }
- }
-
- /*
- * Method to return values as Vector.
- */
- public Vector getValuesAsVector() {
- return _value_vector;
- }
-
- /*
- * Method to return values as String[] or null.
- */
- public String[] getValuesAsArray() {
-
- String[] value_array = null;
- if ((_value_vector != null) && (_value_vector.size() != 0)) {
-
- value_array = new String[_value_vector.size()];
- _value_vector.toArray(value_array);
- }
-
- return value_array;
- }
-}

Back to the top