|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void insert(ChildType child, ChildType after = null) { |
|
|
|
public virtual void insert(ChildType child, ChildType after = null) { |
|
|
|
public void add(ChildType child) { |
|
|
|
public virtual void add(ChildType child) { |
|
|
|
public void addAll(List<ChildType> children) { |
|
|
|
public virtual void addAll(List<ChildType> children) { |
|
|
|
if (children != null) { |
|
|
|
children.ForEach(this.add); |
|
|
|
} |
|
|
|
|
|
|
this._childCount--; |
|
|
|
} |
|
|
|
|
|
|
|
public void remove(ChildType child) { |
|
|
|
public virtual void remove(ChildType child) { |
|
|
|
public void removeAll() { |
|
|
|
public virtual void removeAll() { |
|
|
|
ChildType child = this._firstChild; |
|
|
|
while (child != null) { |
|
|
|
var childParentData = (ParentDataType) child.parentData; |
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void insert(ChildType child, ChildType after = null) { |
|
|
|
public virtual void insert(ChildType child, ChildType after = null) { |
|
|
|
public void add(ChildType child) { |
|
|
|
public virtual void add(ChildType child) { |
|
|
|
public void addAll(List<ChildType> children) { |
|
|
|
public virtual void addAll(List<ChildType> children) { |
|
|
|
if (children != null) { |
|
|
|
children.ForEach(this.add); |
|
|
|
} |
|
|
|
|
|
|
this._childCount--; |
|
|
|
} |
|
|
|
|
|
|
|
public void remove(ChildType child) { |
|
|
|
public virtual void remove(ChildType child) { |
|
|
|
public void removeAll() { |
|
|
|
public virtual void removeAll() { |
|
|
|
ChildType child = this._firstChild; |
|
|
|
while (child != null) { |
|
|
|
var childParentData = (ParentDataType) child.parentData; |
|
|
|