blob: 024bb3adeeac2b42f86e6a216d44289c9d4f7f8f [file] [log] [blame]
// DiseaseModelPropertyEditorAdapterFactory.java
package org.eclipse.stem.ui.adapters.loggerpropertyeditor;
/******************************************************************************
* 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.edit.provider.ComposedAdapterFactory;
/**
* This class represents
*/
public interface LoggerPropertyEditorAdapterFactory {
LoggerPropertyEditorAdapterFactoryImpl INSTANCE = new LoggerPropertyEditorAdapterFactoryImpl();
public class LoggerPropertyEditorAdapterFactoryImpl extends
ComposedAdapterFactory implements
LoggerPropertyEditorAdapterFactory {
@Override
public boolean isFactoryForType(Object type) {
return type == LoggerPropertyEditorAdapter.class;
}
} // DiseaseModelPropertyEditorAdapterFactoryImpl
} // DiseaseModelPropertyEditorAdapterFactory