Liking cljdoc? Tell your friends :D

javax.swing.JSeparator

JSeparator provides a general purpose component for implementing divider lines - most commonly used as a divider between menu items that breaks them up into logical groupings. Instead of using JSeparator directly, you can use the JMenu or JPopupMenu addSeparator method to create and add a separator. JSeparators may also be used elsewhere in a GUI wherever a visual divider is useful.

For more information and examples see How to Use Menus, a section in The Java Tutorial.

Warning: Swing is not thread safe. For more information see Swing's Threading Policy.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans™ has been added to the java.beans package. Please see XMLEncoder.

JSeparator provides a general purpose component for
implementing divider lines - most commonly used as a divider
between menu items that breaks them up into logical groupings.
Instead of using JSeparator directly,
you can use the JMenu or JPopupMenu
addSeparator method to create and add a separator.
JSeparators may also be used elsewhere in a GUI
wherever a visual divider is useful.



For more information and examples see
How to Use Menus,
a section in The Java Tutorial.

Warning: Swing is not thread safe. For more
information see Swing's Threading
Policy.

Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing.  As of 1.4, support for long term storage
of all JavaBeans™
has been added to the java.beans package.
Please see XMLEncoder.
raw docstring

->j-separatorclj

(->j-separator)
(->j-separator orientation)

Constructor.

Creates a new separator with the specified horizontal or vertical orientation.

orientation - an integer specifying SwingConstants.HORIZONTAL or SwingConstants.VERTICAL - int

throws: java.lang.IllegalArgumentException - if orientation is neither SwingConstants.HORIZONTAL nor SwingConstants.VERTICAL

Constructor.

Creates a new separator with the specified horizontal or
 vertical orientation.

orientation - an integer specifying SwingConstants.HORIZONTAL or SwingConstants.VERTICAL - `int`

throws: java.lang.IllegalArgumentException - if orientation is neither SwingConstants.HORIZONTAL nor SwingConstants.VERTICAL
raw docstring

get-accessible-contextclj

(get-accessible-context this)

Gets the AccessibleContext associated with this JSeparator. For separators, the AccessibleContext takes the form of an AccessibleJSeparator. A new AccessibleJSeparator instance is created if necessary.

returns: an AccessibleJSeparator that serves as the AccessibleContext of this JSeparator - javax.accessibility.AccessibleContext

Gets the AccessibleContext associated with this JSeparator.
 For separators, the AccessibleContext takes the form of an
 AccessibleJSeparator.
 A new AccessibleJSeparator instance is created if necessary.

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

get-orientationclj

(get-orientation this)

Returns the orientation of this separator.

returns: The value of the orientation property, one of the following constants defined in SwingConstants: VERTICAL, or HORIZONTAL. - int

Returns the orientation of this separator.

returns: The value of the orientation property, one of the
           following constants defined in SwingConstants:
           VERTICAL, or
           HORIZONTAL. - `int`
raw docstring

get-uiclj

(get-ui this)

Returns the L&F object that renders this component.

returns: the SeparatorUI object that renders this component - javax.swing.plaf.SeparatorUI

Returns the L&F object that renders this component.

returns: the SeparatorUI object that renders this component - `javax.swing.plaf.SeparatorUI`
raw docstring

get-ui-class-idclj

(get-ui-class-id this)

Returns the name of the L&F class that renders this component.

returns: the string "SeparatorUI" - java.lang.String

Returns the name of the L&F class that renders this component.

returns: the string "SeparatorUI" - `java.lang.String`
raw docstring

set-orientationclj

(set-orientation this orientation)

Sets the orientation of the separator. The default value of this property is HORIZONTAL.

orientation - either SwingConstants.HORIZONTAL or SwingConstants.VERTICAL - int

throws: java.lang.IllegalArgumentException - if orientation is neither SwingConstants.HORIZONTAL nor SwingConstants.VERTICAL

Sets the orientation of the separator.
 The default value of this property is HORIZONTAL.

orientation - either SwingConstants.HORIZONTAL or SwingConstants.VERTICAL - `int`

throws: java.lang.IllegalArgumentException - if orientation is neither SwingConstants.HORIZONTAL nor SwingConstants.VERTICAL
raw docstring

set-uiclj

(set-ui this ui)

Sets the L&F object that renders this component.

ui - the SeparatorUI L&F object - javax.swing.plaf.SeparatorUI

Sets the L&F object that renders this component.

ui - the SeparatorUI L&F object - `javax.swing.plaf.SeparatorUI`
raw docstring

update-uiclj

(update-ui this)

Resets the UI property to a value from the current look and feel.

Resets the UI property to a value from the current look and feel.
raw docstring

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

× close