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

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

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

import com.google.gwt.dom.client.Element;
import com.google.gwt.user.client.ui.impl.FocusImpl;
import com.googlecode.gwt.test.patchers.PatchClass;
import com.googlecode.gwt.test.patchers.PatchMethod;

@PatchClass(FocusImpl.class)
class FocusImplPatcher {

    @PatchMethod
    static void blur(FocusImpl focusImpl, Element element) {

    }

    @PatchMethod
    static void focus(FocusImpl focusImpl, Element element) {

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy