blob: f11297346295c185b279e613f854bf1b27031bef [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:
* Eugen - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.model.internal.fx;
import org.eclipse.emf.ecp.view.model.common.AbstractGridCell;
import org.eclipse.emf.ecp.view.spi.model.VElement;
/**
* A {@link GridCellFX} has a row, a column and a JavaFX renderer it is rendered by.
*
* @author Eugen Neufeld
*
*/
public class GridCellFX extends AbstractGridCell<RendererFX<?>> {
/**
* Default constructor to create a grid cell.
*
* @param row the row of the cell
* @param column the column of the cell
* @param renderer the {@link RendererFX} that renders the cell
*/
public GridCellFX(int row, int column, RendererFX<? extends VElement> renderer) {
super(row, column, renderer);
}
}