1 | void setVerbose(VerboseAttr verbose) {↵ | | 1 | void setTrace(TraceAttr trace) {↵
|
2 | this.verbose = verbose.getValue();↵ | | 2 | this.trace = trace.getValue();↵
|
3 | }↵ | | 3 | }↵
|
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Whether lots of warnings and error messages should be generated↵ | | 5 | * Turns on or off tracing and directs the resultant trace output Valid↵
|
| | | 6 | * values are: "trace", "trace1", "trace2" and "notrace". "trace" and↵
|
| | | 7 | * "trace2".↵
|
6 | * @param verbose the value to set - verbose<level> or noverbose.↵ | | 8 | * @param trace the value to set.↵
|
7 | */↵ | | 9 | */↵
|
8 | public void setVerbose(String verbose) {↵ | | 10 | public void setTrace(String trace) {↵
|
9 | VerboseAttr v = new VerboseAttr();↵ | | 11 | TraceAttr t = new TraceAttr();↵
|
|
10 | v.setValue(verbose);↵ | | 12 | t.setValue(trace);↵
|
11 | setVerbose(v);↵ | | 13 | setTrace(t);↵
|
12 | | | 14 |
|