How do I create custom javadoc tags such as @pre / @post? I found some links that explain it but I haven\'t had luck with them. These are some of the links:
http://w
Well what i did is not the best solution but is readable:
/** Pre: True * Post: The x is pushed onto the top of the stack, * and the rest of the stack remains unchanged. * * @param x Indicates the current node */ public void push(int x){ ... }
Pre:
Post:
Till a proper answer is found, hope it helps!