我想要有ParameterParser,它有助于处理方法参数和类变量,然后将处理过的参数放入方法的ParameterWrapper中。
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ParameterParser {
// get the method's and its parent class's parameters
}
public class anyclass {
@ParameterParser
public void anymethod() {
// get a ParameterWrapper from @ParameterParser
}
}
我不确定是否可以使用java方法注释,因为我找不到有关注释的示例来访问方法和类的参数。而且我也找不到该方法的注释传递参数的例子。