blob: 5e0854c2548190edae82fee6a332f7523e4ed8d9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Neil Bartlett.
* 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:
* Neil Bartlett - initial API and implementation
*******************************************************************************/
package aQute.bnd.build.model.clauses;
import org.osgi.framework.Constants;
import aQute.libg.header.Attrs;
public class ImportPattern extends VersionedClause implements Cloneable {
public ImportPattern(String pattern, Attrs attributes) {
super(pattern, attributes);
}
public boolean isOptional() {
String resolution = attribs.get(aQute.lib.osgi.Constants.RESOLUTION_DIRECTIVE);
return Constants.RESOLUTION_OPTIONAL.equals(resolution);
}
public void setOptional(boolean optional) {
if (optional)
attribs.put(aQute.lib.osgi.Constants.RESOLUTION_DIRECTIVE, Constants.RESOLUTION_OPTIONAL);
else
attribs.remove(aQute.lib.osgi.Constants.RESOLUTION_DIRECTIVE);
}
@Override
public ImportPattern clone() {
return new ImportPattern(this.name, new Attrs(this.attribs));
}
}