blob: 9e3b8aa876e553797295bfb860c1fdf1f858d252 [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.foodproduction.presentation;
import org.eclipse.core.resources.IProject;
import org.eclipse.stem.foodproduction.FoodTransformer;
import org.eclipse.stem.ui.editors.GenericPropertyEditor;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.widgets.Composite;
@SuppressWarnings("all")
abstract public class FoodProductionPropertyEditor extends GenericPropertyEditor {
public FoodProductionPropertyEditor(Composite parent, int style, IProject project) {
super(parent,style, project);
}
public FoodProductionPropertyEditor(final Composite parent, final int style,
final FoodTransformer foodTransformer,
final ModifyListener projectValidator, IProject project) {
super(parent, style, foodTransformer, projectValidator, project);
}
} // PopulationModelPropertyEditor