コード例 #1
0
ファイル: Subscriber.cs プロジェクト: fjgandrade/sharpkit
 /// <summary>
 /// Executes the subscriber.
 /// </summary>
 public void notify(Y_.Array args, CustomEvent ce){}
コード例 #2
0
 /// <summary>
 /// Executes the subscriber.
 /// </summary>
 public void notify(Y_.Array args, CustomEvent ce)
 {
 }
コード例 #3
0
ファイル: EventTarget.cs プロジェクト: fjgandrade/sharpkit
 /// <summary>
 /// Propagate an event.  Requires the event-custom-complex module.
 /// </summary>
 public object bubble(CustomEvent evt){return null;}
コード例 #4
0
 /// <summary>
 /// Walks up the parent axis of an event's target, and tests each element
 /// against a supplied filter function.  If any Nodes, including the container,
 /// satisfy the filter, the delegated callback will be triggered for each.
 /// Hosted as a protected property of the `delegate` method (e.g.
 /// `Y.delegate._applyFilter`).
 /// </summary>
 protected Node _applyFilter(JsAction filter, Y_.Array args, CustomEvent ce)
 {
     return(null);
 }
コード例 #5
0
ファイル: Event.cs プロジェクト: fjgandrade/sharpkit
 /// <summary>
 /// Walks up the parent axis of an event's target, and tests each element
 /// against a supplied filter function.  If any Nodes, including the container,
 /// satisfy the filter, the delegated callback will be triggered for each.
 /// Hosted as a protected property of the `delegate` method (e.g.
 /// `Y.delegate._applyFilter`).
 /// </summary>
 protected Node _applyFilter(JsAction filter, Y_.Array args, CustomEvent ce){return null;}
コード例 #6
0
 /// <summary>
 /// Propagate an event.  Requires the event-custom-complex module.
 /// </summary>
 public object bubble(CustomEvent evt)
 {
     return(null);
 }