blob: f5554701b0a051d699b8aa14d7bcf6309f9b8aff [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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(){
}
}