Ejemplo n.º 1
0
        public void ProcessAnnotations(AnnotationArgs args)
        {
            _runtimeIntent.Clear();
            foreach (AnnotatedNode anode in args.AnnotatedNodes)
            {
                if (anode.MatchingNode != null)
                {
                    string path = PathDescriptor.GetPath(anode.MatchingNode, anode.Root);

                    _runtimeIntent.PutData(path, anode.Data);
                }
            }
        }