blob: f76c5df074184f815058f8424e81eab92d9e8cd7 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2011 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
*******************************************************************************/
package org.eclipse.stem.ui.adapters.loggerpropertyeditor;
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;
}
}
}