blob: 7413594ef1dedd6ebbe0ee51bd87df545de9538d [file] [log] [blame]
package org.eclipse.stem.analysis.automaticexperiment.ui;
import org.eclipse.emf.edit.provider.ComposedAdapterFactory;
/**
* This class represents
*/
public interface AlgorithmCompositeEditorAdapterFactory {
AlgorithmCompositeEditorAdapterFactoryImpl INSTANCE = new AlgorithmCompositeEditorAdapterFactoryImpl();
public class AlgorithmCompositeEditorAdapterFactoryImpl extends
ComposedAdapterFactory implements
AlgorithmCompositeEditorAdapterFactory {
@Override
public boolean isFactoryForType(Object type) {
return type == AlgorithmCompositeEditorAdapter.class;
}
}
}