Home | History | Annotate | Download | only in node

Lines Matching refs:node

3 package com.google.clearsilver.jsilver.syntax.node;
47 public void setLeft(PExpression node)
54 if(node != null)
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
64 this._left_ = node;
72 public void setRight(PExpression node)
79 if(node != null)
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
89 this._right_ = node;
101 void removeChild(@SuppressWarnings("unused") Node child)
120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)