Beispiel #1
0
  public void setStmt(PStmt node) {
    if (this._stmt_ != null) {
      this._stmt_.parent(null);
    }

    if (node != null) {
      if (node.parent() != null) {
        node.parent().removeChild(node);
      }

      node.parent(this);
    }

    this._stmt_ = node;
  }