Return getURLName.toString() if this service has a URLName, otherwise it will return the default toString .
()
| 600 | * otherwise it will return the default <code>toString</code>. |
| 601 | */ |
| 602 | @Override |
| 603 | public String toString() { |
| 604 | URLName url = getURLName(); |
| 605 | if (url != null) |
| 606 | return url.toString(); |
| 607 | else |
| 608 | return super.toString(); |
| 609 | } |
| 610 | |
| 611 | /** |
| 612 | * Add the event and vector of listeners to the queue to be delivered. |
nothing calls this directly
no test coverage detected