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

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

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

import com.googlecode.gwt.test.patchers.InitMethod;
import com.googlecode.gwt.test.patchers.PatchClass;
import javassist.CtClass;

import java.lang.reflect.Modifier;

@PatchClass(target = "com.google.common.collect.GwtTransient")
public class GwtTransientPatcher {

    @InitMethod
    static void init(CtClass ctClass) {
        // set GwtTransient class public
        ctClass.setModifiers(ctClass.getModifiers() + Modifier.PUBLIC);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy