如何在方法块中找到特定的带注释参数并在该方法块中生成代码?

时间:2017-08-08 11:53:22

标签: java annotations annotation-processing

我目前正在编写一个注释处理器,我希望它在其中扫描其参数注释为@Override public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { for (Element annotatedElement : roundEnv.getElementsAnnotatedWith(NonNull.class)) { } return true; } 的类中的可用方法,并在该方法中生成一些代码。

在我搜索期间,我没有找到任何关于我的问题的规范。 在这个阶段我会遵循哪些步骤?

<form #f="ngForm" (submit)="onSubmit(f.value)">
  <input type="text" name="name" [ngModel]="person.name">
  <input type="text" name="ssn"  [ngModel]="person.ssn">
  <button type="submit">Submit</button>
</form>

0 个答案:

没有答案