Example usage for com.google.gwt.dom.client TableRowElement hasAttribute

List of usage examples for com.google.gwt.dom.client TableRowElement hasAttribute

Introduction

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

Prototype

@Override
    public boolean hasAttribute(String name) 

Source Link

Usage

From source file:org.rstudio.studio.client.common.compile.errorlist.CompileErrorItemCodec.java

License:Open Source License

@Override
public boolean isValueRow(TableRowElement row) {
    return row.hasAttribute(DATA_LINE);
}

From source file:org.rstudio.studio.client.workbench.views.output.find.FindOutputCodec.java

License:Open Source License

@Override
protected boolean needsBreak(TableRowElement prevRow, TableRowElement row) {
    if (!row.hasAttribute(DATA_FILE))
        return false;

    return prevRow == null || !prevRow.getAttribute(DATA_FILE).equals(row.getAttribute(DATA_FILE));
}

From source file:org.rstudio.studio.client.workbench.views.output.find.FindOutputCodec.java

License:Open Source License

@Override
public boolean isValueRow(TableRowElement row) {
    return row.hasAttribute(DATA_FILE);
}