blob: af7831b8aa12ca822717e0cab59c0e431415ad18 [file] [log] [blame]
// EstimatorFactory.java
package org.eclipse.stem.util.analysis.views;
/*******************************************************************************
* Copyright (c) 2007, 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.swt.widgets.Composite;
/**
* This class is a factory for creating {@link AnalysisControl} instances.
*/
public class EpidemicFactory implements AnalysisControlFactory {
/**
* public INSTANCE for this Factory
*/
public static EpidemicFactory INSTANCE = new EpidemicFactory();
/**
* Constants
*/
public static final String ANALYSIS_TYPE = "Aggregate";
/**
*
* @param parent
* @param dirName
* @return new EstimatorControl()
*/
public AnalysisControl create(final Composite parent, String dirName) {
return new EpidemicControl(parent);
}
/**
* @return type of analysis
*
*/
public String getControlType() {
return ANALYSIS_TYPE;
}
} // EstimatorFactory