aboutsummaryrefslogtreecommitdiff
path: root/src/com/wilko/jaim/JaimEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/wilko/jaim/JaimEvent.java')
-rw-r--r--src/com/wilko/jaim/JaimEvent.java27
1 files changed, 15 insertions, 12 deletions
diff --git a/src/com/wilko/jaim/JaimEvent.java b/src/com/wilko/jaim/JaimEvent.java
index 50c66ae..739c4ec 100644
--- a/src/com/wilko/jaim/JaimEvent.java
+++ b/src/com/wilko/jaim/JaimEvent.java
@@ -1,4 +1,4 @@
-/*
+/*
* (C) 2002 Paul Wilkinson wilko@users.sourceforge.net
*
* This program is free software; you can redistribute it and/or modify
@@ -19,24 +19,27 @@
package com.wilko.jaim;
-/** The JaimEvent object is delivered to all registered {@link JaimEventListener}
- * @see JaimConnection#addEventListener
- * @author paulw
+/**
+ * The JaimEvent object is delivered to all registered {@link JaimEventListener}
+ *
+ * @author paulw
* @version $revision: $
+ * @see JaimConnection#addEventListener
*/
public class JaimEvent extends java.util.EventObject {
- private TocResponse tocResponse;
-
- /** Creates new JaimEvent */
+ private final TocResponse tocResponse;
+
+ /**
+ * Creates new JaimEvent
+ */
public JaimEvent(Object source, TocResponse tocResponse) {
super(source);
- this.tocResponse=tocResponse;
+ this.tocResponse = tocResponse;
}
-
- public TocResponse getTocResponse()
- {
- return(tocResponse);
+
+ public TocResponse getTocResponse() {
+ return (tocResponse);
}
}