blob: 9dbcb0160d5e41503c63e187d0d2f771c85f2bb9 [file] [log] [blame]
/**
* Copyright (c) 2011 - 2017, Lunifera GmbH (Gross Enzersdorf), Loetz GmbH&Co.KG (Heidelberg)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Loetz GmbH&Co.KG - Initial implementation
*/
package org.eclipse.osbp.display.api;
import java.util.Map;
import com.vaadin.ui.CustomComponent;
@SuppressWarnings("serial")
public class AbstractDisplayView extends CustomComponent {
public void sendData(Map<String, Object> data) {
}
public void init(){
}
}