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

com.meituan.robust.patch.annotaion.Modify Maven / Gradle / Ivy

The newest version!
package com.meituan.robust.patch.annotaion;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * desc:annotaion used for modify classes or methods,classes and methods will be packed into patch.jar/patch.apk
 * copy from Robust
 * email: [email protected]
 */
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.TYPE, ElementType.CONSTRUCTOR})
@Retention(RetentionPolicy.CLASS)
@Documented
public @interface Modify {
    String value() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy