source: events/src/main/java/geniusweb/events/ProtocolEvent.java@ 52

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 218 bytes
Line 
1package geniusweb.events;
2
3/**
4 * an event triggered by the protocol.
5 */
6public abstract class ProtocolEvent extends AbstractEvent {
7 public ProtocolEvent() {
8
9 }
10
11 public ProtocolEvent(Long now) {
12 super(now);
13 }
14}
Note: See TracBrowser for help on using the repository browser.