summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/SynchronizedBuffer.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-10-04 12:18:48 +0000
committermichelou <michelou@epfl.ch>2006-10-04 12:18:48 +0000
commit9f013a7ccd34f6ee169ff7189f503a9f2b097fff (patch)
treec919bac9c550a1160f998b0acd4bff081cf98462 /src/library/scala/collection/mutable/SynchronizedBuffer.scala
parent3e985a3e8d8119ee1e9c417cd25345a819caabe9 (diff)
downloadscala-9f013a7ccd34f6ee169ff7189f503a9f2b097fff.tar.gz
scala-9f013a7ccd34f6ee169ff7189f503a9f2b097fff.tar.bz2
scala-9f013a7ccd34f6ee169ff7189f503a9f2b097fff.zip
removed leading/trailing tabs/blanks in collect...
removed leading/trailing tabs/blanks in collection/mutable/*.scala
Diffstat (limited to 'src/library/scala/collection/mutable/SynchronizedBuffer.scala')
-rw-r--r--src/library/scala/collection/mutable/SynchronizedBuffer.scala338
1 files changed, 169 insertions, 169 deletions
diff --git a/src/library/scala/collection/mutable/SynchronizedBuffer.scala b/src/library/scala/collection/mutable/SynchronizedBuffer.scala
index 6a7defb413..fc37575bac 100644
--- a/src/library/scala/collection/mutable/SynchronizedBuffer.scala
+++ b/src/library/scala/collection/mutable/SynchronizedBuffer.scala
@@ -9,7 +9,7 @@
// $Id$
-package scala.collection.mutable;
+package scala.collection.mutable
/** This class should be used as a mixin. It synchronizes the <code>Buffer</code>
@@ -20,172 +20,172 @@ package scala.collection.mutable;
*/
trait SynchronizedBuffer[A] extends Buffer[A] {
- abstract override def length: Int = synchronized {
- super.length;
- }
-
- abstract override def elements: Iterator[A] = synchronized {
- super.elements;
- }
-
- abstract override def apply(n: Int): A = synchronized {
- super.apply(n);
- }
-
- /** Append a single element to this buffer and return
- * the identity of the buffer.
- *
- * @param elem the element to append.
- */
- override def +(elem: A): Buffer[A] = synchronized {
- super.+(elem);
- }
-
- /** Append a single element to this buffer.
- *
- * @param elem the element to append.
- */
- abstract override def +=(elem: A): Unit = synchronized {
- super.+=(elem);
- }
-
- /** Appends a number of elements provided by an iterable object
- * via its <code>elements</code> method. The identity of the
- * buffer is returned.
- *
- * @param iter the iterable object.
- */
- override def ++(iter: Iterable[A]): Buffer[A] = synchronized {
- super.++(iter);
- }
-
- /** Appends a number of elements provided by an iterable object
- * via its <code>elements</code> method.
- *
- * @param iter the iterable object.
- */
- override def ++=(iter: Iterable[A]): Unit = synchronized {
- super.++=(iter);
- }
-
- /** Appends a sequence of elements to this buffer.
- *
- * @param elems the elements to append.
- */
- override def append(elems: A*): Unit = synchronized {
- super.++=(elems);
- }
-
- /** Appends a number of elements provided by an iterable object
- * via its <code>elements</code> method.
- *
- * @param iter the iterable object.
- */
- override def appendAll(iter: Iterable[A]): Unit = synchronized {
- super.appendAll(iter);
- }
-
- /** Prepend a single element to this buffer and return
- * the identity of the buffer.
- *
- * @param elem the element to append.
- */
- abstract override def +:(elem: A): Buffer[A] = synchronized {
- super.+:(elem);
- }
-
- /** Prepends a number of elements provided by an iterable object
- * via its <code>elements</code> method. The identity of the
- * buffer is returned.
- *
- * @param iter the iterable object.
- */
- override def ++:(iter: Iterable[A]): Buffer[A] = synchronized {
- super.++:(iter);
- }
-
- /** Prepend an element to this list.
- *
- * @param elem the element to prepend.
- */
- override def prepend(elems: A*): Unit = synchronized {
- super.prependAll(elems);
- }
-
- /** Prepends a number of elements provided by an iterable object
- * via its <code>elements</code> method. The identity of the
- * buffer is returned.
- *
- * @param iter the iterable object.
- */
- override def prependAll(elems: Iterable[A]): Unit = synchronized {
- super.prependAll(elems);
- }
-
- /** Inserts new elements at the index <code>n</code>. Opposed to method
- * <code>update</code>, this method will not replace an element with a
- * one. Instead, it will insert the new elements at index <code>n</code>.
- *
- * @param n the index where a new element will be inserted.
- * @param elems the new elements to insert.
- */
- override def insert(n: Int, elems: A*): Unit = synchronized {
- super.insertAll(n, elems);
- }
-
- /** Inserts new elements at the index <code>n</code>. Opposed to method
- * <code>update</code>, this method will not replace an element with a
- * one. Instead, it will insert a new element at index <code>n</code>.
- *
- * @param n the index where a new element will be inserted.
- * @param iter the iterable object providing all elements to insert.
- */
- abstract override def insertAll(n: Int, iter: Iterable[A]): Unit = synchronized {
- super.insertAll(n, iter);
- }
-
- /** Replace element at index <code>n</code> with the new element
- * <code>newelem</code>.
- *
- * @param n the index of the element to replace.
- * @param newelem the new element.
- */
- abstract override def update(n: Int, newelem: A): Unit = synchronized {
- super.update(n, newelem);
- }
-
- /** Removes the element on a given index position.
- *
- * @param n the index which refers to the element to delete.
- */
- abstract override def remove(n: Int): A = synchronized {
- super.remove(n);
- }
-
- /** Clears the buffer contents.
- */
- abstract override def clear: Unit = synchronized {
- super.clear;
- }
-
- override def <<(cmd: Message[Pair[Location, A]]): Unit = synchronized {
- super.<<(cmd);
- }
-
- /** Return a clone of this buffer.
- *
- * @return an <code>ArrayBuffer</code> with the same elements.
- */
- override def clone(): Buffer[A] = synchronized {
- super.clone();
- }
-
- /** The hashCode method always yields an error, since it is not
- * safe to use buffers as keys in hash tables.
- *
- * @return never.
- */
- override def hashCode(): Int = synchronized {
- super.hashCode();
- }
+ abstract override def length: Int = synchronized {
+ super.length
+ }
+
+ abstract override def elements: Iterator[A] = synchronized {
+ super.elements
+ }
+
+ abstract override def apply(n: Int): A = synchronized {
+ super.apply(n)
+ }
+
+ /** Append a single element to this buffer and return
+ * the identity of the buffer.
+ *
+ * @param elem the element to append.
+ */
+ override def +(elem: A): Buffer[A] = synchronized {
+ super.+(elem)
+ }
+
+ /** Append a single element to this buffer.
+ *
+ * @param elem the element to append.
+ */
+ abstract override def +=(elem: A): Unit = synchronized {
+ super.+=(elem)
+ }
+
+ /** Appends a number of elements provided by an iterable object
+ * via its <code>elements</code> method. The identity of the
+ * buffer is returned.
+ *
+ * @param iter the iterable object.
+ */
+ override def ++(iter: Iterable[A]): Buffer[A] = synchronized {
+ super.++(iter)
+ }
+
+ /** Appends a number of elements provided by an iterable object
+ * via its <code>elements</code> method.
+ *
+ * @param iter the iterable object.
+ */
+ override def ++=(iter: Iterable[A]): Unit = synchronized {
+ super.++=(iter)
+ }
+
+ /** Appends a sequence of elements to this buffer.
+ *
+ * @param elems the elements to append.
+ */
+ override def append(elems: A*): Unit = synchronized {
+ super.++=(elems)
+ }
+
+ /** Appends a number of elements provided by an iterable object
+ * via its <code>elements</code> method.
+ *
+ * @param iter the iterable object.
+ */
+ override def appendAll(iter: Iterable[A]): Unit = synchronized {
+ super.appendAll(iter)
+ }
+
+ /** Prepend a single element to this buffer and return
+ * the identity of the buffer.
+ *
+ * @param elem the element to append.
+ */
+ abstract override def +:(elem: A): Buffer[A] = synchronized {
+ super.+:(elem)
+ }
+
+ /** Prepends a number of elements provided by an iterable object
+ * via its <code>elements</code> method. The identity of the
+ * buffer is returned.
+ *
+ * @param iter the iterable object.
+ */
+ override def ++:(iter: Iterable[A]): Buffer[A] = synchronized {
+ super.++:(iter)
+ }
+
+ /** Prepend an element to this list.
+ *
+ * @param elem the element to prepend.
+ */
+ override def prepend(elems: A*): Unit = synchronized {
+ super.prependAll(elems)
+ }
+
+ /** Prepends a number of elements provided by an iterable object
+ * via its <code>elements</code> method. The identity of the
+ * buffer is returned.
+ *
+ * @param iter the iterable object.
+ */
+ override def prependAll(elems: Iterable[A]): Unit = synchronized {
+ super.prependAll(elems)
+ }
+
+ /** Inserts new elements at the index <code>n</code>. Opposed to method
+ * <code>update</code>, this method will not replace an element with a
+ * one. Instead, it will insert the new elements at index <code>n</code>.
+ *
+ * @param n the index where a new element will be inserted.
+ * @param elems the new elements to insert.
+ */
+ override def insert(n: Int, elems: A*): Unit = synchronized {
+ super.insertAll(n, elems)
+ }
+
+ /** Inserts new elements at the index <code>n</code>. Opposed to method
+ * <code>update</code>, this method will not replace an element with a
+ * one. Instead, it will insert a new element at index <code>n</code>.
+ *
+ * @param n the index where a new element will be inserted.
+ * @param iter the iterable object providing all elements to insert.
+ */
+ abstract override def insertAll(n: Int, iter: Iterable[A]): Unit = synchronized {
+ super.insertAll(n, iter)
+ }
+
+ /** Replace element at index <code>n</code> with the new element
+ * <code>newelem</code>.
+ *
+ * @param n the index of the element to replace.
+ * @param newelem the new element.
+ */
+ abstract override def update(n: Int, newelem: A): Unit = synchronized {
+ super.update(n, newelem)
+ }
+
+ /** Removes the element on a given index position.
+ *
+ * @param n the index which refers to the element to delete.
+ */
+ abstract override def remove(n: Int): A = synchronized {
+ super.remove(n)
+ }
+
+ /** Clears the buffer contents.
+ */
+ abstract override def clear: Unit = synchronized {
+ super.clear
+ }
+
+ override def <<(cmd: Message[Pair[Location, A]]): Unit = synchronized {
+ super.<<(cmd)
+ }
+
+ /** Return a clone of this buffer.
+ *
+ * @return an <code>ArrayBuffer</code> with the same elements.
+ */
+ override def clone(): Buffer[A] = synchronized {
+ super.clone()
+ }
+
+ /** The hashCode method always yields an error, since it is not
+ * safe to use buffers as keys in hash tables.
+ *
+ * @return never.
+ */
+ override def hashCode(): Int = synchronized {
+ super.hashCode()
+ }
}