scala.swing.TabbedPane

object pages

[source: scala/swing/TabbedPane.scala]

object pages
extends BufferWrapper[Page]
Method Summary
def += (t : Page) : Unit
Append a single element to this buffer.
def apply (n : Int) : Page
protected def insertAt (n : Int, t : Page) : Unit
def length : Int
Returns the length of the sequence.
def remove (n : Int) : Page
Removes the element on a given index position.
def runCount : Int
Methods inherited from BufferWrapper
clear, update, insertAll, readOnly, +:, elements
Methods inherited from Buffer
+, ++=, ++=, ++=, ++, ++, ++, ++:, -=, append, appendAll, prepend, prependAll, insert, trimStart, trimEnd, <<, clone, hashCode, stringPrefix
Methods inherited from Seq
lengthCompare, size, isEmpty, concat, last, lastOption, first, firstOption, headOption, isDefinedAt, lastIndexOf, findIndexOf, indexOf, map, flatMap, filter, take, drop, slice, slice, takeWhile, dropWhile, reverse, contains, subseq, toArray, toSeq, projection, equalsWith, startsWith, startsWith, endsWith, indexOf, containsSlice
Methods inherited from Collection
toString
Methods inherited from Iterable
partition, foreach, forall, exists, find, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, toStream, mkString, mkString, mkString, addString, addString, addString, copyToArray, hasDefiniteSize
Methods inherited from PartialFunction
orElse, andThen
Methods inherited from Function1
compose
Methods inherited from AnyRef
getClass, equals, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def runCount : Int

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

protected def insertAt(n : Int, t : Page) : Unit
Overrides
BufferWrapper.insertAt

def +=(t : Page) : Unit
Append a single element to this buffer.
Parameters
elem - the element to append.

def length : Int
Returns the length of the sequence.
Returns
the sequence length.

def apply(n : Int) : Page