Exemplo n.º 1
0
 public ExpressionDeclaration(string name, Net.Vpc.Upa.Impl.Uql.DecObjectType referrerType, object referrerName, object referrerParent)
 {
     this.name           = name;
     this.referrerName   = referrerName;
     this.referrerParent = referrerParent;
     this.referrerType   = referrerType;
 }
Exemplo n.º 2
0
 public virtual void ExportDeclaration(string name, Net.Vpc.Upa.Impl.Uql.DecObjectType type, object referrerName, object referrerParentId)
 {
     if (exportedDeclarations == null)
     {
         exportedDeclarations = new System.Collections.Generic.List <Net.Vpc.Upa.Impl.Uql.ExpressionDeclaration>(3);
     }
     exportedDeclarations.Add(new Net.Vpc.Upa.Impl.Uql.ExpressionDeclaration(name, type, referrerName, referrerParentId));
 }
Exemplo n.º 3
0
 public virtual void SetReferrerType(Net.Vpc.Upa.Impl.Uql.DecObjectType referrerType)
 {
     this.referrerType = referrerType;
 }