blob: 99ea5d2fd61b312d280daf5738465f6a72022594 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.extension.editparts.emf.components;
import org.eclipse.osbp.ecview.core.common.editpart.emf.FieldEditpart;
import org.eclipse.osbp.ecview.extension.editparts.components.II18nComboBoxEditpart;
import org.eclipse.osbp.ecview.extension.model.YECviewPackage;
import org.eclipse.osbp.ecview.extension.model.YI18nComboBox;
/**
* The implementation of the IUiComboBoxEditpart.
*/
public class I18nComboBoxEditpart extends FieldEditpart<YI18nComboBox>
implements II18nComboBoxEditpart {
public I18nComboBoxEditpart() {
super(YECviewPackage.Literals.YI1_8N_COMBO_BOX__DATATYPE);
}
}