blob: 2337a23890fe2cc8ea4f8e9eeb9e6c3b28016ac7 [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.runtime.web.ecview.presentation.vaadin.common;
import org.eclipse.osbp.ecview.core.common.editpart.IEmbeddableEditpart;
import org.eclipse.osbp.ecview.core.common.presentation.IWidgetPresentation;
import org.eclipse.osbp.runtime.common.validation.IStatus;
import com.vaadin.ui.Component;
import com.vaadin.ui.Embedded;
/**
* An abstract implementation of the {@link IWidgetPresentation}. Special for
* {@link Embedded} vaadin elements.
*/
public abstract class AbstractEmbeddedWidgetPresenter<A extends Component>
extends AbstractVaadinWidgetPresenter<A> implements
IWidgetPresentation<A> {
public AbstractEmbeddedWidgetPresenter(IEmbeddableEditpart editpart) {
super(editpart);
}
}