tide.annotations |
|
Java Source File Name | Type | Comment |
Implements.java | Annotation | Gives a secure feeling and clear indication that a perticular methods
implements some declared interface. |
NonRecurse.java | Annotation | |
Recurse.java | Annotation | Marker to annotate methods known as being recursive (calling itself). |
ReturnAPassedArg.java | Annotation | Marks the fact that a passed argument is also returned, as in
"a")
public double[] multInPlace(double[] a, double fact)
{
// ... |
ReturnInstanceRef.java | Annotation | Marks the fact that the return value is THE instance of the class containing the method. |
Test.java | Class | |