summaryrefslogtreecommitdiff
path: root/src/swing/scala/swing/event/MouseEvent.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/swing/scala/swing/event/MouseEvent.scala')
-rw-r--r--src/swing/scala/swing/event/MouseEvent.scala13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/swing/scala/swing/event/MouseEvent.scala b/src/swing/scala/swing/event/MouseEvent.scala
index f7a6ec2fee..51af9ba304 100644
--- a/src/swing/scala/swing/event/MouseEvent.scala
+++ b/src/swing/scala/swing/event/MouseEvent.scala
@@ -1,3 +1,14 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2007-2009, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id$
+
+
package scala.swing.event
import java.awt.Point
@@ -57,4 +68,4 @@ case class MouseWheelMoved(val source: Component, point: Point, val modifiers: I
extends MouseEvent {
def this(e: java.awt.event.MouseWheelEvent) = this(UIElement.cachedWrapper(e.getSource.asInstanceOf[JComponent]),
e.getPoint, e.getModifiersEx, e.getWheelRotation)(e)
-} \ No newline at end of file
+}