blob: 7359402d31fa774e1d4a0779b3420397e13822a5 [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 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.web.ecview.services.vaadin;
import java.util.Map;
import org.eclipse.osbp.ecview.core.common.model.core.YView;
import org.eclipse.osbp.dsl.semantic.dto.LDto;
// TODO: Auto-generated Javadoc
/**
* The Interface ILDtoRenderStrategy.
*/
public interface ILDtoRenderStrategy {
/**
* Renders an YView for the given parameters.
*
* @param lDto
* - the dto model
* @param dtoClass
* - the class of the dto
* @param dtoInstance
* - the dto instance. May be <code>null</code>.
* @param beanSlots
* - the bean slot that should be initialzed.
* @return the y view
*/
YView render(LDto lDto, Class<?> dtoClass, Object dtoInstance,
Map<String, Object> beanSlots);
}