Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorDom/Events/EventListenerMapEntry.cs @ 12781

Last change on this file since 12781 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 793 bytes
Line 
1using System;
2
3using SharpVectors.Dom.Events;
4
5namespace SharpVectors.Dom.Events
6{
7    /// <summary>
8    /// Summary description for EventListenerMapEntry.
9    /// </summary>
10    public class EventListenerMapEntry
11    {
12        public bool Locked;
13        public string NamespaceUri;
14        public string Type;
15        public object Group;
16        public EventListener Listener;
17
18        public EventListenerMapEntry()
19        {   
20        }
21
22        public EventListenerMapEntry(string namespaceUri, string type, object group,
23            EventListener listener, bool locked)
24        {
25            NamespaceUri = namespaceUri;
26            Type = type;
27            Group = group;
28            Listener = listener;
29            Locked = locked;
30        }
31    }
32}
Note: See TracBrowser for help on using the repository browser.