java方法注释可以获取方法的参数并将新参数传递给方法吗?

时间:2016-05-12 02:11:22

标签: java annotations

我想要有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方法注释,因为我找不到有关注释的示例来访问方法和类的参数。而且我也找不到该方法的注释传递参数的例子。

0 个答案:

没有答案