blob: 379d03686e38f6b856b1a7c2c6537839810c94fd [file] [log] [blame]
// DiseaseModelPropertyEditorAdapterFactory.java
package org.eclipse.stem.ui.populationmodels.adapters;
/******************************************************************************
* Copyright (c) 2010 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.edit.provider.ComposedAdapterFactory;
/**
* This class represents
*/
public interface PopulationInitializerPropertyEditorAdapterFactory {
PopulationInitializerPropertyEditorAdapterFactoryImpl INSTANCE = new PopulationInitializerPropertyEditorAdapterFactoryImpl();
public class PopulationInitializerPropertyEditorAdapterFactoryImpl extends
ComposedAdapterFactory implements
PopulationInitializerPropertyEditorAdapterFactory {
@Override
public boolean isFactoryForType(Object type) {
return type == PopulationInitializerPropertyEditorAdapter.class;
}
}
}