trait TreeModel[A] extends AnyRef
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- TreeModel
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def filter(p: (A) => Boolean): TreeModel[A]
- abstract def getChildrenOf(parentPath: Path[A]): Seq[A]
- abstract def insertUnder(parentPath: Path[A], newValue: A, index: Int): Boolean
- abstract def isExternalModel: Boolean
- abstract def map[B](f: (A) => B)(implicit arg0: ClassTag[B]): TreeModel[B]
- abstract def pathToTreePath(path: Path[A]): TreePath
- abstract val peer: javax.swing.tree.TreeModel
- abstract def remove(pathToRemove: Path[A]): Boolean
- abstract def roots: Seq[A]
- abstract def toInternalModel: InternalTreeModel[A]
- abstract def treePathToPath(tp: TreePath): Path[A]
- abstract def update(path: Path[A], newValue: A): Unit
Replace the item at the given path in the tree with a new value.
Replace the item at the given path in the tree with a new value. Events are fired as appropriate.
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def breadthFirstIterator: Iterator[A]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def depthFirstIterator: Iterator[A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def foreach[U](f: (A) => U): Unit
- def getChildPathsOf(parentPath: Path[A]): Seq[Path[A]]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def insertAfter(path: Path[A], newValue: A): Boolean
- def insertBefore(path: Path[A], newValue: A): Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def siblingsUnder(parentPath: Path[A]): Seq[A]
- Attributes
- protected
- def size: Int
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unpackNode(node: Any): A
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()