public override void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     if (Process(nestedUnitSetNamespace))
     {
         visitor.Visit(nestedUnitSetNamespace);
     }
     base.Visit(nestedUnitSetNamespace);
 }
Exemplo n.º 2
0
 public override void TraverseChildren(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     MethodEnter(nestedUnitSetNamespace);
     base.TraverseChildren(nestedUnitSetNamespace);
     MethodExit();
 }
Exemplo n.º 3
0
 public virtual void onMetadataElement(INestedUnitSetNamespace nestedUnitSetNamespace) { }
Exemplo n.º 4
0
 /// <summary>
 /// Performs some computation with the given nested unit set namespace.
 /// </summary>
 public void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     this.Visit((IUnitSetNamespace)nestedUnitSetNamespace);
 }
Exemplo n.º 5
0
 //^ ensures this.path.Count == old(this.path.Count);
 /// <summary>
 /// Performs some computation with the given nested unit set namespace.
 /// </summary>
 /// <param name="nestedUnitSetNamespace"></param>
 public virtual void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
 }
Exemplo n.º 6
0
 public void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     this.traverser.Traverse(nestedUnitSetNamespace);
 }
Exemplo n.º 7
0
 /// <summary>
 /// Traverses the specified nested unit namespace.
 /// </summary>
 public virtual void TraverseChildren(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     Contract.Requires(nestedUnitSetNamespace != null);
       this.TraverseChildren((IUnitSetNamespace)nestedUnitSetNamespace);
 }
Exemplo n.º 8
0
 /// <summary>
 /// Traverses the specified nested unit set namespace.
 /// </summary>
 public void Traverse(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     Contract.Requires(nestedUnitSetNamespace != null);
       if (this.preorderVisitor != null) this.preorderVisitor.Visit(nestedUnitSetNamespace);
       if (this.stopTraversal) return;
       this.TraverseChildren(nestedUnitSetNamespace);
       if (this.stopTraversal) return;
       if (this.postorderVisitor != null) this.postorderVisitor.Visit(nestedUnitSetNamespace);
 }
Exemplo n.º 9
0
 public void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 10
0
        public override void TraverseChildren(INestedUnitSetNamespace nestedUnitSetNamespace)
{ MethodEnter(nestedUnitSetNamespace);
            base.TraverseChildren(nestedUnitSetNamespace);
     MethodExit();   }
Exemplo n.º 11
0
 public virtual void onMetadataElement(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
 }
Exemplo n.º 12
0
 /// <summary>
 /// Performs some computation with the given nested unit set namespace.
 /// </summary>
 /// <param name="nestedUnitSetNamespace"></param>
 public virtual void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
   //^ ensures this.path.Count == old(this.path.Count);
 {
 }
 /// <summary>
 /// Performs some computation with the given nested unit set namespace.
 /// </summary>
 public virtual void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
 }
Exemplo n.º 14
0
 public override void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     allElements.Add(new InvokInfo(Traverser, "INestedUnitSetNamespace", nestedUnitSetNamespace));
 }
 public override void Visit(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     if(Process(nestedUnitSetNamespace)){visitor.Visit(nestedUnitSetNamespace);}
     base.Visit(nestedUnitSetNamespace);
 }
Exemplo n.º 16
0
 /// <summary>
 /// Traverses the specified nested unit namespace.
 /// </summary>
 public virtual void TraverseChildren(INestedUnitSetNamespace nestedUnitSetNamespace)
 {
     this.TraverseChildren((IUnitSetNamespace)nestedUnitSetNamespace);
 }