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.

link|improve this question
not sure why you want this, but have you looked at apt? download.oracle.com/javase/1.5.0/docs/guide/apt/… – sbridges Aug 2 '11 at 2:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.