summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/collection/mutable/Location.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library/scala/collection/mutable/Location.scala')
-rw-r--r--src/dotnet-library/scala/collection/mutable/Location.scala29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/dotnet-library/scala/collection/mutable/Location.scala b/src/dotnet-library/scala/collection/mutable/Location.scala
new file mode 100644
index 0000000000..efa329f4f1
--- /dev/null
+++ b/src/dotnet-library/scala/collection/mutable/Location.scala
@@ -0,0 +1,29 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2003-2006, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id$
+
+
+package scala.collection.mutable
+
+
+/** Class <code>Location</code> describes locations in messages implemented
+ * by class <code>Message</code>.
+ *
+ * @author Matthias Zenger
+ * @version 1.0, 10/05/2004
+ */
+abstract class Location
+
+case object NA extends Location
+
+case object Start extends Location
+
+case object End extends Location
+
+case class Index(n: Int) extends Location