12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- goog.provide('goog.events.EventId');
- goog.events.EventId = function(eventId) {
- this.id = eventId;
- };
- goog.events.EventId.prototype.toString = function() {
- return this.id;
- };
|