I am writing a java source file with contract for method, and want to generate Abstract syntax tree for the code and how do i separate @ensures and @requires annotations in AST ? How to access them?
import com.google.java.contract.Ensures;
import com.google.java.contract.Requires;
public class tempContract{
public static void main(String[] args) {
System.out.println(new Numbers1().add(-10, 5));
int var=10;
System.out.println("var ~"+ ~var);
System.out.println("var "+ var);
}
}
class Numbers1 {
@Requires({ "a > 0 ", "b > 0"})
@Ensures({ "result > a", "result > b" })
int add(int a, int b) {
return a + b;
}
}
Kindly help me. I have generated AST using JDT. how to parse the annotations now? Based on the contract I have to generate the code for the method later on.