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

com.googlecode.gwt.test.internal.patchers.StyleInjectorPatcher 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.StyleInjector;
import com.googlecode.gwt.test.patchers.PatchClass;
import com.googlecode.gwt.test.patchers.PatchMethod;

@PatchClass(StyleInjector.class)
class StyleInjectorPatcher {

    @PatchMethod
    static void inject(String css, boolean immediate) {

    }

    @PatchMethod
    static void injectAtEnd(String css, boolean immediate) {

    }

    @PatchMethod
    static void injectAtStart(String css, boolean immediate) {

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy