Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.buddies.chat/src/org/eclipse/net4j/buddies/internal/chat/CommentEvent.java')
-rw-r--r--plugins/org.eclipse.net4j.buddies.chat/src/org/eclipse/net4j/buddies/internal/chat/CommentEvent.java92
1 files changed, 46 insertions, 46 deletions
diff --git a/plugins/org.eclipse.net4j.buddies.chat/src/org/eclipse/net4j/buddies/internal/chat/CommentEvent.java b/plugins/org.eclipse.net4j.buddies.chat/src/org/eclipse/net4j/buddies/internal/chat/CommentEvent.java
index 4f5a90b8b2..6045ff4204 100644
--- a/plugins/org.eclipse.net4j.buddies.chat/src/org/eclipse/net4j/buddies/internal/chat/CommentEvent.java
+++ b/plugins/org.eclipse.net4j.buddies.chat/src/org/eclipse/net4j/buddies/internal/chat/CommentEvent.java
@@ -1,46 +1,46 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Eike Stepper - initial API and implementation
- */
-package org.eclipse.net4j.buddies.internal.chat;
-
-import org.eclipse.net4j.buddies.chat.IChat;
-import org.eclipse.net4j.buddies.chat.IComment;
-import org.eclipse.net4j.buddies.chat.ICommentEvent;
-import org.eclipse.net4j.util.event.Event;
-
-/**
- * @author Eike Stepper
- */
-public class CommentEvent extends Event implements ICommentEvent
-{
- private static final long serialVersionUID = 1L;
-
- private IComment comment;
-
- public CommentEvent(IChat chat, IComment comment)
- {
- super(chat);
- this.comment = comment;
- }
-
- /**
- * @since 3.0
- */
- @Override
- public IChat getSource()
- {
- return (IChat)super.getSource();
- }
-
- public IComment getComment()
- {
- return comment;
- }
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Eike Stepper - initial API and implementation
+ */
+package org.eclipse.net4j.buddies.internal.chat;
+
+import org.eclipse.net4j.buddies.chat.IChat;
+import org.eclipse.net4j.buddies.chat.IComment;
+import org.eclipse.net4j.buddies.chat.ICommentEvent;
+import org.eclipse.net4j.util.event.Event;
+
+/**
+ * @author Eike Stepper
+ */
+public class CommentEvent extends Event implements ICommentEvent
+{
+ private static final long serialVersionUID = 1L;
+
+ private IComment comment;
+
+ public CommentEvent(IChat chat, IComment comment)
+ {
+ super(chat);
+ this.comment = comment;
+ }
+
+ /**
+ * @since 3.0
+ */
+ @Override
+ public IChat getSource()
+ {
+ return (IChat)super.getSource();
+ }
+
+ public IComment getComment()
+ {
+ return comment;
+ }
+}

Back to the top