mirror of
https://github.com/Katana-Official/SPatch-Update.git
synced 2026-03-21 05:19:45 +08:00
18 lines
541 B
Java
18 lines
541 B
Java
package com.swift.sandhook.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.METHOD})
|
|
public @interface HookMethod {
|
|
String value() default "<init>";
|
|
}
|
|
|
|
|
|
/* Location: C:\User\\user\Desktop\classes-dex2jar.jar!\com\swift\sandhook\annotation\HookMethod.class
|
|
* Java compiler version: 6 (50.0)
|
|
* JD-Core Version: 1.1.1
|
|
*/ |