Serializable
public class Option extends Object implements Serializable
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
.
Constructor | Description |
---|---|
Option |
Creates a new Option object. |
Modifier and Type | Method | Description |
---|---|---|
AttributeSet |
getAttributes() |
Fetch the attributes associated with this option. |
String |
getLabel() |
Fetch the label associated with the option. |
String |
getValue() |
Convenient method to return the string associated with the value attribute. |
boolean |
isSelected() |
Fetches the selection state associated with this option. |
void |
setLabel |
Sets the label to be used for the option. |
protected void |
setSelection |
Sets the selected state. |
String |
toString() |
String representation is the label. |
public Option(AttributeSet attr)
attr
- the attributes associated with the option element. The attributes are copied to ensure they won't change.public void setLabel(String label)
label
- a label.public String getLabel()
public AttributeSet getAttributes()
public String toString()
protected void setSelection(boolean state)
state
- a selection statepublic boolean isSelected()
public String getValue()
value
attribute. If the value
has not been specified, the label
will be returned.value
attribute, or label
if the value has been not specified.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/text/html/Option.html