| java.lang.Object net.sourceforge.groboutils.autodoc.v1.defimpl.AutoDocITSet
Method Summary | |
public void | addIT(AutoDocIT it) | public Enumeration | getSetContents() | public void | testsIssue(String methodName, long issueID) Traces an issue from the owning class and declared method, to the
given ID. | public void | testsIssue(String methodName, String issueID) Traces an issue from the owning class and declared method, to the
given ID. | public void | testsIssue(long issueID) Traces an issue from the owning class to the given ID.
The method will still be given to the underlying tracker, but it will
be discovered through the stack trace. | public void | testsIssue(String issueID) Traces an issue from the owning class to the given ID.
The method will still be given to the underlying tracker, but it will
be discovered through the stack trace. |
testsIssue | public void testsIssue(String methodName, long issueID)(Code) | | Traces an issue from the owning class and declared method, to the
given ID. This is a long, as some systems may allow for
more than 2 billion issues.
Parameters: methodName - the owning class's method to trace the issue back to. Parameters: issueID - the id of the issue being tracked. |
testsIssue | public void testsIssue(String methodName, String issueID)(Code) | | Traces an issue from the owning class and declared method, to the
given ID.
Parameters: methodName - the owning class's method to trace the issue back to. Parameters: issueID - the id of the issue being tracked. |
testsIssue | public void testsIssue(long issueID)(Code) | | Traces an issue from the owning class to the given ID.
The method will still be given to the underlying tracker, but it will
be discovered through the stack trace. Hence, this is a volitile
method for tracking; it should only be called from the owning class
which is actually testing the bug.
Parameters: issueID - the id of the issue being tracked. |
testsIssue | public void testsIssue(String issueID)(Code) | | Traces an issue from the owning class to the given ID.
The method will still be given to the underlying tracker, but it will
be discovered through the stack trace. Hence, this is a volitile
method for tracking; it should only be called from the owning class
which is actually testing the bug.
Parameters: issueID - the id of the issue being tracked. |
|
|