Scala Swing Library
|
|
scala/swing/RefBuffer.scala
]
abstract
class
RefBuffer[A <: AnyRef]
extends
scala.collection.mutable.Buffer[A] with
scala.swing.SingleRefCollection[A]Value Summary | |
protected abstract val
|
underlying : scala.collection.mutable.Buffer[scala.ref.Reference[A]] |
Values and Variables inherited from scala.swing.SingleRefCollection | |
scala.swing.SingleRefCollection.referenceQueue |
Method Summary | |
def
|
+: (el : A) : RefBuffer[A] |
def
|
+= (el : A) : Unit |
def
|
apply (n : Int) : A |
def
|
clear : Unit |
def
|
insertAll (n : Int, iter : scala.Iterable[A]) : Unit |
def
|
length : Int |
def
|
readOnly : scala.Seq[A] |
def
|
remove (el : A) : Unit |
def
|
remove (n : Int) : A |
protected[this] def
|
removeReference (ref : scala.ref.Reference[A]) : Unit |
def
|
update (n : Int, el : A) : Unit |
Methods inherited from scala.swing.SingleRefCollection | |
scala.swing.SingleRefCollection.Ref (abstract), scala.swing.SingleRefCollection.purgeReferences, scala.swing.SingleRefCollection.elements |
Methods inherited from scala.Collection | |
scala.Collection.toString |
Methods inherited from scala.PartialFunction | |
scala.PartialFunction.orElse, scala.PartialFunction.andThen |
Methods inherited from scala.Function1 | |
scala.Function1.compose |
Methods inherited from AnyRef | |
getClass, equals, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Value Details |
Method Details |
def
insertAll(n : Int, iter : scala.Iterable[A]) : Unit
def
length : Int
def
clear : Unit
protected[this]
def
removeReference(ref : scala.ref.Reference[A]) : Unit
Scala Swing Library
|
|