blob: 125830fc67f1b04fdcd562fe4022a4f117ec1ae0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* 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:
* Lucas - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.label.fx;
import org.eclipse.emf.ecp.view.model.internal.fx.GridCellFX;
import org.eclipse.emf.ecp.view.model.internal.fx.GridDescriptionFX;
import org.eclipse.emf.ecp.view.model.internal.fx.GridDescriptionFXFactory;
import org.eclipse.emf.ecp.view.model.internal.fx.RendererFX;
import org.eclipse.emf.ecp.view.spi.context.ViewModelContext;
import org.eclipse.emf.ecp.view.spi.label.model.VLabel;
import org.eclipse.emf.ecp.view.spi.model.VElement;
import org.eclipse.emf.ecp.view.spi.renderer.NoPropertyDescriptorFoundExeption;
import org.eclipse.emf.ecp.view.spi.renderer.NoRendererFoundException;
import org.eclipse.emfforms.spi.common.report.ReportService;
import javafx.scene.Node;
import javafx.scene.control.Label;
/**
* @author Lucas Koehler
*
*/
public class LabelRendererFX extends RendererFX<VLabel> {
/**
* Default constructor.
*
* @param vElement the {@link VElement} to be rendered
* @param viewContext the {@link ViewModelContext} to use
* @param reportService The {@link ReportService} to use
*/
public LabelRendererFX(VLabel vElement, ViewModelContext viewContext, ReportService reportService) {
super(vElement, viewContext, reportService);
}
private GridDescriptionFX gridDescription;
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.ecp.view.model.internal.fx.RendererFX#getGridDescription()
*/
@Override
public GridDescriptionFX getGridDescription() {
if (gridDescription == null) {
gridDescription = GridDescriptionFXFactory.INSTANCE.createSimpleGrid(1, 1, this);
}
return gridDescription;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.ecp.view.model.internal.fx.RendererFX#renderNode(org.eclipse.emf.ecp.view.model.internal.fx.GridCellFX)
*/
@Override
protected Node renderNode(GridCellFX cell) throws NoRendererFoundException, NoPropertyDescriptorFoundExeption {
final Label label = new Label();
if (getVElement().getName() != null) {
label.setText(getVElement().getName());
}
return label;
}
}