Serialized Form


Package java.applet

Class java.applet.Applet sample code for java.applet.Applet definition code for java.applet.Applet extends Panel sample code for java.awt.Panel definition code for java.awt.Panel implements Serializable

serialVersionUID: -5836846270535785031L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Read an applet from an object input stream.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless() returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
Since:
1.4
See Also:
GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless()
Serialized Fields

accessibleContext

AccessibleContext sample code for javax.accessibility.AccessibleContext definition code for javax.accessibility.AccessibleContext  accessibleContext

Class java.applet.Applet.AccessibleApplet sample code for java.applet.Applet.AccessibleApplet definition code for java.applet.Applet.AccessibleApplet extends Panel.AccessibleAWTPanel sample code for java.awt.Panel.AccessibleAWTPanel definition code for java.awt.Panel.AccessibleAWTPanel implements Serializable

serialVersionUID: 8127374778187708896L


Package java.awt

Class java.awt.AWTError sample code for java.awt.AWTError definition code for java.awt.AWTError extends Error sample code for java.lang.Error definition code for java.lang.Error implements Serializable

serialVersionUID: -1819846354050686206L

Class java.awt.AWTEvent sample code for java.awt.AWTEvent definition code for java.awt.AWTEvent extends EventObject sample code for java.util.EventObject definition code for java.util.EventObject implements Serializable

serialVersionUID: -1825314779160409405L

Serialized Fields

bdata

byte[] bdata

id

int id
The event's id.

 
See Also:
AWTEvent.getID() sample code for java.awt.AWTEvent.getID() definition code for java.awt.AWTEvent.getID() , AWTEvent.AWTEvent(java.lang.Object, int) sample code for java.awt.AWTEvent.AWTEvent(java.lang.Object, int) definition code for java.awt.AWTEvent.AWTEvent(java.lang.Object, int)

consumed

boolean consumed
Controls whether or not the event is sent back down to the peer once the source has processed it - false means it's sent to the peer; true means it's not. Semantic events always have a 'true' value since they were generated by the peer in response to a low-level event.

 
See Also:
AWTEvent.consume() sample code for java.awt.AWTEvent.consume() definition code for java.awt.AWTEvent.consume() , AWTEvent.isConsumed() sample code for java.awt.AWTEvent.isConsumed() definition code for java.awt.AWTEvent.isConsumed()

Class java.awt.AWTException sample code for java.awt.AWTException definition code for java.awt.AWTException extends Exception sample code for java.lang.Exception definition code for java.lang.Exception implements Serializable

serialVersionUID: -1900414231151323879L

Class java.awt.AWTKeyStroke sample code for java.awt.AWTKeyStroke definition code for java.awt.AWTKeyStroke extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -6430539691155161871L

Serialization Methods

readResolve

protected Object sample code for java.lang.Object definition code for java.lang.Object  readResolve()
                      throws ObjectStreamException sample code for java.io.ObjectStreamException definition code for java.io.ObjectStreamException 
Returns a cached instance of AWTKeyStroke (or a subclass of AWTKeyStroke) which is equal to this instance.

Throws:
ObjectStreamException sample code for java.io.ObjectStreamException definition code for java.io.ObjectStreamException
Serialized Fields

keyChar

char keyChar

keyCode

int keyCode

modifiers

int modifiers

onKeyRelease

boolean onKeyRelease

Class java.awt.AWTPermission sample code for java.awt.AWTPermission definition code for java.awt.AWTPermission extends BasicPermission sample code for java.security.BasicPermission definition code for java.security.BasicPermission implements Serializable

serialVersionUID: 8890392402588814465L

Class java.awt.BorderLayout sample code for java.awt.BorderLayout definition code for java.awt.BorderLayout extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -8658291919501921765L

Serialized Fields

hgap

int hgap
Constructs a border layout with the horizontal gaps between components. The horizontal gap is specified by hgap.

 
See Also:
BorderLayout.getHgap() sample code for java.awt.BorderLayout.getHgap() definition code for java.awt.BorderLayout.getHgap() , BorderLayout.setHgap(int) sample code for java.awt.BorderLayout.setHgap(int) definition code for java.awt.BorderLayout.setHgap(int)

vgap

int vgap
Constructs a border layout with the vertical gaps between components. The vertical gap is specified by vgap.

 
See Also:
BorderLayout.getVgap() sample code for java.awt.BorderLayout.getVgap() definition code for java.awt.BorderLayout.getVgap() , BorderLayout.setVgap(int) sample code for java.awt.BorderLayout.setVgap(int) definition code for java.awt.BorderLayout.setVgap(int)

north

Component sample code for java.awt.Component definition code for java.awt.Component  north
Constant to specify components location to be the north portion of the border layout.

 
See Also:
BorderLayout.getChild(String, boolean) sample code for java.awt.BorderLayout.getChild(java.lang.String, boolean) definition code for java.awt.BorderLayout.getChild(java.lang.String, boolean) , BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) sample code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) definition code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) , BorderLayout.getLayoutAlignmentX(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) , BorderLayout.getLayoutAlignmentY(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) , BorderLayout.removeLayoutComponent(java.awt.Component) sample code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component) definition code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component)

west

Component sample code for java.awt.Component definition code for java.awt.Component  west
Constant to specify components location to be the west portion of the border layout.

 
See Also:
BorderLayout.getChild(String, boolean) sample code for java.awt.BorderLayout.getChild(java.lang.String, boolean) definition code for java.awt.BorderLayout.getChild(java.lang.String, boolean) , BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) sample code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) definition code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) , BorderLayout.getLayoutAlignmentX(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) , BorderLayout.getLayoutAlignmentY(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) , BorderLayout.removeLayoutComponent(java.awt.Component) sample code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component) definition code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component)

east

Component sample code for java.awt.Component definition code for java.awt.Component  east
Constant to specify components location to be the east portion of the border layout.

 
See Also:
BorderLayout.getChild(String, boolean) sample code for java.awt.BorderLayout.getChild(java.lang.String, boolean) definition code for java.awt.BorderLayout.getChild(java.lang.String, boolean) , BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) sample code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) definition code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) , BorderLayout.getLayoutAlignmentX(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) , BorderLayout.getLayoutAlignmentY(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) , BorderLayout.removeLayoutComponent(java.awt.Component) sample code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component) definition code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component)

south

Component sample code for java.awt.Component definition code for java.awt.Component  south
Constant to specify components location to be the south portion of the border layout.

 
See Also:
BorderLayout.getChild(String, boolean) sample code for java.awt.BorderLayout.getChild(java.lang.String, boolean) definition code for java.awt.BorderLayout.getChild(java.lang.String, boolean) , BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) sample code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) definition code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) , BorderLayout.getLayoutAlignmentX(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) , BorderLayout.getLayoutAlignmentY(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) , BorderLayout.removeLayoutComponent(java.awt.Component) sample code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component) definition code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component)

center

Component sample code for java.awt.Component definition code for java.awt.Component  center
Constant to specify components location to be the center portion of the border layout.

 
See Also:
BorderLayout.getChild(String, boolean) sample code for java.awt.BorderLayout.getChild(java.lang.String, boolean) definition code for java.awt.BorderLayout.getChild(java.lang.String, boolean) , BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) sample code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) definition code for java.awt.BorderLayout.addLayoutComponent(java.awt.Component, java.lang.Object) , BorderLayout.getLayoutAlignmentX(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentX(java.awt.Container) , BorderLayout.getLayoutAlignmentY(java.awt.Container) sample code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) definition code for java.awt.BorderLayout.getLayoutAlignmentY(java.awt.Container) , BorderLayout.removeLayoutComponent(java.awt.Component) sample code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component) definition code for java.awt.BorderLayout.removeLayoutComponent(java.awt.Component)

firstLine

Component sample code for java.awt.Component definition code for java.awt.Component  firstLine
A relative positioning constant, that can be used instead of north, south, east, west or center. mixing the two types of constants can lead to unpredicable results. If you use both types, the relative constants will take precedence. For example, if you add components using both the NORTH and BEFORE_FIRST_LINE constants in a container whose orientation is LEFT_TO_RIGHT, only the BEFORE_FIRST_LINE will be layed out. This will be the same for lastLine, firstItem, lastItem.

 

lastLine

Component sample code for java.awt.Component definition code for java.awt.Component  lastLine
A relative positioning constant, that can be used instead of north, south, east, west or center. Please read Description for firstLine.

 

firstItem

Component sample code for java.awt.Component definition code for java.awt.Component  firstItem
A relative positioning constant, that can be used instead of north, south, east, west or center. Please read Description for firstLine.

 

lastItem

Component sample code for java.awt.Component definition code for java.awt.Component  lastItem
A relative positioning constant, that can be used instead of north, south, east, west or center. Please read Description for firstLine.

 

Class java.awt.Button sample code for java.awt.Button definition code for java.awt.Button extends Component sample code for java.awt.Component definition code for java.awt.Component implements Serializable

serialVersionUID: -8774683716313001058L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream and if it isn't null adds a listener to receive action events fired by the button. Unrecognized keys or values will be ignored.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
Button.removeActionListener(ActionListener) sample code for java.awt.Button.removeActionListener(java.awt.event.ActionListener) definition code for java.awt.Button.removeActionListener(java.awt.event.ActionListener) , Button.addActionListener(ActionListener) sample code for java.awt.Button.addActionListener(java.awt.event.ActionListener) definition code for java.awt.Button.addActionListener(java.awt.event.ActionListener) , GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless() , Button.writeObject(ObjectOutputStream) sample code for java.awt.Button.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Button.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes a list of serializable ActionListeners as optional data. The non-serializable ActionListeners are detected and no attempt is made to serialize them.

Serial Data:
null terminated sequence of 0 or more pairs: the pair consists of a String and an Object; the String indicates the type of object and is one of the following: actionListenerK indicating an ActionListener object
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Component.actionListenerK sample code for java.awt.Component.actionListenerK definition code for java.awt.Component.actionListenerK , Button.readObject(ObjectInputStream) sample code for java.awt.Button.readObject(java.io.ObjectInputStream) definition code for java.awt.Button.readObject(java.io.ObjectInputStream)
Serialized Fields

label

String sample code for java.lang.String definition code for java.lang.String  label
The button's label. This value may be null.

 
See Also:
Button.getLabel() sample code for java.awt.Button.getLabel() definition code for java.awt.Button.getLabel() , setLabel()

actionCommand

String sample code for java.lang.String definition code for java.lang.String  actionCommand
The action to be performed once a button has been pressed. This value may be null.

 
See Also:
Button.getActionCommand() sample code for java.awt.Button.getActionCommand() definition code for java.awt.Button.getActionCommand() , setActionCommand()

buttonSerializedDataVersion

int buttonSerializedDataVersion

Class java.awt.Button.AccessibleAWTButton sample code for java.awt.Button.AccessibleAWTButton definition code for java.awt.Button.AccessibleAWTButton extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: -5932203980244017102L

Class java.awt.Canvas sample code for java.awt.Canvas definition code for java.awt.Canvas extends Component sample code for java.awt.Component definition code for java.awt.Component implements Serializable

serialVersionUID: -2284879212465893870L

Class java.awt.Canvas.AccessibleAWTCanvas sample code for java.awt.Canvas.AccessibleAWTCanvas definition code for java.awt.Canvas.AccessibleAWTCanvas extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: -6325592262103146699L

Class java.awt.CardLayout sample code for java.awt.CardLayout definition code for java.awt.CardLayout extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -4328196481005934313L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException 
Reads serializable fields from stream.

Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes serializable fields to stream.

Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
Serialized Fields

currentCard

int currentCard

hgap

int hgap

tab

Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable <K,V> tab
deprectated, for forward compatibility only

vector

Vector sample code for java.util.Vector definition code for java.util.Vector <E> vector

vgap

int vgap

Class java.awt.Checkbox sample code for java.awt.Checkbox definition code for java.awt.Checkbox extends Component sample code for java.awt.Component definition code for java.awt.Component implements Serializable

serialVersionUID: 7270714317450821763L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream and if it isn't null adds a listener to receive item events fired by the Checkbox. Unrecognized keys or values will be ignored.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
Checkbox.removeItemListener(ItemListener) sample code for java.awt.Checkbox.removeItemListener(java.awt.event.ItemListener) definition code for java.awt.Checkbox.removeItemListener(java.awt.event.ItemListener) , Checkbox.addItemListener(ItemListener) sample code for java.awt.Checkbox.addItemListener(java.awt.event.ItemListener) definition code for java.awt.Checkbox.addItemListener(java.awt.event.ItemListener) , GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless() , Checkbox.writeObject(ObjectOutputStream) sample code for java.awt.Checkbox.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Checkbox.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes a list of serializable ItemListeners as optional data. The non-serializable ItemListeners are detected and no attempt is made to serialize them.

Serial Data:
null terminated sequence of 0 or more pairs; the pair consists of a String and an Object; the String indicates the type of object and is one of the following: itemListenerK indicating an ItemListener object
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Component.itemListenerK sample code for java.awt.Component.itemListenerK definition code for java.awt.Component.itemListenerK , Checkbox.readObject(ObjectInputStream) sample code for java.awt.Checkbox.readObject(java.io.ObjectInputStream) definition code for java.awt.Checkbox.readObject(java.io.ObjectInputStream)
Serialized Fields

label

String sample code for java.lang.String definition code for java.lang.String  label
The label of the Checkbox. This field can be null.

 
See Also:
Checkbox.getLabel() sample code for java.awt.Checkbox.getLabel() definition code for java.awt.Checkbox.getLabel() , #setLabel(label)

state

boolean state
The state of the Checkbox.

 
See Also:
Checkbox.getState() sample code for java.awt.Checkbox.getState() definition code for java.awt.Checkbox.getState() , #setState(state)

group

CheckboxGroup sample code for java.awt.CheckboxGroup definition code for java.awt.CheckboxGroup  group
The check box group. This field can be null indicating that the checkbox is not a group checkbox.

 
See Also:
#getCheckBoxGroup(), #setCheckBoxGroup(CheckBoxGroup)

checkboxSerializedDataVersion

int checkboxSerializedDataVersion

Class java.awt.Checkbox.AccessibleAWTCheckbox sample code for java.awt.Checkbox.AccessibleAWTCheckbox definition code for java.awt.Checkbox.AccessibleAWTCheckbox extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 7881579233144754107L

Class java.awt.CheckboxGroup sample code for java.awt.CheckboxGroup definition code for java.awt.CheckboxGroup extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: 3729780091441768983L

Serialized Fields

selectedCheckbox

Checkbox sample code for java.awt.Checkbox definition code for java.awt.Checkbox  selectedCheckbox
The current choice.

 
See Also:
CheckboxGroup.getCurrent() sample code for java.awt.CheckboxGroup.getCurrent() definition code for java.awt.CheckboxGroup.getCurrent() , CheckboxGroup.setCurrent(Checkbox) sample code for java.awt.CheckboxGroup.setCurrent(java.awt.Checkbox) definition code for java.awt.CheckboxGroup.setCurrent(java.awt.Checkbox)

Class java.awt.CheckboxMenuItem sample code for java.awt.CheckboxMenuItem definition code for java.awt.CheckboxMenuItem extends MenuItem sample code for java.awt.MenuItem definition code for java.awt.MenuItem implements Serializable

serialVersionUID: 6190621106981774043L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException 
Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes a list of serializable ItemListeners as optional data. The non-serializable ItemListeners are detected and no attempt is made to serialize them.

Serial Data:
null terminated sequence of 0 or more pairs; the pair consists of a String and an Object; the String indicates the type of object and is one of the following: itemListenerK indicating an ItemListener object
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Component.itemListenerK sample code for java.awt.Component.itemListenerK definition code for java.awt.Component.itemListenerK , CheckboxMenuItem.readObject(ObjectInputStream) sample code for java.awt.CheckboxMenuItem.readObject(java.io.ObjectInputStream) definition code for java.awt.CheckboxMenuItem.readObject(java.io.ObjectInputStream)
Serialized Fields

state

boolean state
The state of a checkbox menu item

 
See Also:
CheckboxMenuItem.getState() sample code for java.awt.CheckboxMenuItem.getState() definition code for java.awt.CheckboxMenuItem.getState() , CheckboxMenuItem.setState(boolean) sample code for java.awt.CheckboxMenuItem.setState(boolean) definition code for java.awt.CheckboxMenuItem.setState(boolean)

checkboxMenuItemSerializedDataVersion

int checkboxMenuItemSerializedDataVersion

Class java.awt.CheckboxMenuItem.AccessibleAWTCheckboxMenuItem sample code for java.awt.CheckboxMenuItem.AccessibleAWTCheckboxMenuItem definition code for java.awt.CheckboxMenuItem.AccessibleAWTCheckboxMenuItem extends MenuItem.AccessibleAWTMenuItem sample code for java.awt.MenuItem.AccessibleAWTMenuItem definition code for java.awt.MenuItem.AccessibleAWTMenuItem implements Serializable

serialVersionUID: -1122642964303476L

Class java.awt.Choice sample code for java.awt.Choice definition code for java.awt.Choice extends Component sample code for java.awt.Component definition code for java.awt.Component implements Serializable

serialVersionUID: -4075310674757313071L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream and if it isn't null adds a listener to receive item events fired by the Choice item. Unrecognized keys or values will be ignored.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
Choice.removeItemListener(ItemListener) sample code for java.awt.Choice.removeItemListener(java.awt.event.ItemListener) definition code for java.awt.Choice.removeItemListener(java.awt.event.ItemListener) , Choice.addItemListener(ItemListener) sample code for java.awt.Choice.addItemListener(java.awt.event.ItemListener) definition code for java.awt.Choice.addItemListener(java.awt.event.ItemListener) , GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless() , Choice.writeObject(ObjectOutputStream) sample code for java.awt.Choice.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Choice.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes a list of serializable ItemListeners as optional data. The non-serializable ItemListeners are detected and no attempt is made to serialize them.

Serial Data:
null terminated sequence of 0 or more pairs; the pair consists of a String and an Object; the String indicates the type of object and is one of the following: itemListenerK indicating an ItemListener object
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Component.itemListenerK sample code for java.awt.Component.itemListenerK definition code for java.awt.Component.itemListenerK , Choice.readObject(ObjectInputStream) sample code for java.awt.Choice.readObject(java.io.ObjectInputStream) definition code for java.awt.Choice.readObject(java.io.ObjectInputStream)
Serialized Fields

pItems

Vector sample code for java.util.Vector definition code for java.util.Vector <E> pItems
The items for the Choice. This can be a null value.

 
See Also:
Choice.add(String) sample code for java.awt.Choice.add(java.lang.String) definition code for java.awt.Choice.add(java.lang.String) , Choice.addItem(String) sample code for java.awt.Choice.addItem(java.lang.String) definition code for java.awt.Choice.addItem(java.lang.String) , Choice.getItem(int) sample code for java.awt.Choice.getItem(int) definition code for java.awt.Choice.getItem(int) , Choice.getItemCount() sample code for java.awt.Choice.getItemCount() definition code for java.awt.Choice.getItemCount() , Choice.insert(String, int) sample code for java.awt.Choice.insert(java.lang.String, int) definition code for java.awt.Choice.insert(java.lang.String, int) , Choice.remove(String) sample code for java.awt.Choice.remove(java.lang.String) definition code for java.awt.Choice.remove(java.lang.String)

selectedIndex

int selectedIndex
The index of the current choice for this Choice or -1 if nothing is selected.

 
See Also:
Choice.getSelectedItem() sample code for java.awt.Choice.getSelectedItem() definition code for java.awt.Choice.getSelectedItem() , Choice.select(int) sample code for java.awt.Choice.select(int) definition code for java.awt.Choice.select(int)

choiceSerializedDataVersion

int choiceSerializedDataVersion

Class java.awt.Choice.AccessibleAWTChoice sample code for java.awt.Choice.AccessibleAWTChoice definition code for java.awt.Choice.AccessibleAWTChoice extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 7175603582428509322L

Class java.awt.Color sample code for java.awt.Color definition code for java.awt.Color extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: 118526816881161077L

Serialized Fields

value

int value
The color value.

 
See Also:
Color.getRGB() sample code for java.awt.Color.getRGB() definition code for java.awt.Color.getRGB()

frgbvalue

float[] frgbvalue
The color value in the default sRGB ColorSpace as float components (no alpha). If null after object construction, this must be an sRGB color constructed with 8-bit precision, so compute from the int color value.

 
See Also:
Color.getRGBColorComponents(float[]) sample code for java.awt.Color.getRGBColorComponents(float[]) definition code for java.awt.Color.getRGBColorComponents(float[]) , Color.getRGBComponents(float[]) sample code for java.awt.Color.getRGBComponents(float[]) definition code for java.awt.Color.getRGBComponents(float[])

fvalue

float[] fvalue
The color value in the native ColorSpace as float components (no alpha). If null after object construction, this must be an sRGB color constructed with 8-bit precision, so compute from the int color value.

 
See Also:
Color.getRGBColorComponents(float[]) sample code for java.awt.Color.getRGBColorComponents(float[]) definition code for java.awt.Color.getRGBColorComponents(float[]) , Color.getRGBComponents(float[]) sample code for java.awt.Color.getRGBComponents(float[]) definition code for java.awt.Color.getRGBComponents(float[])

falpha

float falpha
The alpha value as a float component. If frgbvalue is null, this is not valid data, so compute from the int color value.

 
See Also:
Color.getRGBComponents(float[]) sample code for java.awt.Color.getRGBComponents(float[]) definition code for java.awt.Color.getRGBComponents(float[]) , Color.getComponents(float[]) sample code for java.awt.Color.getComponents(float[]) definition code for java.awt.Color.getComponents(float[])

cs

ColorSpace sample code for java.awt.color.ColorSpace definition code for java.awt.color.ColorSpace  cs
The ColorSpace. If null, then it's default is sRGB.

 
See Also:
Color.getColor(java.lang.String) sample code for java.awt.Color.getColor(java.lang.String) definition code for java.awt.Color.getColor(java.lang.String) , Color.getColorSpace() sample code for java.awt.Color.getColorSpace() definition code for java.awt.Color.getColorSpace() , Color.getColorComponents(float[]) sample code for java.awt.Color.getColorComponents(float[]) definition code for java.awt.Color.getColorComponents(float[])

Class java.awt.Component sample code for java.awt.Component definition code for java.awt.Component extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -7644114512714619750L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException 
Reads the ObjectInputStream and if it isn't null adds a listener to receive a variety of events fired by the component. Unrecognized keys or values will be ignored.

Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
Component.writeObject(ObjectOutputStream) sample code for java.awt.Component.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Component.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes a variety of serializable listeners as optional data. The non-serializable listeners are detected and no attempt is made to serialize them.

Serial Data:
null terminated sequence of 0 or more pairs; the pair consists of a String and an Object; the String indicates the type of object and is one of the following (as of 1.4): componentListenerK indicating an ComponentListener object; focusListenerK indicating an FocusListener object; keyListenerK indicating an KeyListener object; mouseListenerK indicating an MouseListener object; mouseMotionListenerK indicating an MouseMotionListener object; inputListenerK indicating an InputListener object; hierarchyListenerK indicating an HierarchyListener object; hierarchyBoundsListenerK indicating an HierarchyBoundsListener object; mouseWheelListenerK indicating an MouseWheelListener object, an optional ComponentOrientation (after inputMethodListener, as of 1.2)
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Component.componentListenerK sample code for java.awt.Component.componentListenerK definition code for java.awt.Component.componentListenerK , Component.focusListenerK sample code for java.awt.Component.focusListenerK definition code for java.awt.Component.focusListenerK , Component.keyListenerK sample code for java.awt.Component.keyListenerK definition code for java.awt.Component.keyListenerK , Component.mouseListenerK sample code for java.awt.Component.mouseListenerK definition code for java.awt.Component.mouseListenerK , Component.mouseMotionListenerK sample code for java.awt.Component.mouseMotionListenerK definition code for java.awt.Component.mouseMotionListenerK , #inputListenerK, Component.hierarchyListenerK sample code for java.awt.Component.hierarchyListenerK definition code for java.awt.Component.hierarchyListenerK , Component.hierarchyBoundsListenerK sample code for java.awt.Component.hierarchyBoundsListenerK definition code for java.awt.Component.hierarchyBoundsListenerK , Component.mouseWheelListenerK sample code for java.awt.Component.mouseWheelListenerK definition code for java.awt.Component.mouseWheelListenerK , Component.readObject(ObjectInputStream) sample code for java.awt.Component.readObject(java.io.ObjectInputStream) definition code for java.awt.Component.readObject(java.io.ObjectInputStream)
Serialized Fields

x

int x
The x position of the component in the parent's coordinate system.

 
See Also:
Component.getLocation() sample code for java.awt.Component.getLocation() definition code for java.awt.Component.getLocation()

y

int y
The y position of the component in the parent's coordinate system.

 
See Also:
Component.getLocation() sample code for java.awt.Component.getLocation() definition code for java.awt.Component.getLocation()

width

int width
The width of the component.

 
See Also:
Component.getSize() sample code for java.awt.Component.getSize() definition code for java.awt.Component.getSize()

height

int height
The height of the component.

 
See Also:
Component.getSize() sample code for java.awt.Component.getSize() definition code for java.awt.Component.getSize()

foreground

Color sample code for java.awt.Color definition code for java.awt.Color  foreground
The foreground color for this component. foreground can be null.

 
See Also:
Component.getForeground() sample code for java.awt.Component.getForeground() definition code for java.awt.Component.getForeground() , Component.setForeground(java.awt.Color) sample code for java.awt.Component.setForeground(java.awt.Color) definition code for java.awt.Component.setForeground(java.awt.Color)

background

Color sample code for java.awt.Color definition code for java.awt.Color  background
The background color for this component. background can be null.

 
See Also:
Component.getBackground() sample code for java.awt.Component.getBackground() definition code for java.awt.Component.getBackground() , Component.setBackground(java.awt.Color) sample code for java.awt.Component.setBackground(java.awt.Color) definition code for java.awt.Component.setBackground(java.awt.Color)

font

Font sample code for java.awt.Font definition code for java.awt.Font  font
The font used by this component. The font can be null.

 
See Also:
Component.getFont() sample code for java.awt.Component.getFont() definition code for java.awt.Component.getFont() , Component.setFont(java.awt.Font) sample code for java.awt.Component.setFont(java.awt.Font) definition code for java.awt.Component.setFont(java.awt.Font)

peerFont

Font sample code for java.awt.Font definition code for java.awt.Font  peerFont
The font which the peer is currently using. (null if no peer exists.)


cursor

Cursor sample code for java.awt.Cursor definition code for java.awt.Cursor  cursor
The cursor displayed when pointer is over this component. This value can be null.

 
See Also:
Component.getCursor() sample code for java.awt.Component.getCursor() definition code for java.awt.Component.getCursor() , Component.setCursor(java.awt.Cursor) sample code for java.awt.Component.setCursor(java.awt.Cursor) definition code for java.awt.Component.setCursor(java.awt.Cursor)

locale

Locale sample code for java.util.Locale definition code for java.util.Locale  locale
The locale for the component.

 
See Also:
Component.getLocale() sample code for java.awt.Component.getLocale() definition code for java.awt.Component.getLocale() , Component.setLocale(java.util.Locale) sample code for java.awt.Component.setLocale(java.util.Locale) definition code for java.awt.Component.setLocale(java.util.Locale)

ignoreRepaint

boolean ignoreRepaint
True when the object should ignore all repaint events.

 
Since:
1.4
See Also:
Component.setIgnoreRepaint(boolean) sample code for java.awt.Component.setIgnoreRepaint(boolean) definition code for java.awt.Component.setIgnoreRepaint(boolean) , Component.getIgnoreRepaint() sample code for java.awt.Component.getIgnoreRepaint() definition code for java.awt.Component.getIgnoreRepaint()

visible

boolean visible
True when the object is visible. An object that is not visible is not drawn on the screen.

 
See Also:
Component.isVisible() sample code for java.awt.Component.isVisible() definition code for java.awt.Component.isVisible() , Component.setVisible(boolean) sample code for java.awt.Component.setVisible(boolean) definition code for java.awt.Component.setVisible(boolean)

enabled

boolean enabled
True when the object is enabled. An object that is not enabled does not interact with the user.

 
See Also:
Component.isEnabled() sample code for java.awt.Component.isEnabled() definition code for java.awt.Component.isEnabled() , Component.setEnabled(boolean) sample code for java.awt.Component.setEnabled(boolean) definition code for java.awt.Component.setEnabled(boolean)

valid

boolean valid
True when the object is valid. An invalid object needs to be layed out. This flag is set to false when the object size is changed.

 
See Also:
Component.isValid() sample code for java.awt.Component.isValid() definition code for java.awt.Component.isValid() , Component.validate() sample code for java.awt.Component.validate() definition code for java.awt.Component.validate() , Component.invalidate() sample code for java.awt.Component.invalidate() definition code for java.awt.Component.invalidate()

dropTarget

DropTarget sample code for java.awt.dnd.DropTarget definition code for java.awt.dnd.DropTarget  dropTarget
The DropTarget associated with this component.

 
Since:
1.2
See Also:
Component.setDropTarget(java.awt.dnd.DropTarget) sample code for java.awt.Component.setDropTarget(java.awt.dnd.DropTarget) definition code for java.awt.Component.setDropTarget(java.awt.dnd.DropTarget) , Component.getDropTarget() sample code for java.awt.Component.getDropTarget() definition code for java.awt.Component.getDropTarget()

popups

Vector sample code for java.util.Vector definition code for java.util.Vector <E> popups
 
See Also:
Component.add(java.awt.PopupMenu) sample code for java.awt.Component.add(java.awt.PopupMenu) definition code for java.awt.Component.add(java.awt.PopupMenu)

name

String sample code for java.lang.String definition code for java.lang.String  name
A component's name. This field can be null.

 
See Also:
Component.getName() sample code for java.awt.Component.getName() definition code for java.awt.Component.getName() , Component.setName(String) sample code for java.awt.Component.setName(java.lang.String) definition code for java.awt.Component.setName(java.lang.String)

nameExplicitlySet

boolean nameExplicitlySet
A bool to determine whether the name has been set explicitly. nameExplicitlySet will be false if the name has not been set and true if it has.

 
See Also:
Component.getName() sample code for java.awt.Component.getName() definition code for java.awt.Component.getName() , Component.setName(String) sample code for java.awt.Component.setName(java.lang.String) definition code for java.awt.Component.setName(java.lang.String)

focusable

boolean focusable
Indicates whether this Component can be focused.

 
Since:
1.4
See Also:
Component.setFocusable(boolean) sample code for java.awt.Component.setFocusable(boolean) definition code for java.awt.Component.setFocusable(boolean) , Component.isFocusable() sample code for java.awt.Component.isFocusable() definition code for java.awt.Component.isFocusable()

isFocusTraversableOverridden

int isFocusTraversableOverridden
Tracks whether this Component is relying on default focus travesability.

 
Since:
1.4

focusTraversalKeys

Set sample code for java.util.Set definition code for java.util.Set <E>[] focusTraversalKeys
The focus traversal keys. These keys will generate focus traversal behavior for Components for which focus traversal keys are enabled. If a value of null is specified for a traversal key, this Component inherits that traversal key from its parent. If all ancestors of this Component have null specified for that traversal key, then the current KeyboardFocusManager's default traversal key is used.

 
Since:
1.4
See Also:
Component.setFocusTraversalKeys(int, java.util.Set) sample code for java.awt.Component.setFocusTraversalKeys(int, java.util.Set) definition code for java.awt.Component.setFocusTraversalKeys(int, java.util.Set) , Component.getFocusTraversalKeys(int) sample code for java.awt.Component.getFocusTraversalKeys(int) definition code for java.awt.Component.getFocusTraversalKeys(int)

focusTraversalKeysEnabled

boolean focusTraversalKeysEnabled
Indicates whether focus traversal keys are enabled for this Component. Components for which focus traversal keys are disabled receive key events for focus traversal keys. Components for which focus traversal keys are enabled do not see these events; instead, the events are automatically converted to traversal operations.

 
Since:
1.4
See Also:
Component.setFocusTraversalKeysEnabled(boolean) sample code for java.awt.Component.setFocusTraversalKeysEnabled(boolean) definition code for java.awt.Component.setFocusTraversalKeysEnabled(boolean) , Component.getFocusTraversalKeysEnabled() sample code for java.awt.Component.getFocusTraversalKeysEnabled() definition code for java.awt.Component.getFocusTraversalKeysEnabled()

minSize

Dimension sample code for java.awt.Dimension definition code for java.awt.Dimension  minSize
Minimum size. (This field perhaps should have been transient).

 

minSizeSet

boolean minSizeSet
Whether or not setMinimumSize has been invoked with a non-null value.


prefSize

Dimension sample code for java.awt.Dimension definition code for java.awt.Dimension  prefSize
Preferred size. (This field perhaps should have been transient).

 

prefSizeSet

boolean prefSizeSet
Whether or not setPreferredSize has been invoked with a non-null value.


maxSize

Dimension sample code for java.awt.Dimension definition code for java.awt.Dimension  maxSize
Maximum size

 

maxSizeSet

boolean maxSizeSet
Whether or not setMaximumSize has been invoked with a non-null value.


newEventsOnly

boolean newEventsOnly
newEventsOnly will be true if the event is one of the event types enabled for the component. It will then allow for normal processing to continue. If it is false the event is passed to the component's parent and up the ancestor tree until the event has been consumed.

 
See Also:
Component.dispatchEvent(java.awt.AWTEvent) sample code for java.awt.Component.dispatchEvent(java.awt.AWTEvent) definition code for java.awt.Component.dispatchEvent(java.awt.AWTEvent)

eventMask

long eventMask
The eventMask is ONLY set by subclasses via enableEvents. The mask should NOT be set when listeners are registered so that we can distinguish the difference between when listeners request events and subclasses request them. One bit is used to indicate whether input methods are enabled; this bit is set by enableInputMethods and is on by default.

 
See Also:
Component.enableInputMethods(boolean) sample code for java.awt.Component.enableInputMethods(boolean) definition code for java.awt.Component.enableInputMethods(boolean) , AWTEvent sample code for java.awt.AWTEvent definition code for java.awt.AWTEvent

changeSupport

PropertyChangeSupport sample code for java.beans.PropertyChangeSupport definition code for java.beans.PropertyChangeSupport  changeSupport
If any PropertyChangeListeners have been registered, the changeSupport field describes them.

 
Since:
1.2
See Also:
Component.addPropertyChangeListener(java.beans.PropertyChangeListener) sample code for java.awt.Component.addPropertyChangeListener(java.beans.PropertyChangeListener) definition code for java.awt.Component.addPropertyChangeListener(java.beans.PropertyChangeListener) , Component.removePropertyChangeListener(java.beans.PropertyChangeListener) sample code for java.awt.Component.removePropertyChangeListener(java.beans.PropertyChangeListener) definition code for java.awt.Component.removePropertyChangeListener(java.beans.PropertyChangeListener) , Component.firePropertyChange(java.lang.String, java.lang.Object, java.lang.Object) sample code for java.awt.Component.firePropertyChange(java.lang.String, java.lang.Object, java.lang.Object) definition code for java.awt.Component.firePropertyChange(java.lang.String, java.lang.Object, java.lang.Object)

isPacked

boolean isPacked

boundsOp

int boundsOp
Pseudoparameter for direct Geometry API (setLocation, setBounds setSize to signal setBounds what's changing. Should be used under TreeLock. This is only needed due to the inability to change the cross-calling order of public and deprecated methods.


componentSerializedDataVersion

int componentSerializedDataVersion
Component Serialized Data Version.

 

accessibleContext

AccessibleContext sample code for javax.accessibility.AccessibleContext definition code for javax.accessibility.AccessibleContext  accessibleContext

Class java.awt.Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent extends AccessibleContext sample code for javax.accessibility.AccessibleContext definition code for javax.accessibility.AccessibleContext implements Serializable

serialVersionUID: 642321655757800191L

Serialized Fields

accessibleAWTComponentHandler

ComponentListener sample code for java.awt.event.ComponentListener definition code for java.awt.event.ComponentListener  accessibleAWTComponentHandler

accessibleAWTFocusHandler

FocusListener sample code for java.awt.event.FocusListener definition code for java.awt.event.FocusListener  accessibleAWTFocusHandler

Class java.awt.ComponentOrientation sample code for java.awt.ComponentOrientation definition code for java.awt.ComponentOrientation extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

Serialized Fields

orientation

int orientation

Class java.awt.Container sample code for java.awt.Container definition code for java.awt.Container extends Component sample code for java.awt.Component definition code for java.awt.Component implements Serializable

serialVersionUID: 4613797578919906343L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException 
Deserializes this Container from the specified ObjectInputStream.

Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
Container.addContainerListener(java.awt.event.ContainerListener) sample code for java.awt.Container.addContainerListener(java.awt.event.ContainerListener) definition code for java.awt.Container.addContainerListener(java.awt.event.ContainerListener) , Container.writeObject(ObjectOutputStream) sample code for java.awt.Container.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Container.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Serializes this Container to the specified ObjectOutputStream.

Serial Data:
null terminated sequence of 0 or more pairs; the pair consists of a String and Object; the String indicates the type of object and is one of the following: containerListenerK indicating an ContainerListener object; the Container's FocusTraversalPolicy, or null
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Component.containerListenerK sample code for java.awt.Component.containerListenerK definition code for java.awt.Component.containerListenerK , Container.readObject(ObjectInputStream) sample code for java.awt.Container.readObject(java.io.ObjectInputStream) definition code for java.awt.Container.readObject(java.io.ObjectInputStream)
Serialized Fields

component

Component[] component
The components in this container.

containerSerializedDataVersion

int containerSerializedDataVersion
Container Serial Data Version.

dispatcher

java.awt.LightweightDispatcher dispatcher
Event router for lightweight components. If this container is native, this dispatcher takes care of forwarding and retargeting the events to lightweight components contained (if any).

focusCycleRoot

boolean focusCycleRoot
Indicates whether this Component is the root of a focus traversal cycle. Once focus enters a traversal cycle, typically it cannot leave it via focus traversal unless one of the up- or down-cycle keys is pressed. Normal traversal is limited to this Container, and all of this Container's descendants that are not descendants of inferior focus cycle roots.

focusTraversalPolicyProvider

boolean focusTraversalPolicyProvider
Stores the value of focusTraversalPolicyProvider property.

layoutMgr

LayoutManager sample code for java.awt.LayoutManager definition code for java.awt.LayoutManager  layoutMgr
Layout manager for this container.

maxSize

Dimension sample code for java.awt.Dimension definition code for java.awt.Dimension  maxSize
Maximum size of this Container.

ncomponents

int ncomponents
The number of components in this container. This value can be null.

Class java.awt.Container.AccessibleAWTContainer sample code for java.awt.Container.AccessibleAWTContainer definition code for java.awt.Container.AccessibleAWTContainer extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 5081320404842566097L

Serialized Fields

accessibleContainerHandler

ContainerListener sample code for java.awt.event.ContainerListener definition code for java.awt.event.ContainerListener  accessibleContainerHandler

Class java.awt.ContainerOrderFocusTraversalPolicy sample code for java.awt.ContainerOrderFocusTraversalPolicy definition code for java.awt.ContainerOrderFocusTraversalPolicy extends FocusTraversalPolicy sample code for java.awt.FocusTraversalPolicy definition code for java.awt.FocusTraversalPolicy implements Serializable

serialVersionUID: 486933713763926351L

Serialized Fields

implicitDownCycleTraversal

boolean implicitDownCycleTraversal

Class java.awt.Cursor sample code for java.awt.Cursor definition code for java.awt.Cursor extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: 8028237497568985504L

Serialized Fields

type

int type
The chosen cursor type initially set to the DEFAULT_CURSOR.

 
See Also:
Cursor.getType() sample code for java.awt.Cursor.getType() definition code for java.awt.Cursor.getType()

name

String sample code for java.lang.String definition code for java.lang.String  name
The user-visible name of the cursor.

 
See Also:
Cursor.getName() sample code for java.awt.Cursor.getName() definition code for java.awt.Cursor.getName()

Class java.awt.DefaultFocusTraversalPolicy sample code for java.awt.DefaultFocusTraversalPolicy definition code for java.awt.DefaultFocusTraversalPolicy extends ContainerOrderFocusTraversalPolicy sample code for java.awt.ContainerOrderFocusTraversalPolicy definition code for java.awt.ContainerOrderFocusTraversalPolicy implements Serializable

Class java.awt.Dialog sample code for java.awt.Dialog definition code for java.awt.Dialog extends Window sample code for java.awt.Window definition code for java.awt.Window implements Serializable

serialVersionUID: 5920926903803293709L

Serialized Fields

resizable

boolean resizable
A dialog's resizable property. Will be true if the Dialog is to be resizable, otherwise it will be false.

 
See Also:
Dialog.setResizable(boolean) sample code for java.awt.Dialog.setResizable(boolean) definition code for java.awt.Dialog.setResizable(boolean)

undecorated

boolean undecorated
This field indicates whether the dialog is undecorated. This property can only be changed while the dialog is not displayable. undecorated will be true if the dialog is undecorated, otherwise it will be false.

 
Since:
1.4
See Also:
Dialog.setUndecorated(boolean) sample code for java.awt.Dialog.setUndecorated(boolean) definition code for java.awt.Dialog.setUndecorated(boolean) , Dialog.isUndecorated() sample code for java.awt.Dialog.isUndecorated() definition code for java.awt.Dialog.isUndecorated() , Component.isDisplayable() sample code for java.awt.Component.isDisplayable() definition code for java.awt.Component.isDisplayable()

modal

boolean modal
Will be true if the Dialog is modal, otherwise the dialog will be modeless. A modal Dialog grabs all the input to the owner frame from the user.

 
See Also:
Dialog.isModal() sample code for java.awt.Dialog.isModal() definition code for java.awt.Dialog.isModal() , Dialog.setModal(boolean) sample code for java.awt.Dialog.setModal(boolean) definition code for java.awt.Dialog.setModal(boolean)

title

String sample code for java.lang.String definition code for java.lang.String  title
Specifies the title of the Dialog. This field can be null.

 
See Also:
Dialog.getTitle() sample code for java.awt.Dialog.getTitle() definition code for java.awt.Dialog.getTitle() , Dialog.setTitle(String) sample code for java.awt.Dialog.setTitle(java.lang.String) definition code for java.awt.Dialog.setTitle(java.lang.String)

Class java.awt.Dialog.AccessibleAWTDialog sample code for java.awt.Dialog.AccessibleAWTDialog definition code for java.awt.Dialog.AccessibleAWTDialog extends Window.AccessibleAWTWindow sample code for java.awt.Window.AccessibleAWTWindow definition code for java.awt.Window.AccessibleAWTWindow implements Serializable

serialVersionUID: 4837230331833941201L

Class java.awt.Dimension sample code for java.awt.Dimension definition code for java.awt.Dimension extends Dimension2D sample code for java.awt.geom.Dimension2D definition code for java.awt.geom.Dimension2D implements Serializable

serialVersionUID: 4723952579491349524L

Serialized Fields

width

int width
The width dimension; negative values can be used.

 
See Also:
Dimension.getSize() sample code for java.awt.Dimension.getSize() definition code for java.awt.Dimension.getSize() , Dimension.setSize(double, double) sample code for java.awt.Dimension.setSize(double, double) definition code for java.awt.Dimension.setSize(double, double)

height

int height
The height dimension; negative values can be used.

 
See Also:
Dimension.getSize() sample code for java.awt.Dimension.getSize() definition code for java.awt.Dimension.getSize() , Dimension.setSize(double, double) sample code for java.awt.Dimension.setSize(double, double) definition code for java.awt.Dimension.setSize(double, double)

Class java.awt.Event sample code for java.awt.Event definition code for java.awt.Event extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: 5488922509400504703L

Serialized Fields

target

Object sample code for java.lang.Object definition code for java.lang.Object  target
The target component. This indicates the component over which the event occurred or with which the event is associated. This object has been replaced by AWTEvent.getSource()

 
See Also:
EventObject.getSource() sample code for java.util.EventObject.getSource() definition code for java.util.EventObject.getSource()

when

long when
The time stamp. Replaced by InputEvent.getWhen().

 
See Also:
InputEvent.getWhen() sample code for java.awt.event.InputEvent.getWhen() definition code for java.awt.event.InputEvent.getWhen()

id

int id
Indicates which type of event the event is, and which other Event variables are relevant for the event. This has been replaced by AWTEvent.getID()

 
See Also:
AWTEvent.getID() sample code for java.awt.AWTEvent.getID() definition code for java.awt.AWTEvent.getID()

x

int x
The x coordinate of the event. Replaced by MouseEvent.getX()

 
See Also:
MouseEvent.getX() sample code for java.awt.event.MouseEvent.getX() definition code for java.awt.event.MouseEvent.getX()

y

int y
The y coordinate of the event. Replaced by MouseEvent.getY()

 
See Also:
MouseEvent.getY() sample code for java.awt.event.MouseEvent.getY() definition code for java.awt.event.MouseEvent.getY()

key

int key
The key code of the key that was pressed in a keyboard event. This has been replaced by KeyEvent.getKeyCode()

 
See Also:
KeyEvent.getKeyCode() sample code for java.awt.event.KeyEvent.getKeyCode() definition code for java.awt.event.KeyEvent.getKeyCode()

modifiers

int modifiers
The state of the modifier keys. This is replaced with InputEvent.getModifiers() In java 1.1 MouseEvent and KeyEvent are subclasses of InputEvent.

 
See Also:
InputEvent.getModifiers() sample code for java.awt.event.InputEvent.getModifiers() definition code for java.awt.event.InputEvent.getModifiers()

clickCount

int clickCount
For MOUSE_DOWN events, this field indicates the number of consecutive clicks. For other events, its value is 0. This field has been replaced by MouseEvent.getClickCount().

 
See Also:
MouseEvent.getClickCount(). sample code for java.awt.event.MouseEvent.getClickCount() definition code for java.awt.event.MouseEvent.getClickCount()

arg

Object sample code for java.lang.Object definition code for java.lang.Object  arg
An arbitrary argument of the event. The value of this field depends on the type of event. arg has been replaced by event specific property.

 

evt

Event sample code for java.awt.Event definition code for java.awt.Event  evt
The next event. This field is set when putting events into a linked list. This has been replaced by EventQueue.

 
See Also:
EventQueue sample code for java.awt.EventQueue definition code for java.awt.EventQueue

consumed

boolean consumed
This field controls whether or not the event is sent back down to the peer once the target has processed it - false means it's sent to the peer, true means it's not.

 
See Also:
Event.isConsumed() sample code for java.awt.Event.isConsumed() definition code for java.awt.Event.isConsumed()

Class java.awt.FileDialog sample code for java.awt.FileDialog definition code for java.awt.FileDialog extends Dialog sample code for java.awt.Dialog definition code for java.awt.Dialog implements Serializable

serialVersionUID: 5035145889651310422L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException 
Reads the ObjectInputStream and performs a backwards compatibility check by converting either a dir or a file equal to an empty string to null.

Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
Serialized Fields

mode

int mode

dir

String sample code for java.lang.String definition code for java.lang.String  dir

file

String sample code for java.lang.String definition code for java.lang.String  file

filter

FilenameFilter sample code for java.io.FilenameFilter definition code for java.io.FilenameFilter  filter

Class java.awt.FlowLayout sample code for java.awt.FlowLayout definition code for java.awt.FlowLayout extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -7262534875583282631L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  stream)
                 throws IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException 
Reads this object out of a serialization stream, handling objects written by older versions of the class that didn't contain all of the fields we use now..

Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
Serialized Fields

align

int align
align is the property that determines how each row distributes empty space. It can be one of the following values:

 
See Also:
FlowLayout.getAlignment() sample code for java.awt.FlowLayout.getAlignment() definition code for java.awt.FlowLayout.getAlignment() , FlowLayout.setAlignment(int) sample code for java.awt.FlowLayout.setAlignment(int) definition code for java.awt.FlowLayout.setAlignment(int)

newAlign

int newAlign
newAlign is the property that determines how each row distributes empty space for the Java 2 platform, v1.2 and greater. It can be one of the following three values:

 
Since:
1.2
See Also:
FlowLayout.getAlignment() sample code for java.awt.FlowLayout.getAlignment() definition code for java.awt.FlowLayout.getAlignment() , FlowLayout.setAlignment(int) sample code for java.awt.FlowLayout.setAlignment(int) definition code for java.awt.FlowLayout.setAlignment(int)

hgap

int hgap
The flow layout manager allows a seperation of components with gaps. The horizontal gap will specify the space between components and between the components and the borders of the Container.

 
See Also:
FlowLayout.getHgap() sample code for java.awt.FlowLayout.getHgap() definition code for java.awt.FlowLayout.getHgap() , FlowLayout.setHgap(int) sample code for java.awt.FlowLayout.setHgap(int) definition code for java.awt.FlowLayout.setHgap(int)

vgap

int vgap
The flow layout manager allows a seperation of components with gaps. The vertical gap will specify the space between rows and between the the rows and the borders of the Container.

 
See Also:
FlowLayout.getHgap() sample code for java.awt.FlowLayout.getHgap() definition code for java.awt.FlowLayout.getHgap() , FlowLayout.setHgap(int) sample code for java.awt.FlowLayout.setHgap(int) definition code for java.awt.FlowLayout.setHgap(int)

serialVersionOnStream

int serialVersionOnStream
This represent the currentSerialVersion which is bein used. It will be one of two values : 0 versions before Java 2 platform v1.2.. 1 versions after Java 2 platform v1.2..

 
Since:
1.2

Class java.awt.Font sample code for java.awt.Font definition code for java.awt.Font extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -4206021311591459213L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException 
Reads the ObjectInputStream. Unrecognized keys or values will be ignored.

Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
Font.writeObject(java.io.ObjectOutputStream) sample code for java.awt.Font.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Font.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                         IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to a stream.

Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Font.readObject(java.io.ObjectInputStream) sample code for java.awt.Font.readObject(java.io.ObjectInputStream) definition code for java.awt.Font.readObject(java.io.ObjectInputStream)
Serialized Fields

fRequestedAttributes

Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable <K,V> fRequestedAttributes
A map of font attributes available in this font. Attributes include things like ligatures and glyph substitution.

 
See Also:
Font.getAttributes() sample code for java.awt.Font.getAttributes() definition code for java.awt.Font.getAttributes()

name

String sample code for java.lang.String definition code for java.lang.String  name
The logical name of this Font, as passed to the constructor.

 
Since:
JDK1.0
See Also:
Font.getName() sample code for java.awt.Font.getName() definition code for java.awt.Font.getName()

style

int style
The style of this Font, as passed to the constructor. This style can be PLAIN, BOLD, ITALIC, or BOLD+ITALIC.

 
Since:
JDK1.0
See Also:
Font.getStyle() sample code for java.awt.Font.getStyle() definition code for java.awt.Font.getStyle()

size

int size
The point size of this Font, rounded to integer.

 
Since:
JDK1.0
See Also:
Font.getSize() sample code for java.awt.Font.getSize() definition code for java.awt.Font.getSize()

pointSize

float pointSize
The point size of this Font in float.

 
See Also:
Font.getSize() sample code for java.awt.Font.getSize() definition code for java.awt.Font.getSize() , Font.getSize2D() sample code for java.awt.Font.getSize2D() definition code for java.awt.Font.getSize2D()

fontSerializedDataVersion

int fontSerializedDataVersion
The Font Serializable Data Form.

 

Class java.awt.FontFormatException sample code for java.awt.FontFormatException definition code for java.awt.FontFormatException extends Exception sample code for java.lang.Exception definition code for java.lang.Exception implements Serializable

Class java.awt.FontMetrics sample code for java.awt.FontMetrics definition code for java.awt.FontMetrics extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: 1681126225205050147L

Serialized Fields

font

Font sample code for java.awt.Font definition code for java.awt.Font  font
The actual Font sample code for java.awt.Font definition code for java.awt.Font from which the font metrics are created. This cannot be null.

 
See Also:
FontMetrics.getFont() sample code for java.awt.FontMetrics.getFont() definition code for java.awt.FontMetrics.getFont()

Class java.awt.Frame sample code for java.awt.Frame definition code for java.awt.Frame extends Window sample code for java.awt.Window definition code for java.awt.Window implements Serializable

serialVersionUID: 2673458971256075116L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream. Tries to read an Icon, which is optional data available as of 1.4. If an Icon is not available, but anything other than an EOF is detected, an OptionalDataException will be thrown.. Unrecognized keys or values will be ignored.

Throws:
OptionalDataException - if an Icon is not available, but anything other than an EOF is detected
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless() , Icon sample code for javax.swing.Icon definition code for javax.swing.Icon , Frame.writeObject(ObjectOutputStream) sample code for java.awt.Frame.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Frame.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes an optional serializable Icon, which is available as of 1.4.

Serial Data:
an optional Icon
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
Icon sample code for javax.swing.Icon definition code for javax.swing.Icon , Frame.readObject(ObjectInputStream) sample code for java.awt.Frame.readObject(java.io.ObjectInputStream) definition code for java.awt.Frame.readObject(java.io.ObjectInputStream)
Serialized Fields

maximizedBounds

Rectangle sample code for java.awt.Rectangle definition code for java.awt.Rectangle  maximizedBounds
Maximized bounds for this frame.

 
Since:
1.4
See Also:
Frame.setMaximizedBounds(Rectangle) sample code for java.awt.Frame.setMaximizedBounds(java.awt.Rectangle) definition code for java.awt.Frame.setMaximizedBounds(java.awt.Rectangle) , Frame.getMaximizedBounds() sample code for java.awt.Frame.getMaximizedBounds() definition code for java.awt.Frame.getMaximizedBounds()

title

String sample code for java.lang.String definition code for java.lang.String  title
This is the title of the frame. It can be changed at any time. title can be null and if this is the case the title = "".

 
See Also:
Frame.getTitle() sample code for java.awt.Frame.getTitle() definition code for java.awt.Frame.getTitle() , Frame.setTitle(String) sample code for java.awt.Frame.setTitle(java.lang.String) definition code for java.awt.Frame.setTitle(java.lang.String)

menuBar

MenuBar sample code for java.awt.MenuBar definition code for java.awt.MenuBar  menuBar
The frames menubar. If menuBar = null the frame will not have a menubar.

 
See Also:
Frame.getMenuBar() sample code for java.awt.Frame.getMenuBar() definition code for java.awt.Frame.getMenuBar() , Frame.setMenuBar(MenuBar) sample code for java.awt.Frame.setMenuBar(java.awt.MenuBar) definition code for java.awt.Frame.setMenuBar(java.awt.MenuBar)

resizable

boolean resizable
This field indicates whether the frame is resizable. This property can be changed at any time. resizable will be true if the frame is resizable, otherwise it will be false.

 
See Also:
Frame.isResizable() sample code for java.awt.Frame.isResizable() definition code for java.awt.Frame.isResizable()

undecorated

boolean undecorated
This field indicates whether the frame is undecorated. This property can only be changed while the frame is not displayable. undecorated will be true if the frame is undecorated, otherwise it will be false.

 
Since:
1.4
See Also:
Frame.setUndecorated(boolean) sample code for java.awt.Frame.setUndecorated(boolean) definition code for java.awt.Frame.setUndecorated(boolean) , Frame.isUndecorated() sample code for java.awt.Frame.isUndecorated() definition code for java.awt.Frame.isUndecorated() , Component.isDisplayable() sample code for java.awt.Component.isDisplayable() definition code for java.awt.Component.isDisplayable()

mbManagement

boolean mbManagement
mbManagement is only used by the Motif implementation.

 

state

int state

ownedWindows

Vector sample code for java.util.Vector definition code for java.util.Vector <E> ownedWindows

frameSerializedDataVersion

int frameSerializedDataVersion
Frame's Serialized Data Version.

 

Class java.awt.Frame.AccessibleAWTFrame sample code for java.awt.Frame.AccessibleAWTFrame definition code for java.awt.Frame.AccessibleAWTFrame extends Window.AccessibleAWTWindow sample code for java.awt.Window.AccessibleAWTWindow definition code for java.awt.Window.AccessibleAWTWindow implements Serializable

serialVersionUID: -6172960752956030250L

Class java.awt.GraphicsConfigTemplate sample code for java.awt.GraphicsConfigTemplate definition code for java.awt.GraphicsConfigTemplate extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

Class java.awt.GridBagConstraints sample code for java.awt.GridBagConstraints definition code for java.awt.GridBagConstraints extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -1000070633030801713L

Serialized Fields

gridx

int gridx
Specifies the cell containing the leading edge of the component's display area, where the first cell in a row has gridx=0. The leading edge of a component's display area is its left edge for a horizontal, left-to-right container and its right edge for a horizontal, right-to-left container. The value RELATIVE specifies that the component be placed immediately following the component that was added to the container just before this component was added.

The default value is RELATIVE. gridx should be a non-negative value.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.gridy sample code for java.awt.GridBagConstraints.gridy definition code for java.awt.GridBagConstraints.gridy , ComponentOrientation sample code for java.awt.ComponentOrientation definition code for java.awt.ComponentOrientation

gridy

int gridy
Specifies the cell at the top of the component's display area, where the topmost cell has gridy=0. The value RELATIVE specifies that the component be placed just below the component that was added to the container just before this component was added.

The default value is RELATIVE. gridy should be a non-negative value.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.gridx sample code for java.awt.GridBagConstraints.gridx definition code for java.awt.GridBagConstraints.gridx

gridwidth

int gridwidth
Specifies the number of cells in a row for the component's display area.

Use REMAINDER to specify that the component's display area will be from gridx to the last cell in the row. Use RELATIVE to specify that the component's display area will be from gridx to the next to the last one in its row.

gridwidth should be non-negative and the default value is 1.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.gridheight sample code for java.awt.GridBagConstraints.gridheight definition code for java.awt.GridBagConstraints.gridheight

gridheight

int gridheight
Specifies the number of cells in a column for the component's display area.

Use REMAINDER to specify that the component's display area will be from gridy to the last cell in the column. Use RELATIVE to specify that the component's display area will be from gridy to the next to the last one in its column.

gridheight should be a non-negative value and the default value is 1.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.gridwidth sample code for java.awt.GridBagConstraints.gridwidth definition code for java.awt.GridBagConstraints.gridwidth

weightx

double weightx
Specifies how to distribute extra horizontal space.

The grid bag layout manager calculates the weight of a column to be the maximum weightx of all the components in a column. If the resulting layout is smaller horizontally than the area it needs to fill, the extra space is distributed to each column in proportion to its weight. A column that has a weight of zero receives no extra space.

If all the weights are zero, all the extra space appears between the grids of the cell and the left and right edges.

The default value of this field is 0. weightx should be a non-negative value.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.weighty sample code for java.awt.GridBagConstraints.weighty definition code for java.awt.GridBagConstraints.weighty

weighty

double weighty
Specifies how to distribute extra vertical space.

The grid bag layout manager calculates the weight of a row to be the maximum weighty of all the components in a row. If the resulting layout is smaller vertically than the area it needs to fill, the extra space is distributed to each row in proportion to its weight. A row that has a weight of zero receives no extra space.

If all the weights are zero, all the extra space appears between the grids of the cell and the top and bottom edges.

The default value of this field is 0. weighty should be a non-negative value.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.weightx sample code for java.awt.GridBagConstraints.weightx definition code for java.awt.GridBagConstraints.weightx

anchor

int anchor
This field is used when the component is smaller than its display area. It determines where, within the display area, to place the component.

There are two kinds of possible values: relative and absolute. Relative values are interpreted relative to the container's component orientation property while absolute values are not. The absolute values are: CENTER, NORTH, NORTHEAST, EAST, SOUTHEAST, SOUTH, SOUTHWEST, WEST, and NORTHWEST. The relative values are: PAGE_START, PAGE_END, LINE_START, LINE_END, FIRST_LINE_START, FIRST_LINE_END, LAST_LINE_START and LAST_LINE_END. The default value is CENTER.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , ComponentOrientation sample code for java.awt.ComponentOrientation definition code for java.awt.ComponentOrientation

fill

int fill
This field is used when the component's display area is larger than the component's requested size. It determines whether to resize the component, and if so, how.

The following values are valid for fill:

The default value is NONE.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone()

insets

Insets sample code for java.awt.Insets definition code for java.awt.Insets  insets
This field specifies the external padding of the component, the minimum amount of space between the component and the edges of its display area.

The default value is new Insets(0, 0, 0, 0).

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone()

ipadx

int ipadx
This field specifies the internal padding of the component, how much space to add to the minimum width of the component. The width of the component is at least its minimum width plus ipadx pixels.

The default value is 0.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.ipady sample code for java.awt.GridBagConstraints.ipady definition code for java.awt.GridBagConstraints.ipady

ipady

int ipady
This field specifies the internal padding, that is, how much space to add to the minimum height of the component. The height of the component is at least its minimum height plus ipady pixels.

The default value is 0.

 
See Also:
GridBagConstraints.clone() sample code for java.awt.GridBagConstraints.clone() definition code for java.awt.GridBagConstraints.clone() , GridBagConstraints.ipadx sample code for java.awt.GridBagConstraints.ipadx definition code for java.awt.GridBagConstraints.ipadx

tempX

int tempX
Temporary place holder for the x coordinate.

 

tempY

int tempY
Temporary place holder for the y coordinate.

 

tempWidth

int tempWidth
Temporary place holder for the Width of the component.

 

tempHeight

int tempHeight
Temporary place holder for the Height of the component.

 

minWidth

int minWidth
The minimum width of the component. It is used to calculate ipady, where the default will be 0.

 
See Also:
GridBagConstraints.ipady sample code for java.awt.GridBagConstraints.ipady definition code for java.awt.GridBagConstraints.ipady

minHeight

int minHeight
The minimum height of the component. It is used to calculate ipadx, where the default will be 0.

 
See Also:
GridBagConstraints.ipadx sample code for java.awt.GridBagConstraints.ipadx definition code for java.awt.GridBagConstraints.ipadx

Class java.awt.GridBagLayout sample code for java.awt.GridBagLayout definition code for java.awt.GridBagLayout extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: 8838754796412211005L

Serialized Fields

comptable

Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable <K,V> comptable
This hashtable maintains the association between a component and its gridbag constraints. The Keys in comptable are the components and the values are the instances of GridBagConstraints.

 
See Also:
GridBagConstraints sample code for java.awt.GridBagConstraints definition code for java.awt.GridBagConstraints

defaultConstraints

GridBagConstraints sample code for java.awt.GridBagConstraints definition code for java.awt.GridBagConstraints  defaultConstraints
This field holds a gridbag constraints instance containing the default values, so if a component does not have gridbag constraints associated with it, then the component will be assigned a copy of the defaultConstraints.

 
See Also:
GridBagLayout.getConstraints(Component) sample code for java.awt.GridBagLayout.getConstraints(java.awt.Component) definition code for java.awt.GridBagLayout.getConstraints(java.awt.Component) , GridBagLayout.setConstraints(Component, GridBagConstraints) sample code for java.awt.GridBagLayout.setConstraints(java.awt.Component, java.awt.GridBagConstraints) definition code for java.awt.GridBagLayout.setConstraints(java.awt.Component, java.awt.GridBagConstraints) , GridBagLayout.lookupConstraints(Component) sample code for java.awt.GridBagLayout.lookupConstraints(java.awt.Component) definition code for java.awt.GridBagLayout.lookupConstraints(java.awt.Component)

layoutInfo

java.awt.GridBagLayoutInfo layoutInfo
This field holds the layout information for the gridbag. The information in this field is based on the most recent validation of the gridbag. If layoutInfo is null this indicates that there are no components in the gridbag or if there are components, they have not yet been validated.

 
See Also:
GridBagLayout.getLayoutInfo(Container, int) sample code for java.awt.GridBagLayout.getLayoutInfo(java.awt.Container, int) definition code for java.awt.GridBagLayout.getLayoutInfo(java.awt.Container, int)

columnWidths

int[] columnWidths
This field holds the overrides to the column minimum width. If this field is non-null the values are applied to the gridbag after all of the minimum columns widths have been calculated. If columnWidths has more elements than the number of columns, columns are added to the gridbag to match the number of elements in columnWidth.

 
See Also:
GridBagLayout.getLayoutDimensions() sample code for java.awt.GridBagLayout.getLayoutDimensions() definition code for java.awt.GridBagLayout.getLayoutDimensions()

rowHeights

int[] rowHeights
This field holds the overrides to the row minimum heights. If this field is non-null the values are applied to the gridbag after all of the minimum row heights have been calculated. If rowHeights has more elements than the number of rows, rowa are added to the gridbag to match the number of elements in rowHeights.

 
See Also:
GridBagLayout.getLayoutDimensions() sample code for java.awt.GridBagLayout.getLayoutDimensions() definition code for java.awt.GridBagLayout.getLayoutDimensions()

columnWeights

double[] columnWeights
This field holds the overrides to the column weights. If this field is non-null the values are applied to the gridbag after all of the columns weights have been calculated. If columnWeights[i] > weight for column i, then column i is assigned the weight in columnWeights[i]. If columnWeights has more elements than the number of columns, the excess elements are ignored - they do not cause more columns to be created.

 

rowWeights

double[] rowWeights
This field holds the overrides to the row weights. If this field is non-null the values are applied to the gridbag after all of the rows weights have been calculated. If rowWeights[i] > weight for row i, then row i is assigned the weight in rowWeights[i]. If rowWeights has more elements than the number of rows, the excess elements are ignored - they do not cause more rows to be created.

 

Class java.awt.GridLayout sample code for java.awt.GridLayout definition code for java.awt.GridLayout extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

Serialized Fields

hgap

int hgap
This is the horizontal gap (in pixels) which specifies the space between columns. They can be changed at any time. This should be a non-negative integer.

 
See Also:
GridLayout.getHgap() sample code for java.awt.GridLayout.getHgap() definition code for java.awt.GridLayout.getHgap() , GridLayout.setHgap(int) sample code for java.awt.GridLayout.setHgap(int) definition code for java.awt.GridLayout.setHgap(int)

vgap

int vgap
This is the vertical gap (in pixels) which specifies the space between rows. They can be changed at any time. This should be a non negative integer.

 
See Also:
GridLayout.getVgap() sample code for java.awt.GridLayout.getVgap() definition code for java.awt.GridLayout.getVgap() , GridLayout.setVgap(int) sample code for java.awt.GridLayout.setVgap(int) definition code for java.awt.GridLayout.setVgap(int)

rows

int rows
This is the number of rows specified for the grid. The number of rows can be changed at any time. This should be a non negative integer, where '0' means 'any number' meaning that the number of Rows in that dimension depends on the other dimension.

 
See Also:
GridLayout.getRows() sample code for java.awt.GridLayout.getRows() definition code for java.awt.GridLayout.getRows() , GridLayout.setRows(int) sample code for java.awt.GridLayout.setRows(int) definition code for java.awt.GridLayout.setRows(int)

cols

int cols
This is the number of columns specified for the grid. The number of columns can be changed at any time. This should be a non negative integer, where '0' means 'any number' meaning that the number of Columns in that dimension depends on the other dimension.

 
See Also:
GridLayout.getColumns() sample code for java.awt.GridLayout.getColumns() definition code for java.awt.GridLayout.getColumns() , GridLayout.setColumns(int) sample code for java.awt.GridLayout.setColumns(int) definition code for java.awt.GridLayout.setColumns(int)

Class java.awt.HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException extends UnsupportedOperationException sample code for java.lang.UnsupportedOperationException definition code for java.lang.UnsupportedOperationException implements Serializable

serialVersionUID: 167183644944358563L

Class java.awt.IllegalComponentStateException sample code for java.awt.IllegalComponentStateException definition code for java.awt.IllegalComponentStateException extends IllegalStateException sample code for java.lang.IllegalStateException definition code for java.lang.IllegalStateException implements Serializable

serialVersionUID: -1889339587208144238L

Class java.awt.Insets sample code for java.awt.Insets definition code for java.awt.Insets extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -2272572637695466749L

Serialized Fields

top

int top
The inset from the top. This value is added to the Top of the rectangle to yield a new location for the Top.

 
See Also:
Insets.clone() sample code for java.awt.Insets.clone() definition code for java.awt.Insets.clone()

left

int left
The inset from the left. This value is added to the Left of the rectangle to yield a new location for the Left edge.

 
See Also:
Insets.clone() sample code for java.awt.Insets.clone() definition code for java.awt.Insets.clone()

bottom

int bottom
The inset from the bottom. This value is subtracted from the Bottom of the rectangle to yield a new location for the Bottom.

 
See Also:
Insets.clone() sample code for java.awt.Insets.clone() definition code for java.awt.Insets.clone()

right

int right
The inset from the right. This value is subtracted from the Right of the rectangle to yield a new location for the Right edge.

 
See Also:
Insets.clone() sample code for java.awt.Insets.clone() definition code for java.awt.Insets.clone()

Class java.awt.Label sample code for java.awt.Label definition code for java.awt.Label extends Component sample code for java.awt.Component definition code for java.awt.Component implements Serializable

serialVersionUID: 3094126758329070636L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Read a label from an object input stream.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless() returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
Since:
1.4
See Also:
GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless()
Serialized Fields

text

String sample code for java.lang.String definition code for java.lang.String  text
The text of this label. This text can be modified by the program but never by the user.

 
See Also:
Label.getText() sample code for java.awt.Label.getText() definition code for java.awt.Label.getText() , Label.setText(String) sample code for java.awt.Label.setText(java.lang.String) definition code for java.awt.Label.setText(java.lang.String)

alignment

int alignment
The label's alignment. The default alignment is set to be left justified.

 
See Also:
Label.getAlignment() sample code for java.awt.Label.getAlignment() definition code for java.awt.Label.getAlignment() , Label.setAlignment(int) sample code for java.awt.Label.setAlignment(int) definition code for java.awt.Label.setAlignment(int)

Class java.awt.Label.AccessibleAWTLabel sample code for java.awt.Label.AccessibleAWTLabel definition code for java.awt.Label.AccessibleAWTLabel extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: -3568967560160480438L

Class java.awt.List sample code for java.awt.List definition code for java.awt.List extends Component sample code for java.awt.Component definition code for java.awt.Component implements Serializable

serialVersionUID: -3304312411574666869L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream and if it isn't null adds a listener to receive both item events and action events (as specified by the key stored in the stream) fired by the List. Unrecognized keys or values will be ignored.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
List.removeItemListener(ItemListener) sample code for java.awt.List.removeItemListener(java.awt.event.ItemListener) definition code for java.awt.List.removeItemListener(java.awt.event.ItemListener) , List.addItemListener(ItemListener) sample code for java.awt.List.addItemListener(java.awt.event.ItemListener) definition code for java.awt.List.addItemListener(java.awt.event.ItemListener) , GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless() , List.writeObject(ObjectOutputStream) sample code for java.awt.List.writeObject(java.io.ObjectOutputStream) definition code for java.awt.List.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes a list of serializable ItemListeners and ActionListeners as optional data. The non-serializable listeners are detected and no attempt is made to serialize them.

Serial Data:
null terminated sequence of 0 or more pairs; the pair consists of a String and an Object; the String indicates the type of object and is one of the following: itemListenerK indicating an ItemListener object; actionListenerK indicating an ActionListener object
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Component.itemListenerK sample code for java.awt.Component.itemListenerK definition code for java.awt.Component.itemListenerK , Component.actionListenerK sample code for java.awt.Component.actionListenerK definition code for java.awt.Component.actionListenerK , List.readObject(ObjectInputStream) sample code for java.awt.List.readObject(java.io.ObjectInputStream) definition code for java.awt.List.readObject(java.io.ObjectInputStream)
Serialized Fields

items

Vector sample code for java.util.Vector definition code for java.util.Vector <E> items
A vector created to contain items which will become part of the List Component.

 
See Also:
List.addItem(String) sample code for java.awt.List.addItem(java.lang.String) definition code for java.awt.List.addItem(java.lang.String) , List.getItem(int) sample code for java.awt.List.getItem(int) definition code for java.awt.List.getItem(int)

rows

int rows
This field will represent the number of visible rows in the List Component. It is specified only once, and that is when the list component is actually created. It will never change.

 
See Also:
List.getRows() sample code for java.awt.List.getRows() definition code for java.awt.List.getRows()

multipleMode

boolean multipleMode
multipleMode is a variable that will be set to true if a list component is to be set to multiple selection mode, that is where the user can select more than one item in a list at one time. multipleMode will be set to false if the list component is set to single selection, that is where the user can only select one item on the list at any one time.

 
See Also:
List.isMultipleMode() sample code for java.awt.List.isMultipleMode() definition code for java.awt.List.isMultipleMode() , List.setMultipleMode(boolean) sample code for java.awt.List.setMultipleMode(boolean) definition code for java.awt.List.setMultipleMode(boolean)

selected

int[] selected
selected is an array that will contain the indices of items that have been selected.

 
See Also:
List.getSelectedIndexes() sample code for java.awt.List.getSelectedIndexes() definition code for java.awt.List.getSelectedIndexes() , List.getSelectedIndex() sample code for java.awt.List.getSelectedIndex() definition code for java.awt.List.getSelectedIndex()

visibleIndex

int visibleIndex
This variable contains the value that will be used when trying to make a particular list item visible.

 
See Also:
List.makeVisible(int) sample code for java.awt.List.makeVisible(int) definition code for java.awt.List.makeVisible(int)

listSerializedDataVersion

int listSerializedDataVersion
The List component's Serialized Data Version.

 

Class java.awt.List.AccessibleAWTList sample code for java.awt.List.AccessibleAWTList definition code for java.awt.List.AccessibleAWTList extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 7924617370136012829L

Class java.awt.List.AccessibleAWTList.AccessibleAWTListChild sample code for java.awt.List.AccessibleAWTList.AccessibleAWTListChild definition code for java.awt.List.AccessibleAWTList.AccessibleAWTListChild extends Component.AccessibleAWTComponent sample code for java.awt.Component.AccessibleAWTComponent definition code for java.awt.Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 4412022926028300317L

Serialized Fields

parent

List sample code for java.awt.List definition code for java.awt.List  parent

indexInParent

int indexInParent

Class java.awt.MediaTracker sample code for java.awt.MediaTracker definition code for java.awt.MediaTracker extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -483174189758638095L

Serialized Fields

target

Component sample code for java.awt.Component definition code for java.awt.Component  target
A given Component that will be tracked by a media tracker where the image will eventually be drawn.

 
See Also:
MediaTracker.MediaTracker(Component) sample code for java.awt.MediaTracker.MediaTracker(java.awt.Component) definition code for java.awt.MediaTracker.MediaTracker(java.awt.Component)

head

java.awt.MediaEntry head
The head of the list of Images that is being tracked by the MediaTracker.

 
See Also:
MediaTracker.addImage(Image, int) sample code for java.awt.MediaTracker.addImage(java.awt.Image, int) definition code for java.awt.MediaTracker.addImage(java.awt.Image, int) , MediaTracker.removeImage(Image) sample code for java.awt.MediaTracker.removeImage(java.awt.Image) definition code for java.awt.MediaTracker.removeImage(java.awt.Image)

Class java.awt.Menu sample code for java.awt.Menu definition code for java.awt.Menu extends MenuItem sample code for java.awt.MenuItem definition code for java.awt.MenuItem implements Serializable

serialVersionUID: -8809584163345499784L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream. Unrecognized keys or values will be ignored.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
IOException sample code for java.io.IOException definition code for java.io.IOException
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
See Also:
GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless() , Menu.writeObject(ObjectOutputStream) sample code for java.awt.Menu.writeObject(java.io.ObjectOutputStream) definition code for java.awt.Menu.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream.

Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , Menu.readObject(ObjectInputStream) sample code for java.awt.Menu.readObject(java.io.ObjectInputStream) definition code for java.awt.Menu.readObject(java.io.ObjectInputStream)
Serialized Fields

items

Vector sample code for java.util.Vector definition code for java.util.Vector <E> items
A vector of the items that will be part of the Menu.

 
See Also:
Menu.countItems() sample code for java.awt.Menu.countItems() definition code for java.awt.Menu.countItems()

tearOff

boolean tearOff
This field indicates whether the menu has the tear of property or not. It will be set to true if the menu has the tear off property and it will be set to false> if it does not. A torn off menu can be deleted by a user when it is no longer needed.

 
See Also:
Menu.isTearOff() sample code for java.awt.Menu.isTearOff() definition code for java.awt.Menu.isTearOff()

isHelpMenu

boolean isHelpMenu
This field will be set to true if the Menu in question is actually a help menu. Otherwise it will be set to false.

 

menuSerializedDataVersion

int menuSerializedDataVersion
The menu serialized Data Version.

 

Class java.awt.Menu.AccessibleAWTMenu sample code for java.awt.Menu.AccessibleAWTMenu definition code for java.awt.Menu.AccessibleAWTMenu extends MenuItem.AccessibleAWTMenuItem sample code for java.awt.MenuItem.AccessibleAWTMenuItem definition code for java.awt.MenuItem.AccessibleAWTMenuItem implements Serializable

serialVersionUID: 5228160894980069094L

Class java.awt.MenuBar sample code for java.awt.MenuBar definition code for java.awt.MenuBar extends MenuComponent sample code for java.awt.MenuComponent definition code for java.awt.MenuComponent implements Serializable

serialVersionUID: -4930327919388951260L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream. Unrecognized keys or values will be ignored.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless() , MenuBar.writeObject(java.io.ObjectOutputStream) sample code for java.awt.MenuBar.writeObject(java.io.ObjectOutputStream) definition code for java.awt.MenuBar.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                         IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream.

Throws:
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , MenuBar.readObject(java.io.ObjectInputStream) sample code for java.awt.MenuBar.readObject(java.io.ObjectInputStream) definition code for java.awt.MenuBar.readObject(java.io.ObjectInputStream)
Serialized Fields

menus

Vector sample code for java.util.Vector definition code for java.util.Vector <E> menus
This field represents a vector of the actual menus that will be part of the MenuBar.

 
See Also:
MenuBar.countMenus() sample code for java.awt.MenuBar.countMenus() definition code for java.awt.MenuBar.countMenus()

helpMenu

Menu sample code for java.awt.Menu definition code for java.awt.Menu  helpMenu
This menu is a special menu dedicated to help. The one thing to note about this menu is that on some platforms it appears at the right edge of the menubar.

 
See Also:
MenuBar.getHelpMenu() sample code for java.awt.MenuBar.getHelpMenu() definition code for java.awt.MenuBar.getHelpMenu() , MenuBar.setHelpMenu(Menu) sample code for java.awt.MenuBar.setHelpMenu(java.awt.Menu) definition code for java.awt.MenuBar.setHelpMenu(java.awt.Menu)

menuBarSerializedDataVersion

int menuBarSerializedDataVersion
The MenuBar's serialized data version.

 

Class java.awt.MenuBar.AccessibleAWTMenuBar sample code for java.awt.MenuBar.AccessibleAWTMenuBar definition code for java.awt.MenuBar.AccessibleAWTMenuBar extends MenuComponent.AccessibleAWTMenuComponent sample code for java.awt.MenuComponent.AccessibleAWTMenuComponent definition code for java.awt.MenuComponent.AccessibleAWTMenuComponent implements Serializable

serialVersionUID: -8577604491830083815L

Class java.awt.MenuComponent sample code for java.awt.MenuComponent definition code for java.awt.MenuComponent extends Object sample code for java.lang.Object definition code for java.lang.Object implements Serializable

serialVersionUID: -4536902356223894379L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the menu component from an object input stream.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
GraphicsEnvironment.isHeadless() sample code for java.awt.GraphicsEnvironment.isHeadless() definition code for java.awt.GraphicsEnvironment.isHeadless()
Serialized Fields

font

Font sample code for java.awt.Font definition code for java.awt.Font  font
The menu component's font. This value can be null at which point a default will be used. This defaults to null.

 
See Also:
MenuComponent.setFont(Font) sample code for java.awt.MenuComponent.setFont(java.awt.Font) definition code for java.awt.MenuComponent.setFont(java.awt.Font) , MenuComponent.getFont() sample code for java.awt.MenuComponent.getFont() definition code for java.awt.MenuComponent.getFont()

name

String sample code for java.lang.String definition code for java.lang.String  name
The menu component's name, which defaults to null.

 
See Also:
MenuComponent.getName() sample code for java.awt.MenuComponent.getName() definition code for java.awt.MenuComponent.getName() , MenuComponent.setName(String) sample code for java.awt.MenuComponent.setName(java.lang.String) definition code for java.awt.MenuComponent.setName(java.lang.String)

nameExplicitlySet

boolean nameExplicitlySet
A variable to indicate whether a name is explicitly set. If true the name will be set explicitly. This defaults to false.

 
See Also:
MenuComponent.setName(String) sample code for java.awt.MenuComponent.setName(java.lang.String) definition code for java.awt.MenuComponent.setName(java.lang.String)

newEventsOnly

boolean newEventsOnly
Defaults to false.

 
See Also:
MenuComponent.dispatchEvent(AWTEvent) sample code for java.awt.MenuComponent.dispatchEvent(java.awt.AWTEvent) definition code for java.awt.MenuComponent.dispatchEvent(java.awt.AWTEvent)

accessibleContext

AccessibleContext sample code for javax.accessibility.AccessibleContext definition code for javax.accessibility.AccessibleContext  accessibleContext

Class java.awt.MenuComponent.AccessibleAWTMenuComponent sample code for java.awt.MenuComponent.AccessibleAWTMenuComponent definition code for java.awt.MenuComponent.AccessibleAWTMenuComponent extends AccessibleContext sample code for javax.accessibility.AccessibleContext definition code for javax.accessibility.AccessibleContext implements Serializable

serialVersionUID: -4269533416223798698L

Class java.awt.MenuItem sample code for java.awt.MenuItem definition code for java.awt.MenuItem extends MenuComponent sample code for java.awt.MenuComponent definition code for java.awt.MenuComponent implements Serializable

serialVersionUID: -21757335363267194L

Serialization Methods

readObject

private void readObject(ObjectInputStream sample code for java.io.ObjectInputStream definition code for java.io.ObjectInputStream  s)
                 throws ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException ,
                        IOException sample code for java.io.IOException definition code for java.io.IOException ,
                        HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException 
Reads the ObjectInputStream and if it isn't null adds a listener to receive action events fired by the Menu Item. Unrecognized keys or values will be ignored.

Throws:
HeadlessException sample code for java.awt.HeadlessException definition code for java.awt.HeadlessException - if GraphicsEnvironment.isHeadless returns true
ClassNotFoundException sample code for java.lang.ClassNotFoundException definition code for java.lang.ClassNotFoundException
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
#removeActionListener(actionListener), #addActionListener(actionListener), MenuItem.writeObject(ObjectOutputStream) sample code for java.awt.MenuItem.writeObject(java.io.ObjectOutputStream) definition code for java.awt.MenuItem.writeObject(java.io.ObjectOutputStream)

writeObject

private void writeObject(ObjectOutputStream sample code for java.io.ObjectOutputStream definition code for java.io.ObjectOutputStream  s)
                  throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Writes default serializable fields to stream. Writes a list of serializable ActionListeners as optional data. The non-serializable listeners are detected and no attempt is made to serialize them.

Serial Data:
null terminated sequence of 0 or more pairs; the pair consists of a String and an Object; the String indicates the type of object and is one of the following: actionListenerK indicating an ActionListener object
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException
See Also:
AWTEventMulticaster.save(ObjectOutputStream, String, EventListener) sample code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) definition code for java.awt.AWTEventMulticaster.save(java.io.ObjectOutputStream, java.lang.String, java.util.EventListener) , MenuItem.readObject(ObjectInputStream) sample code for java.awt.MenuItem.readObject(java.io.ObjectInputStream) definition code for java.awt.MenuItem.readObject(java.io.ObjectInputStream)
Serialized Fields

enabled

boolean enabled
A value to indicate whether a menu item is enabled or not. If it is enabled, enabled will be set to true. Else enabled will be set to false.

 
See Also:
MenuItem.isEnabled() sample code for java.awt.MenuItem.isEnabled() definition code for java.awt.MenuItem.isEnabled() , MenuItem.setEnabled(boolean) sample code for java.awt.MenuItem.setEnabled(boolean) definition code for java.awt.MenuItem.setEnabled(boolean)

label

String sample code for java.lang.String definition code for java.lang.String  label
label is the label of a menu item. It can be any string.

 
See Also:
MenuItem.getLabel() sample code for java.awt.MenuItem.getLabel() definition code for java.awt.MenuItem.getLabel() , MenuItem.setLabel(String) sample code for java.awt.MenuItem.setLabel(java.lang.String) definition code for java.awt.MenuItem.setLabel(java.lang.String)

actionCommand

String sample code for java.lang.String definition code for java.lang.String  actionCommand
This field indicates the command tha has been issued by a particular menu item. By default the actionCommand is the label of the menu item, unless it has been set using setActionCommand.

 
See Also:
MenuItem.setActionCommand(String) sample code for java.awt.MenuItem.setActionCommand(java.lang.String) definition code for java.awt.MenuItem.setActionCommand(java.lang.String) , MenuItem.getActionCommand() sample code for java.awt.MenuItem.getActionCommand() definition code for java.awt.MenuItem.getActionCommand()

eventMask

long eventMask
The eventMask is ONLY set by subclasses via enableEvents. The mask should NOT be set when listeners are registered so that we can distinguish the difference between when listeners request events and subclasses request them.

 

shortcut

MenuShortcut sample code for java.awt.MenuShortcut definition code for java.awt.MenuShortcut  shortcut
A sequence of key stokes that ia associated with a menu item. Note :in 1.1.2 you must use setActionCommand() on a menu item in order for its shortcut to work.

 
See Also:
MenuItem.getShortcut() sample code for java.awt.MenuItem.getShortcut() definition code for java.awt.MenuItem.getShortcut() , MenuItem.setShortcut(MenuShortcut) sample code for java.awt.MenuItem.setShortcut(java.awt.MenuShortcut) definition code for java.awt.MenuItem.setShortcut(java.awt.MenuShortcut) , MenuItem.deleteShortcut() sample code for java.awt.MenuItem.deleteShortcut() definition code for java.awt.MenuItem.deleteShortcut()

menuItemSerializedDataVersion

int menuItemSerializedDataVersion
Menu item serialized data version.

 

Class java.awt.MenuItem.AccessibleAWTMenuItem