blob: 10a79bc99439446518c64009890f7ed8438bdd0b [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2008,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.wizards;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.stem.loggers.csv.util.CSVAdapterFactory;
import org.eclipse.stem.ui.adapters.loggerpropertyeditor.LoggerPropertyEditorAdapter;
import org.eclipse.stem.ui.adapters.loggerpropertyeditor.LoggerPropertyEditorAdapterFactory;
public class CSVLoggerPropertyEditorAdapterFactory extends
CSVAdapterFactory implements
LoggerPropertyEditorAdapterFactory {
public CSVLoggerPropertyEditorAdapterFactory() {
super();
LoggerPropertyEditorAdapterFactory.INSTANCE
.addAdapterFactory(this);
}
@Override
public Adapter createSimulationLoggerAdapter() {
return new CSVLoggerPropertyEditorAdapter();
}
public boolean isFactoryForType(Object type) {
return type == LoggerPropertyEditorAdapter.class
|| super.isFactoryForType(type);
}
}