资 源 简 介
Using this library you are able to access any private properties/methods in any classes or objects only in few lines of code.
Usage sample:
public class MyClass {
private String prefix;
private void test(String x) {
System.out.println(prefix + " " + x);
}
private static String stPrefix;
private static String getMessage(String message) {
return stPrefix + message;
}
}
public interface OpenMethod {
void test(String x);
}
public interface OpenField {
void setPrefix(String prefix);
String getPrefix();
}
public interface StOpenMethod {
String getMessage(String message)
}
public interface StOpenField {
void setStPrefix(String prefix);
String getStPrefix();
}