blob: 9377000cd30620db812a6eb1c80387778881ab3d [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.library.edit;
import com.ibm.uma.MethodConfiguration;
/**
* @author Phong Nguyen Le
* @since 1.0
*/
public abstract class AbstractConfiguratorFactory implements
IConfiguratorFactory {
public AbstractConfiguratorFactory() {
super();
}
/*
* (non-Javadoc)
*
* @see com.ibm.library.edit.IConfiguratorFactory#createConfigurator(com.ibm.uma.MethodConfiguration)
*/
public IConfigurator createConfigurator(MethodConfiguration config) {
return null;
}
}