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

com.googlecode.gwt.test.internal.patchers.HTMLTableRowFormatterPatcher Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test.internal.patchers;

import com.google.gwt.user.client.Element;
import com.google.gwt.user.client.ui.HTMLTable.RowFormatter;
import com.googlecode.gwt.test.patchers.PatchClass;
import com.googlecode.gwt.test.patchers.PatchMethod;

@PatchClass(RowFormatter.class)
class HTMLTableRowFormatterPatcher {

    @PatchMethod
    static Element getRow(RowFormatter rowFormatter, Element elem, int row) {
        return elem.getChildNodes().getItem(row).cast();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy