Liking cljdoc? Tell your friends :D

jdk.awt.Label

A Label object is a component for placing text in a container. A label displays a single line of read-only text. The text can be changed by the application, but a user cannot edit it directly.

For example, the code . . .

setLayout(new FlowLayout(FlowLayout.CENTER, 10, 10)); add(new Label("Hi There!")); add(new Label("Another Label"));

produces the following labels:

A Label object is a component for placing text in a
container. A label displays a single line of read-only text.
The text can be changed by the application, but a user cannot edit it
directly.

For example, the code . . .



setLayout(new FlowLayout(FlowLayout.CENTER, 10, 10));
add(new Label("Hi There!"));
add(new Label("Another Label"));

produces the following labels:
raw docstring

*-centerclj

Static Constant.

Indicates that the label should be centered.

type: int

Static Constant.

Indicates that the label should be centered.

type: int
raw docstring

*-leftclj

Static Constant.

Indicates that the label should be left justified.

type: int

Static Constant.

Indicates that the label should be left justified.

type: int
raw docstring

*-rightclj

Static Constant.

Indicates that the label should be right justified.

type: int

Static Constant.

Indicates that the label should be right justified.

type: int
raw docstring

->labelclj

(->label)
(->label text)
(->label text alignment)

Constructor.

Constructs a new label that presents the specified string of text with the specified alignment. Possible values for alignment are Label.LEFT, Label.RIGHT, and Label.CENTER.

text - the string that the label presents. A null value will be accepted without causing a NullPointerException to be thrown. - java.lang.String alignment - the alignment value. - int

throws: java.awt.HeadlessException - if GraphicsEnvironment.isHeadless() returns true.

Constructor.

Constructs a new label that presents the specified string of
 text with the specified alignment.
 Possible values for alignment are Label.LEFT,
 Label.RIGHT, and Label.CENTER.

text - the string that the label presents. A null value will be accepted without causing a NullPointerException to be thrown. - `java.lang.String`
alignment - the alignment value. - `int`

throws: java.awt.HeadlessException - if GraphicsEnvironment.isHeadless() returns true.
raw docstring

add-notifyclj

(add-notify this)

Creates the peer for this label. The peer allows us to modify the appearance of the label without changing its functionality.

Creates the peer for this label.  The peer allows us to
modify the appearance of the label without changing its
functionality.
raw docstring

get-accessible-contextclj

(get-accessible-context this)

Gets the AccessibleContext associated with this Label. For labels, the AccessibleContext takes the form of an AccessibleAWTLabel. A new AccessibleAWTLabel instance is created if necessary.

returns: an AccessibleAWTLabel that serves as the AccessibleContext of this Label - javax.accessibility.AccessibleContext

Gets the AccessibleContext associated with this Label.
 For labels, the AccessibleContext takes the form of an
 AccessibleAWTLabel.
 A new AccessibleAWTLabel instance is created if necessary.

returns: an AccessibleAWTLabel that serves as the
         AccessibleContext of this Label - `javax.accessibility.AccessibleContext`
raw docstring

get-alignmentclj

(get-alignment this)

Gets the current alignment of this label. Possible values are Label.LEFT, Label.RIGHT, and Label.CENTER.

returns: int

Gets the current alignment of this label. Possible values are
 Label.LEFT, Label.RIGHT, and
 Label.CENTER.

returns: `int`
raw docstring

get-textclj

(get-text this)

Gets the text of this label.

returns: the text of this label, or null if the text has been set to null. - java.lang.String

Gets the text of this label.

returns: the text of this label, or null if
             the text has been set to null. - `java.lang.String`
raw docstring

set-alignmentclj

(set-alignment this alignment)

Sets the alignment for this label to the specified alignment. Possible values are Label.LEFT, Label.RIGHT, and Label.CENTER.

alignment - the alignment to be set. - int

throws: java.lang.IllegalArgumentException - if an improper value for alignment is given.

Sets the alignment for this label to the specified alignment.
 Possible values are Label.LEFT,
 Label.RIGHT, and Label.CENTER.

alignment - the alignment to be set. - `int`

throws: java.lang.IllegalArgumentException - if an improper value for alignment is given.
raw docstring

set-textclj

(set-text this text)

Sets the text for this label to the specified text.

text - the text that this label displays. If text is null, it is treated for display purposes like an empty string "". - java.lang.String

Sets the text for this label to the specified text.

text - the text that this label displays. If text is null, it is treated for display purposes like an empty string "". - `java.lang.String`
raw docstring

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

× close