Liking cljdoc? Tell your friends :D

javax.swing.tree.MutableTreeNode

Defines the requirements for a tree node object that can change -- by adding or removing child nodes, or by changing the contents of a user object stored in the node.

Defines the requirements for a tree node object that can change --
by adding or removing child nodes, or by changing the contents
of a user object stored in the node.
raw docstring

insertclj

(insert this child index)

Adds child to the receiver at index. child will be messaged with setParent.

child - javax.swing.tree.MutableTreeNode index - int

Adds child to the receiver at index.
 child will be messaged with setParent.

child - `javax.swing.tree.MutableTreeNode`
index - `int`
raw docstring

removeclj

(remove this index)

Removes the child at index from the receiver.

index - int

Removes the child at index from the receiver.

index - `int`
raw docstring

remove-from-parentclj

(remove-from-parent this)

Removes the receiver from its parent.

Removes the receiver from its parent.
raw docstring

set-parentclj

(set-parent this new-parent)

Sets the parent of the receiver to newParent.

new-parent - javax.swing.tree.MutableTreeNode

Sets the parent of the receiver to newParent.

new-parent - `javax.swing.tree.MutableTreeNode`
raw docstring

set-user-objectclj

(set-user-object this object)

Resets the user object of the receiver to object.

object - java.lang.Object

Resets the user object of the receiver to object.

object - `java.lang.Object`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close