blob: 56a61c94121a5e91ed4af1bf8a153210456ba809 [file] [log] [blame]
package org.eclipse.stem.ui.interventions.adapters;
/*******************************************************************************
* Copyright (c) 2008 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
*******************************************************************************/
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.stem.interventions.util.InterventionsAdapterFactory;
import org.eclipse.stem.ui.graphgenerators.adapters.graphgeneratorpropertyeditor.GraphGeneratorPropertyEditorAdapter;
import org.eclipse.stem.ui.graphgenerators.adapters.graphgeneratorpropertyeditor.IGraphGeneratorPropertyEditorAdapterFactory;
public class ControlGraphGeneratorPropertyEditorAdapterFactory extends
InterventionsAdapterFactory implements
IGraphGeneratorPropertyEditorAdapterFactory {
public ControlGraphGeneratorPropertyEditorAdapterFactory() {
super();
ControlGraphGeneratorPropertyEditorAdapterFactory.INSTANCE
.addAdapterFactory(this);
}
@Override
public Adapter createControlGraphGeneratorAdapter() {
return new ControlGraphGeneratorPropertyEditorAdapter();
}
public boolean isFactoryForType(Object type) {
return type == GraphGeneratorPropertyEditorAdapter.class
|| super.isFactoryForType(type);
}
} // StandardGraphGeneratorPropertyEditorAdapterFactory