List of usage examples for com.google.gwt.dom.client TableCellElement is
public static boolean is(Node node)
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; }