Example usage for com.google.gwt.dom.client TableCellElement is

List of usage examples for com.google.gwt.dom.client TableCellElement is

Introduction

In this page you can find the example usage for com.google.gwt.dom.client TableCellElement is.

Prototype

public static boolean is(Node node) 

Source Link

Document

Determine whether the given Node can be cast to this class.

Usage

From source file:org.drools.guvnor.client.decisiontable.cells.AbstractPopupEditCell.java

License:Apache License

private Element getTableCellElementAncestor(Element e) {
    Element parent = e.getParentElement();
    while (!TableSectionElement.is(parent) && !TableCellElement.is(parent)) {
        parent = parent.getParentElement();
    }//from  w w  w .  j  a  v  a2s . c om
    return parent;
}