Changeset 16
- Timestamp:
- 07/20/05 16:11:53 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/net/schst/EventDispatcher/EventDispatcher.java
r11 r16 4 4 import java.util.HashMap; 5 5 import java.util.Iterator; 6 import java.util.Set; 6 7 7 8 /** … … 256 257 return e; 257 258 } 259 260 /** 261 * Get the names of all events for which any listeners 262 * have been added. 263 * 264 * @return Set containing all event names 265 */ 266 public Set getRegisteredEventNames() { 267 return this.listeners.keySet(); 268 } 258 269 }
