Ejemplo n.º 1
0
 public virtual void Exit(SelfReference/*!*/ node) { }
Ejemplo n.º 2
0
 internal protected virtual void Walk(SelfReference /*!*/ node)
 {
     Enter(node);
     Exit(node);
 }
Ejemplo n.º 3
0
 public virtual bool Enter(SelfReference/*!*/ node) { return true; }
		public static string[] GetMemberNames(SelfReference selfRef)
		{
			return new string[] { "self" };
		}
Ejemplo n.º 5
0
 public virtual void Exit(SelfReference /*!*/ node)
 {
 }
Ejemplo n.º 6
0
 public virtual bool Enter(SelfReference /*!*/ node)
 {
     return(true);
 }
Ejemplo n.º 7
0
		object Deserialize(SelfReference selfRef)
		{
			return componentCreator.RootComponent;
		}