Exemplo n.º 1
0
  /**
   * Turns on or off tracing and directs the resultant trace output Valid values are: "trace",
   * "trace1", "trace2" and "notrace". "trace" and "trace2".
   *
   * @param trace the value to set.
   */
  public void setTrace(String trace) {
    TraceAttr t = new TraceAttr();

    t.setValue(trace);
    setTrace(t);
  }
Exemplo n.º 2
0
 /**
  * Turns on or off tracing and directs the resultant trace output Valid values are: "trace",
  * "trace1", "trace2" and "notrace". "trace" and "trace2".
  *
  * @param trace the value to set.
  */
 public void setTrace(TraceAttr trace) {
   this.trace = trace.getValue();
 }