edu.umd.cs.findbugs.ba
public class ReturnPath extends Object
| Field Summary | |
|---|---|
| static int | EXIT
Method "returns" by exiting the process. |
| static int | EXIT_UE
Method returns either by exiting or throwing an unhandled exception. |
| static int | RETURNS
Method may return normally. |
| static int | TOP
Top value. |
| static int | UE
Method returns by throwing an unhandled exception. |
| Constructor Summary | |
|---|---|
| ReturnPath(int kind) | |
| Method Summary | |
|---|---|
| void | copyFrom(ReturnPath other) |
| int | getKind() |
| void | mergeWith(ReturnPath other) |
| boolean | sameAs(ReturnPath other) |
| void | setKind(int kind) |