VisitEventPost() public abstract method

First call made when visiting an event.
public abstract VisitEventPost ( IXEvent evt, OpenXesNet.model.XTrace trace ) : void
evt IXEvent The event to visit.
trace OpenXesNet.model.XTrace The trace containing the event.
return void
Esempio n. 1
0
        public void Accept(XVisitor visitor, XTrace trace)
        {
            visitor.VisitEventPre(this, trace);

            foreach (XAttribute attribute in this.attributes.Values)
            {
                attribute.Accept(visitor, this);
            }
            visitor.VisitEventPost(this, trace);
        }