/*******************************************************************************
* Copyright (c) 2006, G. Weirich and Elexis
* 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:
* G. Weirich - initial implementation
*
*******************************************************************************/
package ch.elexis.tarmedprefs;
import org.eclipse.jface.preference.PreferencePage;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;
import ch.elexis.core.ui.preferences.inputs.MultiplikatorEditor;
public class LaborleistungPrefs extends PreferencePage implements IWorkbenchPreferencePage {
@Override
protected Control createContents(final Composite parent){
return new MultiplikatorEditor(parent, "EAL"); //$NON-NLS-1$
}
public void init(final IWorkbench workbench){
}
}