Пример #1
0
 public Spawn(PathExpression pathExpression, String name, PathExpression iterate, Process process)
 {
     source       = pathExpression;
     target       = process;
     iteratorName = name;
     iterateOver  = iterate;
 }
Пример #2
0
 internal PathExpression ExtendClone(PathExpression newPE)
 {
     if (this.filter != null)
     {
         newPE.filter = this.filter.Clone();
     }
     return(newPE);
 }
Пример #3
0
        internal virtual PathExpression PathReplace(string iteratorName, Event e)
        {
            if (child != null)
            {
                this.child = child.PathReplace(iteratorName, e);
            }

            System.Diagnostics.Debug.WriteLine(this.ToSource());
            return(this);
        }
Пример #4
0
 public PathExpression ExtendFinal(PathExpression p)
 {
     if (this.child == null)
     {
         this.child = p;
     }
     else
     {
         this.child.ExtendFinal(p);
     }
     return(this);
 }
Пример #5
0
 internal override void PathReplace(string iteratorName, Event e)
 {
     source = source.PathReplace(iteratorName, e);
     target.PathReplace(iteratorName, e);
 }
Пример #6
0
 public Spawn(PathExpression pathExpression, Process process)
 {
     source = pathExpression;
     target = process;
 }
Пример #7
0
 public BasicRelation(PathExpression s, PathExpression t)
 {
     source = s;
     target = t;
 }
Пример #8
0
 internal override void PathReplace(string iteratorName, Event e)
 {
     this.value = this.value.PathReplace(iteratorName, e);
 }
Пример #9
0
 public PathExpression(PathExpression child)
 {
     this.child = child;
 }
Пример #10
0
 public Inclusion(PathExpression s, PathExpression t) : base(s, t)
 {
 }
Пример #11
0
 public Name(String name, PathExpression child) : base(child)
 {
     this.name = name;
 }
Пример #12
0
        //Saet<Event> eval(Event context, Process Root);

        public PathExpression Extend(PathExpression p)
        {
            this.child = p;
            return(this);
        }
Пример #13
0
 public PathExpression(PathExpression child, DataExpression filter)
 {
     this.child  = child;
     this.filter = filter;
 }
Пример #14
0
 public Condition(PathExpression s, PathExpression t) : base(s, t)
 {
 }
Пример #15
0
 public Name(String name, PathExpression child, DataExpression filter) : base(child, filter)
 {
     this.name = name;
 }
Пример #16
0
 public Milestone(PathExpression s, PathExpression t) : base(s, t)
 {
 }
Пример #17
0
 public Path(PathExpression v)
 {
     this.value = v;
 }
Пример #18
0
 public Response(PathExpression s, PathExpression t) : base(s, t)
 {
 }
Пример #19
0
 public PathExpression()
 {
     this.child = null;
 }