Exemplo n.º 1
0
        public void SetDeclarefirstnormal(PDeclarefirstnormal node)
        {
            if(_declarefirstnormal_ != null)
            {
            _declarefirstnormal_.Parent(null);
            }

            if(node != null)
            {
            if(node.Parent() != null)
            {
                node.Parent().RemoveChild(node);
            }

            node.Parent(this);
            }

            _declarefirstnormal_ = node;
        }
Exemplo n.º 2
0
 internal override void RemoveChild(Node child)
 {
     if ( _declarefirstnormal_ == child )
     {
     _declarefirstnormal_ = null;
     return;
     }
 }
Exemplo n.º 3
0
     public AADeclarefirst(
         PDeclarefirstnormal _declarefirstnormal_
 )
     {
         SetDeclarefirstnormal (_declarefirstnormal_);
     }