scala.swing

class RefBuffer

[source: scala/swing/RefBuffer.scala]

abstract class RefBuffer[A <: AnyRef]
extends Buffer[A] with scala.swing.SingleRefCollection[A]
Value Summary
protected abstract val underlying : Buffer[Reference[A]]
Values and Variables inherited from scala.swing.SingleRefCollection
scala.swing.SingleRefCollection.referenceQueue
Method Summary
def +: (el : A) : RefBuffer[A]
Prepend a single element to this buffer and return the identity of the buffer.
def += (el : A) : RefBuffer[A]
Append a single element to this buffer.
def apply (n : Int) : A
Return element at index `n`
def clear : Unit
Clears the buffer contents.
def insertAll (n : Int, iter : Iterable[A]) : Unit
def length : Int
Return number of elements in the buffer
def readOnly : Sequence[A]
def remove (n : Int) : A
Removes the element on a given index position.
def remove (el : A) : Unit
protected[this] def removeReference (ref : Reference[A]) : Unit
def update (n : Int, el : A) : Unit
Replace element at index n with the new element newelem.
Methods inherited from scala.swing.SingleRefCollection
scala.swing.SingleRefCollection.Ref (abstract), scala.swing.SingleRefCollection.purgeReferences, scala.swing.SingleRefCollection.iterator
Methods inherited from Buffer
companion
Methods inherited from BufferTemplate
insertAll (abstract), remove, -=, ++:, ++:, append, appendAll, prepend, prependAll, prependAll, insert, trimStart, trimEnd, <<, stringPrefix, ++=, +, +, ++, ++, -, -, --, --
Methods inherited from Cloneable
clone
Methods inherited from Shrinkable
-=, --=, --=
Methods inherited from Growable
+=, ++=, ++=
Methods inherited from Unhashable
hashCode, identityHashCode
Methods inherited from SequenceTemplate
lengthCompare, size, isDefinedAt, zip, zipAll, zipWithIndex, segmentLength, prefixLength, indexWhere, indexWhere, findIndexOf, indexOf, indexOf, lastIndexOf, lastIndexOf, lastIndexWhere, lastIndexWhere, reverse, reverseIterator, reversedElements, startsWith, startsWith, endsWith, indexOfSeq, indexOfSeq, lastIndexOfSeq, lastIndexOfSeq, contains, union, diff, intersect, removeDuplicates, patch, padTo, toSequence, indices, view, view, equals, toString, sortWith, findLastIndexOf, slice, equalsWith, containsSlice, projection
Methods inherited from PartialFunction
orElse, andThen
Methods inherited from Function1
compose
Methods inherited from IterableTemplate
elements, foreach, isEmpty, foldRight, reduceRight, toIterable, head, takeRight, dropRight, sameElements, toStream, first, firstOption, toSeq
Methods inherited from TraversableClass
newBuilder, genericBuilder, unzip, flatten, transpose
Methods inherited from TraversableTemplate
thisCollection, nonEmpty, hasDefiniteSize, ++, ++, map, flatMap, filter, filterMap, filterNot, remove, partition, groupBy, forall, exists, count, find, foldLeft, /:, :\, reduceLeft, reduceLeftOption, reduceRightOption, headOption, tail, last, lastOption, init, take, drop, slice, takeWhile, dropWhile, span, splitAt, copyToBuffer, copyToArray, copyToArray, toArray, toList, toSet, mkString, mkString, mkString, addString, addString, addString
Methods inherited from AnyRef
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Value Details
protected abstract val underlying : Buffer[Reference[A]]
Overrides
scala.swing.SingleRefCollection.scala.swing.SingleRefCollection.underlying

Method Details
def +=(el : A) : RefBuffer[A]
Append a single element to this buffer.
Parameters
elem - the element to append.

def +:(el : A) : RefBuffer[A]
Prepend a single element to this buffer and return the identity of the buffer.
Parameters
elem - the element to prepend.

def remove(el : A) : Unit

def remove(n : Int) : A
Removes the element on a given index position.
Parameters
n - the index which refers to the element to delete.
Returns
the previous element

def insertAll(n : Int, iter : Iterable[A]) : Unit

def update(n : Int, el : A) : Unit
Replace element at index n with the new element newelem.
Parameters
n - the index of the element to replace.
newelem - the new element.
Throws
IndexOutofBoundsException - if the index is not valid

def readOnly : Sequence[A]

def apply(n : Int) : A
Return element at index `n`
Throws
IndexOutofBoundsException - if the index is not valid

def length : Int
Return number of elements in the buffer

def clear : Unit
Clears the buffer contents.

protected[this] def removeReference(ref : Reference[A]) : Unit
Overrides
scala.swing.SingleRefCollection.scala.swing.SingleRefCollection.removeReference