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

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

Introduction

In this page you can find the example usage for com.google.gwt.dom.client TableSectionElement 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();
    }//  www. j a  v a 2s.  c om
    return parent;
}