blob: 324c6f82328b596271981684ef499fb733f974d2 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.pattern.query;
import org.eclipse.egf.core.platform.pde.IPlatformBundle;
import org.eclipse.egf.core.platform.pde.IPlatformExtensionPointFactory;
import org.eclipse.egf.core.platform.pde.PlatformExtensionPointURI;
import org.eclipse.pde.core.plugin.IPluginAttribute;
import org.eclipse.pde.core.plugin.IPluginElement;
/**
* @author Thomas Guiu
*
*/
public class QueryFactory implements IPlatformExtensionPointFactory<QueryKind> {
private static final String ID_ATTR = "id";
private static final String CLASS_ATTR = "class";
private static final String NAME_ATTR = "name";
public QueryKind createExtensionPoint(IPlatformBundle platformBundle, IPluginElement pluginElement) {
IPluginAttribute idAttr = pluginElement.getAttribute(ID_ATTR);
IPluginAttribute classAttr = pluginElement.getAttribute(CLASS_ATTR);
IPluginAttribute nameAttr = pluginElement.getAttribute(NAME_ATTR);
return new QueryKindImpl(platformBundle, pluginElement, idAttr.getValue(), classAttr.getValue(), nameAttr.getValue());
}
private static class QueryKindImpl extends PlatformExtensionPointURI implements QueryKind {
private final String className;
private final String name;
public QueryKindImpl(IPlatformBundle bundle, IPluginElement element, String id, String className, String name) {
super(bundle, element, id);
this.className = className;
this.name = name;
}
public String getClassName() {
return className;
}
public String getName() {
return name;
}
}
}