All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.client.widget.grid.EventCellReference Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 8.27.1
Show newest version
/*
 * Copyright 2000-2014 Vaadin Ltd.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.vaadin.client.widget.grid;

import com.google.gwt.dom.client.TableCellElement;
import com.vaadin.client.widget.escalator.Cell;
import com.vaadin.client.widgets.Grid;
import com.vaadin.client.widgets.Grid.Column;
import com.vaadin.client.widgets.Grid.Section;

/**
 * A data class which contains information which identifies a cell being the
 * target of an event from {@link Grid}.
 * 

* Since this class follows the Flyweight-pattern any instance of * this object is subject to change without the user knowing it and so should * not be stored anywhere outside of the method providing these instances. * * @since 7.4 * @author Vaadin Ltd */ public class EventCellReference extends CellReference { private Section section; private TableCellElement element; public EventCellReference(Grid grid) { super(new RowReference(grid)); } /** * Sets the RowReference and CellReference to point to given Cell. * * @param targetCell * cell to point to */ public void set(Cell targetCell, Section section) { Grid grid = getGrid(); int row = targetCell.getRow(); int columnIndexDOM = targetCell.getColumn(); Column column = grid.getVisibleColumns().get(columnIndexDOM); // Row objects only make sense for body section of Grid. T rowObject; if (section == Section.BODY) { rowObject = grid.getDataSource().getRow(row); } else { rowObject = null; } // At least for now we don't need to have the actual TableRowElement // available. getRowReference().set(row, rowObject, null); int columnIndex = grid.getColumns().indexOf(column); set(columnIndexDOM, columnIndex, column); this.element = targetCell.getElement(); this.section = section; } @Override public TableCellElement getElement() { return element; } /** * Is the cell reference for a cell in the header of the Grid. * * @since 7.5 * @return true if referenced cell is in the header, * false if not */ public boolean isHeader() { return section == Section.HEADER; } /** * Is the cell reference for a cell in the body of the Grid. * * @since 7.5 * @return true if referenced cell is in the body, * false if not */ public boolean isBody() { return section == Section.BODY; } /** * Is the cell reference for a cell in the footer of the Grid. * * @since 7.5 * @return true if referenced cell is in the footer, * false if not */ public boolean isFooter() { return section == Section.FOOTER; } /** * Gets the Grid section where the referenced cell is. * * @since 7.5 * @return grid section */ public Section getSection() { return section; } }