blob: 81747a0c0d0ff88c088a5b73856ebecc9bf1c0df [file] [log] [blame]
/*
* $Id: StringSet.java 44 2007-07-13 20:49:41Z hargrave@us.ibm.com $
*
* Copyright (c) OSGi Alliance (2002, 2006, 2007). All Rights Reserved.
*
* 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.osgi.impl.bundle.obr.resource;
import java.util.*;
import aQute.bnd.annotation.ProviderType;
@ProviderType
public class StringSet extends HashSet {
static final long serialVersionUID = 1L;
public StringSet(String set) {
StringTokenizer st = new StringTokenizer(set, ",");
while (st.hasMoreTokens())
add(st.nextToken().trim());
}
}