Exemple #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;
        }
Exemple #2
0
 internal override void RemoveChild(Node child)
 {
     if ( _declarefirstnormal_ == child )
     {
     _declarefirstnormal_ = null;
     return;
     }
 }
Exemple #3
0
     public AADeclarefirst(
         PDeclarefirstnormal _declarefirstnormal_
 )
     {
         SetDeclarefirstnormal (_declarefirstnormal_);
     }