コード例 #1
0
ファイル: NetRexxC.java プロジェクト: neilgmiller/ant
  /**
   * 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);
  }
コード例 #2
0
ファイル: NetRexxC.java プロジェクト: neilgmiller/ant
 /**
  * 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();
 }