/* * Copyright (c) 2015 Data Harmonisation Panel * * All rights reserved. This program and the accompanying materials are made * available under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * You should have received a copy of the GNU Lesser General Public License * along with this distribution. If not, see <http://www.gnu.org/licenses/>. * * Contributors: * Data Harmonisation Panel <http://www.dhpanel.eu> */ package eu.esdihumboldt.hale.ui.functions.custom.pages; import org.eclipse.swt.widgets.Composite; import eu.esdihumboldt.hale.ui.HaleWizardPage; import eu.esdihumboldt.hale.ui.functions.custom.CustomPropertyFunctionWizard; /** * TODO Type description * * @author Simon Templer */ public class CustomFunctionParameterPage extends HaleWizardPage<CustomPropertyFunctionWizard> implements CustomFunctionWizardPage { /** * Default constructor. */ public CustomFunctionParameterPage() { super("parameters"); // TODO Auto-generated constructor stub } /** * @see eu.esdihumboldt.hale.ui.functions.custom.pages.CustomFunctionWizardPage#apply() */ @Override public void apply() { // TODO Auto-generated method stub } /** * @see eu.esdihumboldt.hale.ui.HaleWizardPage#createContent(org.eclipse.swt.widgets.Composite) */ @Override protected void createContent(Composite page) { // TODO Auto-generated method stub } }