Serialized Form

Package java.applet

Class java.applet.Applet extends Panel implements Serializable

serialVersionUID: -5836846270535785031L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws ClassNotFoundException,
                   IOException
Read an applet from an object stream. This checks for a headless environment, then does the normal read.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if a class is not found
IOException - if deserialization fails
HeadlessException - if this is a headless environment

Since:
1.4

See Also:
GraphicsEnvironment.isHeadless()

Serialized Fields

accessibleContext

 AccessibleContext accessibleContext
The accessibility context for this applet.

Since:
1.2

the accessibleContext for this

Class java.applet.Applet.AccessibleApplet extends Panel.AccessibleAWTPanel implements Serializable

serialVersionUID: 8127374778187708896L

Package java.awt

Class java.awt.AWTError extends Error implements Serializable

serialVersionUID: -1819846354050686206L

Class java.awt.AWTEvent extends EventObject implements Serializable

serialVersionUID: -1825314779160409405L

Serialized Fields

id

 int id
The ID of the event.

the identifier number of this event

See Also:
AWTEvent.getID(), AWTEvent.AWTEvent(Object,int)


consumed

 boolean consumed
Indicates if the event has been consumed. False mean it is passed to the peer, true means it has already been processed. Semantic events generated by low-level events always have the value true.

whether the event has been consumed

See Also:
AWTEvent.consume(), AWTEvent.isConsumed()


bdata

 byte[] bdata
Who knows? It's in the serial version.

No idea what this is for.

Class java.awt.AWTException extends Exception implements Serializable

serialVersionUID: -1900414231151323879L

Class java.awt.AWTKeyStroke extends Object implements Serializable

serialVersionUID: -6430539691155161871L

Serialization Methods

readResolve

protected Object readResolve()
            throws ObjectStreamException
Returns a cached version of the deserialized keystroke, if available.

Returns:
a cached replacement

Throws:
ObjectStreamException - if something goes wrong

Serialized Fields

keyChar

 char keyChar
The typed character, or CHAR_UNDEFINED for key presses and releases.

the keyChar


keyCode

 int keyCode
The virtual key code, or VK_UNDEFINED for key typed. Package visible for use by Component.

the keyCode


modifiers

 int modifiers
The modifiers in effect. To match Sun, this stores the old style masks for shift, control, alt, meta, and alt-graph (but not button1); as well as the new style of extended modifiers for all modifiers.

bitwise or of the *_DOWN_MASK modifiers


onKeyRelease

 boolean onKeyRelease
True if this is a key release; should only be true if keyChar is CHAR_UNDEFINED.

true to distinguish key pressed from key released

Class java.awt.AWTPermission extends BasicPermission implements Serializable

serialVersionUID: 8890392402588814465L

Class java.awt.BorderLayout extends Object implements Serializable

serialVersionUID: -8658291919501921765L

Serialized Fields

north

 Component north


south

 Component south


east

 Component east


west

 Component west


center

 Component center


firstLine

 Component firstLine


lastLine

 Component lastLine


firstItem

 Component firstItem


lastItem

 Component lastItem


hgap

 int hgap

The horizontal gap between components


vgap

 int vgap

The vertical gap between components

Class java.awt.Button extends Component implements Serializable

serialVersionUID: -8774683716313001058L

Serialized Fields

actionCommand

 String actionCommand

The action command name for this button. This is package-private to avoid an accessor method.


label

 String label

The label for this button. This is package-private to avoid an accessor method.

Class java.awt.Button.AccessibleAWTButton extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 642321655757800191L

Class java.awt.Canvas extends Component implements Serializable

serialVersionUID: -2284879212465893870L

Class java.awt.Canvas.AccessibleAWTCanvas extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: -6325592262103146699L

Class java.awt.CardLayout extends Object implements Serializable

serialVersionUID: -4328196481005934313L

Serialized Fields

hgap

 int hgap

Horizontal gap value.


vgap

 int vgap

Vertical gap value.


tab

 Hashtable tab

Table of named components.

Class java.awt.Checkbox extends Component implements Serializable

serialVersionUID: 7270714317450821763L

Serialized Fields

group

 CheckboxGroup group

The checkbox group for this checkbox.


label

 String label

The label on this checkbox.


state

 boolean state

The state of this checkbox. This is package-private to avoid an accessor method.

Class java.awt.Checkbox.AccessibleAWTCheckbox extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 7881579233144754107L

Class java.awt.CheckboxGroup extends Object implements Serializable

serialVersionUID: 3729780091441768983L

Serialized Fields

selectedCheckbox

 Checkbox selectedCheckbox

The currently selected checkbox.

Class java.awt.CheckboxMenuItem extends MenuItem implements Serializable

serialVersionUID: 6190621106981774043L

Serialized Fields

state

 boolean state

The state of the checkbox, with true being on and false being off.

Class java.awt.CheckboxMenuItem.AccessibleAWTCheckboxMenuItem extends MenuItem.AccessibleAWTMenuItem implements Serializable

serialVersionUID: -4269533416223798698L

Class java.awt.Choice extends Component implements Serializable

serialVersionUID: -4075310674757313071L

Serialized Fields

pItems

 Vector pItems

A list of items for the choice box, which can be null. This is package-private to avoid an accessor method.


selectedIndex

 int selectedIndex

The index of the selected item in the choice box.


item_listeners

 ItemListener item_listeners

Class java.awt.Choice.AccessibleAWTChoice extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 7175603582428509322L

Class java.awt.Color extends Object implements Serializable

serialVersionUID: 118526816881161077L

Serialized Fields

value

 int value
The color value, in sRGB. Note that the actual color may be more precise if frgbvalue or fvalue is non-null. This class stores alpha, red, green, and blue, each 0-255, packed in an int. However, the subclass SystemColor stores an index into an array. Therefore, for serial compatibility (and because of poor design on Sun's part), this value cannot be used directly; instead you must use getRGB().

the value of the color, whether an RGB literal or array index

See Also:
Color.getRGB()


frgbvalue

 float[] frgbvalue
The color value, in sRGB. This may be null if the color was constructed with ints; and it does not include alpha. This stores red, green, and blue, in the range 0.0f - 1.0f.

Since:
1.2

the rgb components of the value

See Also:
Color.getRGBColorComponents(float[]), Color.getRGBComponents(float[])


fvalue

 float[] fvalue
The color value, in the native ColorSpace components. This may be null if the color was constructed with ints or in the sRGB color space; and it does not include alpha.

Since:
1.2

the original color space components of the color

See Also:
Color.getRGBColorComponents(float[]), Color.getRGBComponents(float[])


falpha

 float falpha
The alpha value. This is in the range 0.0f - 1.0f, but is invalid if deserialized as 0.0 when frgbvalue is null.

Since:
1.2

the alpha component of this color

See Also:
Color.getRGBComponents(float[]), Color.getComponents(float[])


cs

 ColorSpace cs
The ColorSpace. Null means the default sRGB space.

Since:
1.2

the color space for this color

See Also:
Color.getColor(String), Color.getColorSpace(), Color.getColorComponents(float[])

Class java.awt.Component extends Object implements Serializable

serialVersionUID: -7644114512714619750L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws ClassNotFoundException,
                   IOException
Deserializes this component. This regenerates all serializable listeners which were registered originally.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if deserialization fails
IOException - if the stream fails


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this component. This ignores all listeners which do not implement Serializable, but includes those that do.

Parameters:
s - the stream to write to

Throws:
IOException - if the stream fails

Serialized Fields

x

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

the x position

See Also:
Component.getLocation()


y

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

the y position

See Also:
Component.getLocation()


width

 int width
The component width.

the width

See Also:
Component.getSize()


height

 int height
The component height.

the height

See Also:
Component.getSize()


foreground

 Color foreground
The foreground color for the component. This may be null.

the foreground color

See Also:
Component.getForeground(), Component.setForeground(Color)


background

 Color background
The background color for the component. This may be null.

the background color

See Also:
Component.getBackground(), Component.setBackground(Color)


font

 Font font
The default font used in the component. This may be null.

the font

See Also:
Component.getFont(), Component.setFont(Font)


peerFont

 Font peerFont
The font in use by the peer, or null if there is no peer.

the peer's font


cursor

 Cursor cursor
The cursor displayed when the pointer is over this component. This may be null.

See Also:
Component.getCursor(), Component.setCursor(Cursor)


locale

 Locale locale
The locale for the component.

See Also:
Component.getLocale(), Component.setLocale(Locale)


ignoreRepaint

 boolean ignoreRepaint
True if the object should ignore repaint events (usually because it is not showing).

Since:
1.4

true to ignore repaints

See Also:
Component.getIgnoreRepaint(), Component.setIgnoreRepaint(boolean)


visible

 boolean visible
True when the object is visible (although it is only showing if all ancestors are likewise visible). For component, this defaults to true.

true if visible

See Also:
Component.isVisible(), Component.setVisible(boolean)


enabled

 boolean enabled
True if the object is enabled, meaning it can interact with the user. For component, this defaults to true.

true if enabled

See Also:
Component.isEnabled(), Component.setEnabled(boolean)


valid

 boolean valid
True if the object is valid. This is set to false any time a size adjustment means the component need to be layed out again.

true if layout is valid

See Also:
Component.isValid(), Component.validate(), Component.invalidate()


dropTarget

 DropTarget dropTarget
The DropTarget for drag-and-drop operations.

Since:
1.2

the drop target, or null

See Also:
Component.getDropTarget(), Component.setDropTarget(DropTarget)


popups

 Vector popups
The list of popup menus for this component.

the list of popups

See Also:
Component.add(PopupMenu)


name

 String name
The component's name. May be null, in which case a default name is generated on the first use.

the name

See Also:
Component.getName(), Component.setName(String)


nameExplicitlySet

 boolean nameExplicitlySet
True once the user has set the name. Note that the user may set the name to null.

true if the name has been explicitly set

See Also:
Component, Component.getName(), Component.setName(String)


focusable

 boolean focusable
Indicates if the object can be focused. Defaults to true for components.

Since:
1.4

See Also:
Component.isFocusable(), Component.setFocusable(boolean)


isFocusTraversableOverridden

 int isFocusTraversableOverridden
Tracks whether this component's isFocusTraversable() method has been overridden.

Since:
1.4


focusTraversalKeys

 Set[] focusTraversalKeys
The focus traversal keys, if not inherited from the parent or default keyboard focus manager. These sets will contain only AWTKeyStrokes that represent press and release events to use as focus control.

Since:
1.4

See Also:
Component.getFocusTraversalKeys(int), Component.setFocusTraversalKeys(int,Set)


focusTraversalKeysEnabled

 boolean focusTraversalKeysEnabled
True if focus traversal keys are enabled. This defaults to true for Component. If this is true, keystrokes in focusTraversalKeys are trapped and processed automatically rather than being passed on to the component.

Since:
1.4

See Also:
Component.getFocusTraversalKeysEnabled(), Component.setFocusTraversalKeysEnabled(boolean)


minSize

 Dimension minSize
Cached information on the minimum size. Should have been transient.

ignore


prefSize

 Dimension prefSize
Cached information on the preferred size. Should have been transient.

ignore


newEventsOnly

 boolean newEventsOnly
Set to true if an event is to be handled by this component, false if it is to be passed up the hierarcy.

true to process event locally

See Also:
Component.dispatchEvent(AWTEvent)


eventMask

 long eventMask
Set by subclasses to enable event handling of particular events, and left alone when modifying listeners. For component, this defaults to enabling only input methods.

the mask of events to process

See Also:
Component.enableInputMethods(boolean), AWTEvent


changeSupport

 PropertyChangeSupport changeSupport
Describes all registered PropertyChangeListeners.

Since:
1.2

the property change listeners

See Also:
Component.addPropertyChangeListener(PropertyChangeListener), Component.removePropertyChangeListener(PropertyChangeListener), Component.firePropertyChange(String,Object,Object)


isPacked

 boolean isPacked
True if the component has been packed (layed out).

true if this is packed


componentSerializedDataVersion

 int componentSerializedDataVersion
The serialization version for this class. Currently at version 4. XXX How do we handle prior versions?

the serialization version


accessibleContext

 AccessibleContext accessibleContext
The accessible context associated with this component. This is only set by subclasses.

Since:
1.2

the accessibility context

See Also:
Component.getAccessibleContext()

Class java.awt.Component.AccessibleAWTComponent extends AccessibleContext implements Serializable

serialVersionUID: 642321655757800191L

Serialized Fields

accessibleAWTComponentHandler

 ComponentListener accessibleAWTComponentHandler
Converts show/hide events to PropertyChange events, and is registered as a component listener on this component.

the component handler


accessibleAWTFocusHandler

 FocusListener accessibleAWTFocusHandler
Converts focus events to PropertyChange events, and is registered as a focus listener on this component.

the focus handler

Class java.awt.ComponentOrientation extends Object implements Serializable

serialVersionUID: -4113291392143563828L

Serialized Fields

orientation

 int orientation
The orientation of this object; bitwise-or of unknown (1), horizontal (2), and left-to-right (4).

the orientation

Class java.awt.Container extends Component implements Serializable

serialVersionUID: 4613797578919906343L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws ClassNotFoundException,
                   IOException
Deserialize this Container:
  1. Read from the stream the default serializable fields.
  2. Read a list of serializable ContainerListeners as optional data. If the list is null, no listeners will be registered.
  3. Read this Container's FocusTraversalPolicy as optional data. If this is null, then this Container will use a DefaultFocusTraversalPolicy.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if deserialization fails
IOException - if the stream fails


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serialize this Container:
  1. Write to the stream the default serializable fields.
  2. Write the list of serializable ContainerListeners as optional data.
  3. Write this Container's FocusTraversalPolicy as optional data.

Parameters:
s - the stream to write to

Throws:
IOException - if the stream fails

Serialized Fields

ncomponents

 int ncomponents


component

 Component[] component


layoutMgr

 LayoutManager layoutMgr


dispatcher

 java.awt.LightweightDispatcher dispatcher


maxSize

 Dimension maxSize


focusCycleRoot

 boolean focusCycleRoot

Since:
1.4


containerSerializedDataVersion

 int containerSerializedDataVersion


focusTraversalPolicy

 FocusTraversalPolicy focusTraversalPolicy
The focus traversal policy that determines how focus is transferred between this Container and its children.

Class java.awt.Container.AccessibleAWTContainer extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 5081320404842566097L

Serialized Fields

accessibleContainerHandler

 ContainerListener accessibleContainerHandler
The handler to fire PropertyChange when children are added or removed.

the handler for property changes

Class java.awt.ContainerOrderFocusTraversalPolicy extends FocusTraversalPolicy implements Serializable

serialVersionUID: 486933713763926351L

Serialized Fields

implicitDownCycleTraversal

 boolean implicitDownCycleTraversal
True if implicit down cycling is enabled.

Class java.awt.Cursor extends Object implements Serializable

serialVersionUID: 8028237497568985504L

Serialized Fields

name

 String name


type

 int type

The numeric id of this cursor.

Class java.awt.DefaultFocusTraversalPolicy extends ContainerOrderFocusTraversalPolicy implements Serializable

serialVersionUID: 486933713763926351L

Class java.awt.Dialog extends Window implements Serializable

serialVersionUID: 5920926903803293709L

Serialized Fields

modal

 boolean modal

Indicates whether or not this dialog box is modal.


resizable

 boolean resizable

Indicates whether or not this dialog box is resizable.


title

 String title

The title string for this dialog box, which can be null.


undecorated

 boolean undecorated
This field indicates whether the dialog is undecorated or not.


blocked

 boolean blocked
Indicates that we are blocked for modality in show


eq2

 EventQueue eq2
Secondary EventQueue to handle AWT events while we are blocked for modality in show

Class java.awt.Dialog.AccessibleAWTDialog extends Window.AccessibleAWTWindow implements Serializable

serialVersionUID: 5081320404842566097L

Class java.awt.Dimension extends Dimension2D implements Serializable

serialVersionUID: 4723952579491349524L

Serialized Fields

width

 int width
The width of this object.

the width

See Also:
Dimension.getSize(), Dimension.setSize(double,double)


height

 int height
The height of this object.

the height

See Also:
Dimension.getSize(), Dimension.setSize(double,double)

Class java.awt.Event extends Object implements Serializable

serialVersionUID: 5488922509400504703L

Serialized Fields

arg

 Object arg


clickCount

 int clickCount


consumed

 boolean consumed


evt

 Event evt


id

 int id


key

 int key


modifiers

 int modifiers


target

 Object target


when

 long when


x

 int x


y

 int y

Class java.awt.FileDialog extends Dialog implements Serializable

serialVersionUID: 5035145889651310422L

Serialized Fields

dir

 String dir

The directory for this file dialog.


file

 String file

The filename for this file dialog


filter

 FilenameFilter filter

The filter for selecting filenames to display


mode

 int mode

The mode of this dialog, either LOAD or SAVE.

Class java.awt.FlowLayout extends Object implements Serializable

serialVersionUID: -7262534875583282631L

Serialized Fields

align

 int align

The justification alignment of the lines of components, which will be one of the constants defined in this class.


hgap

 int hgap

The horizontal gap between components.


vgap

 int vgap

The vertical gap between lines of components.

Class java.awt.Font extends Object implements Serializable

serialVersionUID: -4206021311591459213L

Serialized Fields

name

 String name
The logical name of this font.

Since:
1.0


size

 int size
The size of this font in pixels.

Since:
1.0


style

 int style
The style of this font -- PLAIN, BOLD, ITALIC or BOLD+ITALIC.

Since:
1.0


peer

 gnu.java.awt.peer.ClasspathFontPeer peer

Class java.awt.FontFormatException extends Exception implements Serializable

serialVersionUID: -4481290147811361272L

Class java.awt.FontMetrics extends Object implements Serializable

serialVersionUID: 1681126225205050147L

Serialized Fields

font

 Font font
This is the font for which metrics will be returned.

Class java.awt.Frame extends Window implements Serializable

serialVersionUID: 2673458971256075116L

Serialized Fields

frameSerializedDataVersion

 int frameSerializedDataVersion

The version of the class data being serialized // FIXME: what is this value?


icon

 Image icon

Image used as the icon when this frame is minimized.


mbManagement

 boolean mbManagement

Constant used by the JDK Motif peer set. Not used in this implementation.


menuBar

 MenuBar menuBar

The menu bar for this frame.


ownedWindows

 Vector ownedWindows

A list of other top-level windows owned by this window.


resizable

 boolean resizable

Indicates whether or not this frame is resizable.


state

 int state

The state of this frame. // FIXME: What are the values here? This is package-private to avoid an accessor method.


title

 String title

The title of the frame.


maximizedBounds

 Rectangle maximizedBounds
Maximized bounds for this frame.


undecorated

 boolean undecorated
This field indicates whether the frame is undecorated or not.

Class java.awt.Frame.AccessibleAWTFrame extends Window.AccessibleAWTWindow implements Serializable

serialVersionUID: 5081320404842566097L

Class java.awt.GraphicsConfigTemplate extends Object implements Serializable

serialVersionUID: -8061369279557787079L

Class java.awt.GridBagConstraints extends Object implements Serializable

serialVersionUID: -1000070633030801713L

Serialized Fields

anchor

 int anchor


fill

 int fill


gridheight

 int gridheight


gridwidth

 int gridwidth


gridx

 int gridx


gridy

 int gridy


insets

 Insets insets


ipadx

 int ipadx


ipady

 int ipady


weightx

 double weightx


weighty

 double weighty

Class java.awt.GridBagLayout extends Object implements Serializable

serialVersionUID: 8838754796412211005L

Serialized Fields

comptable

 Hashtable comptable


internalcomptable

 Hashtable internalcomptable


layoutInfo

 java.awt.GridBagLayoutInfo layoutInfo


defaultConstraints

 GridBagConstraints defaultConstraints


columnWeights

 double[] columnWeights


columnWidths

 int[] columnWidths


rowWeights

 double[] rowWeights


rowHeights

 int[] rowHeights

Class java.awt.GridLayout extends Object implements Serializable

serialVersionUID: -7411804673224730901L

Serialized Fields

cols

 int cols

The number of columns in the grid.


rows

 int rows

The number of rows in the grid.


hgap

 int hgap

The horizontal gap between columns


vgap

 int vgap

The vertical gap between rows

Class java.awt.HeadlessException extends UnsupportedOperationException implements Serializable

serialVersionUID: 167183644944358563L

Class java.awt.IllegalComponentStateException extends IllegalStateException implements Serializable

serialVersionUID: -1889339587208144238L

Class java.awt.Insets extends Object implements Serializable

serialVersionUID: -2272572637695466749L

Serialized Fields

top

 int top
The gap from the top.

the top inset


left

 int left
The gap from the left.

the left inset


bottom

 int bottom
The gap from the bottom.

the bottom inset


right

 int right
The gap from the right.

the right inset

Class java.awt.Label extends Component implements Serializable

serialVersionUID: 3094126758329070636L

Serialized Fields

alignment

 int alignment

Indicates the alignment of the text within this label's window. This is one of the constants in this class. The default value is LEFT.


text

 String text

The text displayed in the label

Class java.awt.Label.AccessibleAWTLabel extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: -3568967560160480438L

Class java.awt.List extends Component implements Serializable

serialVersionUID: -3304312411574666869L

Serialized Fields

items

 Vector items

The items in the list.


multipleMode

 boolean multipleMode

Indicates whether or not multiple items can be selected simultaneously.


rows

 int rows

The number of rows in the list. This is set on creation only and cannot be modified.


selected

 int[] selected

An array of the item indices that are selected.


visibleIndex

 int visibleIndex

An index value used by makeVisible() and getVisibleIndex.


item_listeners

 ItemListener item_listeners


action_listeners

 ActionListener action_listeners

Class java.awt.List.AccessibleAWTList extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 642321655757800191L

Class java.awt.List.AccessibleAWTList.AccessibleAWTListChild extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 642321655757800191L

Serialized Fields

index

 int index


parent

 List parent

Class java.awt.MediaTracker extends Object implements Serializable

serialVersionUID: -483174189758638095L

Serialized Fields

target

 Component target
The component on which the media is eventually been drawn.


head

 java.awt.MediaTracker.MediaEntry head
The head of the linked list of tracked media objects.

Class java.awt.Menu extends MenuItem implements Serializable

serialVersionUID: -8809584163345499784L

Serialized Fields

items

 Vector items

The actual items in the menu


tearOff

 boolean tearOff

Flag indicating whether or not this menu is a tear off


isHelpMenu

 boolean isHelpMenu

Indicates whether or not this is a help menu.


menuSerializedDataVersion

 int menuSerializedDataVersion

Class java.awt.Menu.AccessibleAWTMenu extends MenuItem.AccessibleAWTMenuItem implements Serializable

serialVersionUID: -4269533416223798698L

Class java.awt.MenuBar extends MenuComponent implements Serializable

serialVersionUID: -4930327919388951260L

Serialized Fields

helpMenu

 Menu helpMenu

The menu used for providing help information


menus

 Vector menus

The menus contained in this menu bar.

Class java.awt.MenuBar.AccessibleAWTMenuBar extends MenuComponent.AccessibleAWTMenuComponent implements Serializable

serialVersionUID: -8577604491830083815L

Class java.awt.MenuComponent extends Object implements Serializable

serialVersionUID: -4536902356223894379L

Serialized Fields

font

 Font font
The font for this component.

the component's font.

See Also:
MenuComponent.getFont(), MenuComponent.setFont(Font)


name

 String name
The name of the component.

the component's name.

See Also:
MenuComponent.getName(), MenuComponent.setName(String)


accessibleContext

 AccessibleContext accessibleContext
The accessible context for this component.

the accessibility information for this component.

See Also:
MenuComponent.getAccessibleContext()


nameExplicitlySet

 boolean nameExplicitlySet
Was the name of the component set? This value defaults to false and becomes true after a call to setName(). Please note that this does not guarantee that name will then be non-null, as this may be the value passed to setName().

true if the name value has been explicitly set by calling setName().

See Also:
MenuComponent.setName(String)


newEventsOnly

 boolean newEventsOnly
Does this component handle new events? Events will be handled by this component if this is true. Otherwise, they will be forwarded up the component hierarchy. This implementation does not use this variable; it is merely provided for serialization compatability.

true if events are to be processed locally. Unused.

See Also:
MenuComponent.dispatchEvent(AWTEvent)

Class java.awt.MenuComponent.AccessibleAWTMenuComponent extends AccessibleContext implements Serializable

serialVersionUID: -4269533416223798698L

Class java.awt.MenuItem extends MenuComponent implements Serializable

serialVersionUID: -21757335363267194L

Serialized Fields

actionCommand

 String actionCommand

The name of the action command generated by this item. This is package-private to avoid an accessor method.


enabled

 boolean enabled

Indicates whether or not this menu item is enabled. This is package-private to avoid an accessor method.


eventMask

 long eventMask

The mask of events that are enabled for this menu item.


label

 String label

This menu item's label This is package-private to avoid an accessor method.


shortcut

 MenuShortcut shortcut

The shortcut for this menu item, if any

Class java.awt.MenuItem.AccessibleAWTMenuItem extends MenuComponent.AccessibleAWTMenuComponent implements Serializable

serialVersionUID: -4269533416223798698L

Class java.awt.MenuShortcut extends Object implements Serializable

serialVersionUID: 143448358473180225L

Serialized Fields

key

 int key

The virtual keycode for the shortcut.


usesShift

 boolean usesShift

true if the shift key was used with this shortcut, or false otherwise.

Class java.awt.Panel extends Container implements Serializable

serialVersionUID: -2728009084054400034L

Class java.awt.Panel.AccessibleAWTPanel extends Container.AccessibleAWTContainer implements Serializable

serialVersionUID: -6409552226660031050L

Class java.awt.Point extends Point2D implements Serializable

serialVersionUID: -5276940640259749850L

Serialized Fields

x

 int x
The x coordinate.

the X coordinate of the point

See Also:
Point.getLocation(), Point.move(int,int)


y

 int y
The y coordinate.

The Y coordinate of the point

See Also:
Point.getLocation(), Point.move(int,int)

Class java.awt.Polygon extends Object implements Serializable

serialVersionUID: -6460061437900069969L

Serialized Fields

npoints

 int npoints
This total number of endpoints.

the number of endpoints, possibly less than the array sizes


xpoints

 int[] xpoints
The array of X coordinates of endpoints. This should not be null.

the x coordinates

See Also:
Polygon.addPoint(int,int)


ypoints

 int[] ypoints
The array of Y coordinates of endpoints. This should not be null.

the y coordinates

See Also:
Polygon.addPoint(int,int)


bounds

 Rectangle bounds
The bounding box of this polygon. This is lazily created and cached, so it must be invalidated after changing points.

the bounding box, or null

See Also:
Polygon.getBounds()

Class java.awt.PopupMenu extends Menu implements Serializable

serialVersionUID: -4620452533522760060L

Class java.awt.PopupMenu.AccessibleAWTPopupMenu extends Menu.AccessibleAWTMenu implements Serializable

serialVersionUID: -4269533416223798698L

Class java.awt.Rectangle extends Rectangle2D implements Serializable

serialVersionUID: -4345857070255674764L

Serialized Fields

x

 int x
The X coordinate of the top-left corner of the rectangle.

the x coordinate

See Also:
Rectangle.setLocation(int,int), Rectangle.getLocation()


y

 int y
The Y coordinate of the top-left corner of the rectangle.

the y coordinate

See Also:
Rectangle.setLocation(int,int), Rectangle.getLocation()


width

 int width
The width of the rectangle.

See Also:
Rectangle.setSize(int,int), Rectangle.getSize()


height

 int height
The height of the rectangle.

See Also:
Rectangle.setSize(int,int), Rectangle.getSize()

Class java.awt.Scrollbar extends Component implements Serializable

serialVersionUID: 8451667562882310543L

Serialized Fields

lineIncrement

 int lineIncrement

The amount by which the value of the scrollbar is changed when incrementing in line mode.


pageIncrement

 int pageIncrement

The amount by which the value of the scrollbar is changed when incrementing in page mode.


maximum

 int maximum

The maximum value for this scrollbar


minimum

 int minimum

The minimum value for this scrollbar


orientation

 int orientation

The orientation of this scrollbar, which will be either the HORIZONTAL or VERTICAL constant from this class.


value

 int value

The current value of this scrollbar.


visibleAmount

 int visibleAmount

The width of the scrollbar's thumb, which is relative to the minimum and maximum value of the scrollbar.


adjustment_listeners

 AdjustmentListener adjustment_listeners
List of AdjustmentListener's.

Class java.awt.Scrollbar.AccessibleAWTScrollBar extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: -344337268523697807L

Class java.awt.ScrollPane extends Container implements Serializable

serialVersionUID: 7956609840827222915L

Serialized Fields

hAdjustable

 ScrollPaneAdjustable hAdjustable

The horizontal scrollbar for this window. The methods setMinimum(), setMaximum, and setVisibleAmount must not be called on this scrollbar.


vAdjustable

 ScrollPaneAdjustable vAdjustable

The vertical scrollbar for this window. The methods setMinimum(), setMaximum, and setVisibleAmount must not be called on this scrollbar.


scrollbarDisplayPolicy

 int scrollbarDisplayPolicy

Indicates when scrollbars are displayed in this window, will be one of the constants from this class.


scrollPosition

 Point scrollPosition


wheelScrollingEnabled

 boolean wheelScrollingEnabled

Class java.awt.ScrollPane.AccessibleAWTScrollPane extends Container.AccessibleAWTContainer implements Serializable

serialVersionUID: 5081320404842566097L

Class java.awt.ScrollPaneAdjustable extends Object implements Serializable

serialVersionUID: -3359745691033257079L

Serialized Fields

sp

 ScrollPane sp


orientation

 int orientation


value

 int value


minimum

 int minimum


maximum

 int maximum


visibleAmount

 int visibleAmount


unitIncrement

 int unitIncrement


blockIncrement

 int blockIncrement


adjustmentListener

 AdjustmentListener adjustmentListener

Class java.awt.SystemColor extends Color implements Serializable

serialVersionUID: 4503142729533789064L

Class java.awt.TextArea extends TextComponent implements Serializable

serialVersionUID: 3692302836626095722L

Serialized Fields

columns

 int columns

The number of columns used in this text area's preferred and minimum size calculations.


rows

 int rows

The number of rows used in this text area's preferred and minimum size calculations.


scrollbarVisibility

 int scrollbarVisibility

The scrollbar display policy. One of SCROLLBARS_BOTH, SCROLLBARS_VERTICAL_ONLY, SCROLLBARS_HORIZONTAL_ONLY, SCROLLBARS_NONE.

Class java.awt.TextArea.AccessibleAWTTextArea extends TextComponent.AccessibleAWTTextComponent implements Serializable

serialVersionUID: 642321655757800191L

Class java.awt.TextComponent extends Component implements Serializable

serialVersionUID: -2214773872412987419L

Serialized Fields

editable

 boolean editable

Indicates whether or not this component is editable. This is package-private to avoid an accessor method.


selectionStart

 int selectionStart

The starting position of the selected text region. This is package-private to avoid an accessor method.


selectionEnd

 int selectionEnd

The ending position of the selected text region. This is package-private to avoid an accessor method.


text

 String text

The text in the component This is package-private to avoid an accessor method.

Class java.awt.TextComponent.AccessibleAWTTextComponent extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 642321655757800191L

Class java.awt.TextField extends TextComponent implements Serializable

serialVersionUID: -2966288784432217853L

Serialized Fields

columns

 int columns

The number of columns in the text entry field.


echoChar

 char echoChar

The character that is echoed when doing protected input


action_listeners

 ActionListener action_listeners

Class java.awt.TextField.AccessibleAWTTextField extends TextComponent.AccessibleAWTTextComponent implements Serializable

serialVersionUID: 642321655757800191L

Class java.awt.Window extends Container implements Serializable

serialVersionUID: 4497834738069338734L

Serialized Fields

warningString

 String warningString


windowSerializedDataVersion

 int windowSerializedDataVersion


state

 int state

Since:
1.2


focusableWindowState

 boolean focusableWindowState

Since:
1.4

Class java.awt.Window.AccessibleAWTWindow extends Container.AccessibleAWTContainer implements Serializable

serialVersionUID: 5081320404842566097L

Package java.awt.color

Class java.awt.color.CMMException extends RuntimeException implements Serializable

serialVersionUID: 5775558044142994965L

Class java.awt.color.ColorSpace extends Object implements Serializable

serialVersionUID: -409452704308689724L

Serialized Fields

type

 int type


numComponents

 int numComponents

Class java.awt.color.ICC_ColorSpace extends ColorSpace implements Serializable

serialVersionUID: 3455889114070431483L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes the object

Serialized Fields

thisProfile

 ICC_Profile thisProfile


minVal

 float[] minVal


maxVal

 float[] maxVal


diffMinMax

 float[] diffMinMax


invDiffMinMax

 float[] invDiffMinMax


needScaleInit

 boolean needScaleInit

Class java.awt.color.ICC_Profile extends Object implements Serializable

serialVersionUID: -3938515861990936766L

Serialization Methods

readResolve

protected Object readResolve()
            throws ObjectStreamException
After deserializing we must determine if the class we want is really one of the more specialized ICC_ProfileRGB or ICC_ProfileGray classes.


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes an instance


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes an instance The format is a String and a byte array, The string is non-null if the instance is one of the built-in profiles. Otherwise the byte array is non-null and represents the profile data.

Class java.awt.color.ICC_ProfileGray extends ICC_Profile implements Serializable

serialVersionUID: -1124721290732002649L

Class java.awt.color.ICC_ProfileRGB extends ICC_Profile implements Serializable

serialVersionUID: 8505067385152579334L

Class java.awt.color.ProfileDataException extends RuntimeException implements Serializable

serialVersionUID: 7286140888240322498L

Package java.awt.datatransfer

Class java.awt.datatransfer.DataFlavor extends Object implements Serializable

serialVersionUID: 8367026044764648243L

Serialization Methods

writeExternal

public void writeExternal(ObjectOutput stream)
            throws IOException
Serialize this class.

Parameters:
stream - The ObjectOutput stream to serialize to.

Throws:
IOException - If an error occurs.


readExternal

public void readExternal(ObjectInput stream)
            throws IOException,
                   ClassNotFoundException
De-serialize this class.

Parameters:
stream - The ObjectInput stream to deserialize from.

Throws:
IOException - If an error ocurs.
ClassNotFoundException - If the class for an object being restored cannot be found.

Serialized Fields

mimeType

 String mimeType


representationClass

 Class representationClass


humanPresentableName

 String humanPresentableName

Class java.awt.datatransfer.MimeTypeParseException extends Exception implements Serializable

serialVersionUID: -5604407764691570741L

Class java.awt.datatransfer.UnsupportedFlavorException extends Exception implements Serializable

serialVersionUID: 5383814944251665601L

Package java.awt.dnd

Class java.awt.dnd.DragGestureEvent extends EventObject implements Serializable

serialVersionUID: 9080172649166731306L

Serialized Fields

dragSource

 DragSource dragSource


component

 Component component


origin

 Point origin


action

 int action

Class java.awt.dnd.DragGestureRecognizer extends Object implements Serializable

serialVersionUID: 8996673345831063337L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws ClassNotFoundException,
                   IOException


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException

Serialized Fields

dragSource

 DragSource dragSource


component

 Component component


sourceActions

 int sourceActions


events

 ArrayList events

Class java.awt.dnd.DragSource extends Object implements Serializable

serialVersionUID: 6236096958971414066L

Class java.awt.dnd.DragSourceContext extends Object implements Serializable

serialVersionUID: -115407898692194719L

Serialized Fields

peer

 DragSourceContextPeer peer


cursor

 Cursor cursor


transferable

 Transferable transferable


trigger

 DragGestureEvent trigger


dragSourceListener

 DragSourceListener dragSourceListener


useCustomCursor

 boolean useCustomCursor


sourceActions

 int sourceActions


image

 Image image


offset

 Point offset

Class java.awt.dnd.DragSourceDragEvent extends DragSourceEvent implements Serializable

serialVersionUID: 481346297933902471L

Serialized Fields

dropAction

 int dropAction


targetActions

 int targetActions


gestureModifiers

 int gestureModifiers

Class java.awt.dnd.DragSourceDropEvent extends DragSourceEvent implements Serializable

serialVersionUID: -5571321229470821891L

Serialized Fields

dropAction

 int dropAction


dropSuccess

 boolean dropSuccess

Class java.awt.dnd.DragSourceEvent extends EventObject implements Serializable

serialVersionUID: -763287114604032641L

Serialized Fields

locationSpecified

 boolean locationSpecified


x

 int x


y

 int y

Class java.awt.dnd.DropTarget extends Object implements Serializable

serialVersionUID: -6283860791671019047L

Serialized Fields

component

 Component component


flavorMap

 FlavorMap flavorMap


actions

 int actions


dropTargetContext

 DropTargetContext dropTargetContext


dropTargetListener

 DropTargetListener dropTargetListener


active

 boolean active

Class java.awt.dnd.DropTargetContext extends Object implements Serializable

serialVersionUID: -634158968993743371L

Serialized Fields

dropTarget

 DropTarget dropTarget


targetActions

 int targetActions


dtcp

 DropTargetContextPeer dtcp

Class java.awt.dnd.DropTargetDragEvent extends DropTargetEvent implements Serializable

serialVersionUID: -8422265619058953682L

Serialized Fields

dropAction

 int dropAction


srcActions

 int srcActions


location

 Point location

Class java.awt.dnd.DropTargetDropEvent extends DropTargetEvent implements Serializable

serialVersionUID: -1721911170440459322L

Serialized Fields

dropAction

 int dropAction


actions

 int actions


location

 Point location


isLocalTx

 boolean isLocalTx

Class java.awt.dnd.DropTargetEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

context

 DropTargetContext context

Class java.awt.dnd.InvalidDnDOperationException extends IllegalStateException implements Serializable

serialVersionUID: -6062568741193956678L

Class java.awt.dnd.MouseDragGestureRecognizer extends DragGestureRecognizer implements Serializable

serialVersionUID: 8996673345831063337L

Package java.awt.event

Class java.awt.event.ActionEvent extends AWTEvent implements Serializable

serialVersionUID: -7671078796273832149L

Serialized Fields

actionCommand

 String actionCommand
A nonlocalized string that gives more specific details of the event cause.

the command for this event

See Also:
ActionEvent.getActionCommand()


modifiers

 int modifiers
The bitmask of the modifiers that were pressed during the action.

modifiers for this event

See Also:
ActionEvent.getModifiers()


when

 long when
The timestamp of this event; usually the same as the underlying input event.

Since:
1.4

the timestamp of the event

See Also:
ActionEvent.getWhen()

Class java.awt.event.AdjustmentEvent extends AWTEvent implements Serializable

serialVersionUID: 5700290645205279921L

Serialized Fields

adjustable

 Adjustable adjustable
The adjustable object that caused the event.

the cause

See Also:
AdjustmentEvent.getAdjustable()


adjustmentType

 int adjustmentType
The type of adjustment, one of UNIT_INCREMENT, UNIT_DECREMENT, BLOCK_INCREMENT, BLOCK_DECREMENT, or TRACK.

the adjustment type

See Also:
AdjustmentEvent.getAdjustmentType()


value

 int value
The new value of the adjustable; it should be in the range of the adjustable cause.

the adjustment value

See Also:
AdjustmentEvent.getValue()


isAdjusting

 boolean isAdjusting
True if this is in a series of multiple adjustment events.

Since:
1.4

true if this is not the last adjustment

See Also:
AdjustmentEvent.getValueIsAdjusting()

Class java.awt.event.ComponentEvent extends AWTEvent implements Serializable

serialVersionUID: 8101406823902992965L

Class java.awt.event.ContainerEvent extends ComponentEvent implements Serializable

serialVersionUID: -4114942250539772041L

Serialized Fields

child

 Component child
The non-null child component that was added or removed.

the child component that changed

Class java.awt.event.FocusEvent extends ComponentEvent implements Serializable

serialVersionUID: 523753786457416396L

Serialized Fields

temporary

 boolean temporary
Indicates whether or not the focus change is temporary.

true if the focus change is temporary

See Also:
FocusEvent.isTemporary()


opposite

 Component opposite
The other component which is giving up or stealing focus from this component, if known.

Since:
1.4

the component with the opposite focus event, or null

See Also:
FocusEvent.getOppositeComponent()

Class java.awt.event.HierarchyEvent extends AWTEvent implements Serializable

serialVersionUID: -5337576970038043990L

Serialized Fields

changed

 Component changed
The component at the top of the changed hierarchy.

the top component changed


changedParent

 Container changedParent
The parent of this component, either before or after the change depending on the type of change.

the parent component changed


changeFlags

 long changeFlags
The bitmask of HIERARCHY_CHANGED event types.

the change flags

Class java.awt.event.InputEvent extends ComponentEvent implements Serializable

serialVersionUID: -2482525981698309786L

Serialized Fields

when

 long when
The timestamp when this event occurred.

the timestamp

See Also:
InputEvent.getWhen()


modifiers

 int modifiers
The modifiers in effect for this event. Package visible for use by subclasses. The old style (bitmask 0x3f) should not be mixed with the new style (bitmasks 0xffffffc0).

the modifier state, stored in the new style

See Also:
InputEvent.getModifiers(), MouseEvent

Class java.awt.event.InputMethodEvent extends AWTEvent implements Serializable

serialVersionUID: 4727190874778922661L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads in the object from a serial stream, updating when to EventQueue.getMostRecentEventTime() if necessary.

Parameters:
s - the stream to read from

Throws:
IOException - if deserialization fails
ClassNotFoundException - if deserialization fails

Serialized Fields

when

 long when
The timestamp when this event was created.

Since:
1.4

the timestamp

Class java.awt.event.InvocationEvent extends AWTEvent implements Serializable

serialVersionUID: 436056344909459450L

Serialized Fields

runnable

 Runnable runnable
This is the Runnable object to call when dispatched.

the runnable to execute


notifier

 Object notifier
This is the object to call notifyAll() on when the call to run() returns, or null if no object is to be notified.

the object to notify


catchExceptions

 boolean catchExceptions
This variable is set to true if exceptions are caught and stored in a variable during the call to run(), otherwise exceptions are ignored and propagate up.

true to catch exceptions


exception

 Exception exception
This is the caught exception thrown in the run() method. It is null if exceptions are ignored, the run method hasn't completed, or there were no exceptions.

the caught exception, if any


when

 long when
The timestamp when this event was created.

Since:
1.4

the timestamp

See Also:
InvocationEvent.getWhen()

Class java.awt.event.ItemEvent extends AWTEvent implements Serializable

serialVersionUID: -608708132447206933L

Serialized Fields

item

 Object item
The item affected by this event.

the item of the selection


stateChange

 int stateChange
The state change direction, one of SELECTED or DESELECTED.

the selection state

Class java.awt.event.KeyEvent extends InputEvent implements Serializable

serialVersionUID: -2352130953028126954L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads in the object from a serial stream.

Parameters:
s - the stream to read from

Throws:
IOException - if deserialization fails
ClassNotFoundException - if deserialization fails

Serialized Fields

keyCode

 int keyCode
The code assigned to the physical keyboard location (as adjusted by the keyboard layout). Use the symbolic VK_* names instead of numbers.

the VK_ code for this key

See Also:
KeyEvent.getKeyCode()


keyChar

 char keyChar
The Unicode character produced by the key type event. This has no meaning for key pressed and key released events.

the Unicode value for this key

See Also:
KeyEvent.getKeyChar()


keyLocation

 int keyLocation

Since:
1.4

the key location

See Also:
KeyEvent.getKeyLocation()


isProxyActive

 boolean isProxyActive
Stores the state of the native event dispatching system, to correctly dispatch in Component#dispatchEventImpl when a proxy is active. XXX Does this matter in Classpath?

whether the proxy is active

Class java.awt.event.MouseEvent extends InputEvent implements Serializable

serialVersionUID: -991214153494842848L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads in the object from a serial stream.

Parameters:
s - the stream to read from

Throws:
IOException - if deserialization fails
ClassNotFoundException - if deserialization fails

Serialized Fields

x

 int x
The X coordinate of the mouse cursor at the time of the event.

the x coordinate

See Also:
MouseEvent.getX()


y

 int y
The Y coordinate of the mouse cursor at the time of the event.

the y coordinate

See Also:
MouseEvent.getY()


clickCount

 int clickCount
The number of clicks that took place. For MOUSE_CLICKED, MOUSE_PRESSED, and MOUSE_RELEASED, this will be at least 1; otherwise it is 0. see #getClickCount()

the number of clicks


button

 int button
Indicates which mouse button changed state. Can only be one of NOBUTTON, BUTTON1, BUTTON2, or BUTTON3.

Since:
1.4

See Also:
MouseEvent.getButton()


popupTrigger

 boolean popupTrigger
Whether or not this event should trigger a popup menu.

true if this is a popup trigger

See Also:
PopupMenu, MouseEvent.isPopupTrigger()

Class java.awt.event.MouseWheelEvent extends MouseEvent implements Serializable

serialVersionUID: 6459879390515399677L

Serialized Fields

scrollType

 int scrollType
Indicates what scroll type should take place. This should be limited to WHEEL_UNIT_SCROLL and WHEEL_BLOCK_SCROLL.

the scroll type


scrollAmount

 int scrollAmount
Indicates the scroll amount. This is only meaningful if scrollType is WHEEL_UNIT_SCROLL.

the number of lines to scroll


wheelRotation

 int wheelRotation
Indicates how far the mouse wheel was rotated.

the rotation amount

Class java.awt.event.PaintEvent extends ComponentEvent implements Serializable

serialVersionUID: 1267492026433337593L

Serialized Fields

updateRect

 Rectangle updateRect
This is the rectange to be painted or updated.

the non-null rectangle to be painted

See Also:
PaintEvent.getUpdateRect(), PaintEvent.setUpdateRect(Rectangle)

Class java.awt.event.TextEvent extends AWTEvent implements Serializable

serialVersionUID: 6269902291250941179L

Class java.awt.event.WindowEvent extends ComponentEvent implements Serializable

serialVersionUID: -1567959133147912127L

Serialized Fields

opposite

 Window opposite
The other Window involved in a focus or activation change. For WINDOW_ACTIVATED and WINDOW_GAINED_FOCUS events, this is the window that lost focus; for WINDOW_DEACTIVATED and WINDOW_LOST_FOCUS, this is the window that stole focus; and for other events (or when native implementation does not have the data available), this is null.

Since:
1.4

the opposite window, or null

See Also:
WindowEvent.getOppositeWindow()


oldState

 int oldState
The former state of the window.

Since:
1.4

bitmask of the old window state


newState

 int newState
The present state of the window.

Since:
1.4

bitmask of the new window state

Package java.awt.font

Class java.awt.font.NumericShaper extends Object implements Serializable

serialVersionUID: -8022764705923730308L

Serialized Fields

ranges

 int ranges


context

 int context

Class java.awt.font.TextAttribute extends AttributedCharacterIterator.Attribute implements Serializable

serialVersionUID: 7744112784117861702L

Serialization Methods

readResolve

protected Object readResolve()
            throws InvalidObjectException
After deserialization, this method ensures that only one instance of each attribute is used.
Overrides:
readResolve in interface AttributedCharacterIterator.Attribute

Returns:
The (single) attribute instance.

Throws:
InvalidObjectException - if the attribute is not recognised.

Class java.awt.font.TransformAttribute extends Object implements Serializable

serialVersionUID: 3356247357827709530L

Serialized Fields

affineTransform

 AffineTransform affineTransform

Package java.awt.geom

Class java.awt.geom.AffineTransform extends Object implements Serializable

serialVersionUID: 1330973210523860834L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws ClassNotFoundException,
                   IOException
Reads a transform from an object stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if there is a problem deserializing
IOException - if there is a problem deserializing

Serialized Fields

m00

 double m00
The X coordinate scaling element of the transform matrix.

matrix[0,0]


m10

 double m10
The Y coordinate shearing element of the transform matrix.

matrix[1,0]


m01

 double m01
The X coordinate shearing element of the transform matrix.

matrix[0,1]


m11

 double m11
The Y coordinate scaling element of the transform matrix.

matrix[1,1]


m02

 double m02
The X coordinate translation element of the transform matrix.

matrix[0,2]


m12

 double m12
The Y coordinate translation element of the transform matrix.

matrix[1,2]

Class java.awt.geom.IllegalPathStateException extends RuntimeException implements Serializable

serialVersionUID: -5158084205220481094L

Class java.awt.geom.NoninvertibleTransformException extends Exception implements Serializable

serialVersionUID: 6137225240503990466L

Package java.awt.image

Class java.awt.image.ImagingOpException extends RuntimeException implements Serializable

serialVersionUID: 8026288481846276658L

Class java.awt.image.RasterFormatException extends RuntimeException implements Serializable

serialVersionUID: 96598996116164315L

Package java.awt.image.renderable

Class java.awt.image.renderable.ParameterBlock extends Object implements Serializable

serialVersionUID: -7577115551785240750L

Serialized Fields

sources

 Vector sources


parameters

 Vector parameters

Package java.awt.print

Class java.awt.print.PrinterAbortException extends PrinterException implements Serializable

serialVersionUID: 4725169026278854136L

Class java.awt.print.PrinterException extends Exception implements Serializable

serialVersionUID: -3757589981158265819L

Class java.awt.print.PrinterIOException extends PrinterException implements Serializable

serialVersionUID: 5850870712125932846L

Serialized Fields

mException

 IOException mException
The exception that caused this (duplicates Throwable).

the I/O exception that terminated the job

Package java.beans

Class java.beans.IntrospectionException extends Exception implements Serializable

serialVersionUID: -3728150539969542619L

Class java.beans.PropertyChangeEvent extends EventObject implements Serializable

serialVersionUID: 7042693688939648123L

Serialized Fields

propertyName

 String propertyName
The name of the property that changed, may be null. Package visible for use by PropertyChangeSupport.

the changed property name


newValue

 Object newValue
The new value of the property, may be null. Package visible for use by PropertyChangeSupport.

the new property value


oldValue

 Object oldValue
The old value of the property, may be null. Package visible for use by PropertyChangeSupport.

the old property value


propagationId

 Object propagationId
The propagation ID, reserved for future use. May be null.

the Propagation ID

See Also:
PropertyChangeEvent.getPropagationId()

Class java.beans.PropertyChangeSupport extends Object implements Serializable

serialVersionUID: 6401253773779951803L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Saves the state of the object to the stream.

Parameters:
s - the stream to write to

Throws:
IOException - if anything goes wrong


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads the object back from stream (deserialization). XXX Since serialization for 1.1 streams was not documented, this may not work if propertyChangeSupportSerializedDataVersion is 1.

Parameters:
s - the stream to read from

Throws:
IOException - if reading the stream fails
ClassNotFoundException - if deserialization fails

Serialized Fields

children

 Hashtable children
Maps property names (String) to named listeners (PropertyChangeSupport). If this is a child instance, this field will be null.

Since:
1.2

the map of property names to named listener managers


source

 Object source
The non-null source object for any generated events.

the event source

Class java.beans.PropertyVetoException extends Exception implements Serializable

serialVersionUID: 129596057694162164L

Serialized Fields

evt

 PropertyChangeEvent evt
The vetoed change.

the event that was vetoed

Class java.beans.VetoableChangeSupport extends Object implements Serializable

serialVersionUID: -5090210921595982017L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Saves the state of the object to the stream.

Parameters:
s - the stream to write to

Throws:
IOException - if anything goes wrong


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads the object back from stream (deserialization). XXX Since serialization for 1.1 streams was not documented, this may not work if vetoableChangeSupportSerializedDataVersion is 1.

Parameters:
s - the stream to read from

Throws:
IOException - if reading the stream fails
ClassNotFoundException - if deserialization fails

Serialized Fields

children

 Hashtable children
Maps property names (String) to named listeners (VetoableChangeSupport). If this is a child instance, this field will be null.

Since:
1.2

the map of property names to named listener managers


source

 Object source
The non-null source object for any generated events.

the event source

Package java.beans.beancontext

Class java.beans.beancontext.BeanContextChildSupport extends Object implements Serializable

serialVersionUID: 6328947014421475877L

Serialized Fields

beanContextChildPeer

 BeanContextChild beanContextChildPeer
The peer on which to perform set actions. This is here so that this class can be used as a peer.

When extending this class, this variable will be set to this.


pcSupport

 PropertyChangeSupport pcSupport
Listeners are registered here and events are fired through here.


vcSupport

 VetoableChangeSupport vcSupport
Listeners are registered here and events are fired through here.

Class java.beans.beancontext.BeanContextEvent extends EventObject implements Serializable

serialVersionUID: 7267998073569045052L

Serialized Fields

propagatedFrom

 BeanContext propagatedFrom
The BeanContext that most recently passed this event on.

Class java.beans.beancontext.BeanContextMembershipEvent extends BeanContextEvent implements Serializable

serialVersionUID: 7267998073569045052L

Serialized Fields

children

 Collection children
The children that were added or removed.

Class java.beans.beancontext.BeanContextServiceAvailableEvent extends BeanContextEvent implements Serializable

serialVersionUID: 7267998073569045052L

Serialized Fields

serviceClass

 Class serviceClass
The Class representing the service which is now available.

Class java.beans.beancontext.BeanContextServiceRevokedEvent extends BeanContextEvent implements Serializable

serialVersionUID: 7267998073569045052L

Serialized Fields

serviceClass

 Class serviceClass
The Class representing the service which is now available.


invalidateRefs

 boolean invalidateRefs

Class java.beans.beancontext.BeanContextServicesSupport extends BeanContextSupport implements Serializable

serialVersionUID: -8494482757288719206L

Class java.beans.beancontext.BeanContextServicesSupport.BCSSChild extends BeanContextSupport.BCSChild implements Serializable

serialVersionUID: -6848044915271367103L

Class java.beans.beancontext.BeanContextServicesSupport.BCSSServiceProvider extends Object implements Serializable

serialVersionUID: 861278251667444782L

Serialized Fields

serviceProvider

 BeanContextServiceProvider serviceProvider

Class java.beans.beancontext.BeanContextSupport extends BeanContextChildSupport implements Serializable

serialVersionUID: -4879613978649577204L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws ClassNotFoundException,
                   IOException


writeObject

private void writeObject(ObjectOutputStream s)
            throws ClassNotFoundException,
                   IOException

Class java.beans.beancontext.BeanContextSupport.BCSChild extends Object implements Serializable

serialVersionUID: 3289144128843950629L

Package java.io

Class java.io.CharConversionException extends IOException implements Serializable

serialVersionUID: -8680016352018427031L

Class java.io.EOFException extends IOException implements Serializable

serialVersionUID: 6433858223774886977L

Class java.io.Externalizable extends Object implements Serializable

Serialization Methods

readExternal

public void readExternal(ObjectInput in)
            throws ClassNotFoundException,
                   IOException
This method restores an object's state by reading in the instance data for the object from the passed in stream. Note that this stream is not a subclass of InputStream, but rather is a class that implements the ObjectInput interface. That interface provides a mechanism for reading in Java data types from a stream.

Note that this method must be compatible with writeExternal. It must read back the exact same types that were written by that method in the exact order they were written.

If this method needs to read back an object instance, then the class for that object must be found and loaded. If that operation fails, then this method throws a ClassNotFoundException

Parameters:
in - An ObjectInput instance for reading in the object state

Throws:
ClassNotFoundException - If the class of an object being restored cannot be found
IOException - If any other error occurs


writeExternal

public void writeExternal(ObjectOutput out)
            throws IOException
This method is responsible for writing the instance data of an object to the passed in stream. Note that this stream is not a subclass of OutputStream, but rather is a class that implements the ObjectOutput interface. That interface provides a number of methods for writing Java data values to a stream.

Not that the implementation of this method must be coordinated with the implementation of readExternal.

Parameters:
out - An ObjectOutput instance for writing the object state

Throws:
IOException - If an error occurs

Class java.io.File extends Object implements Serializable

serialVersionUID: 301077366599181567L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream oos)
            throws IOException


readObject

private void readObject(ObjectInputStream ois)
            throws ClassNotFoundException,
                   IOException

Serialized Fields

path

 String path
This is the path to the file set when the object is created. It may be an absolute or relative path name.

Class java.io.FileNotFoundException extends IOException implements Serializable

serialVersionUID: -897856973823710492L

Class java.io.FilePermission extends Permission implements Serializable

serialVersionUID: 7930732926638008763L

Serialized Fields

readPerm

 boolean readPerm


writePerm

 boolean writePerm


executePerm

 boolean executePerm


deletePerm

 boolean deletePerm


actionsString

 String actionsString

Class java.io.InterruptedIOException extends IOException implements Serializable

serialVersionUID: 4020568460727500567L

Serialized Fields

bytesTransferred

 int bytesTransferred
The number of bytes read/written prior to the interruption.

count of bytes successfully transferred

Class java.io.InvalidClassException extends ObjectStreamException implements Serializable

serialVersionUID: -4333316296251054416L

Serialized Fields

classname

 String classname
The name of the class which encountered the error.

the classname causing the error

Class java.io.InvalidObjectException extends ObjectStreamException implements Serializable

serialVersionUID: 3233174318281839583L

Class java.io.IOException extends Exception implements Serializable

serialVersionUID: 7818375828146090155L

Class java.io.NotActiveException extends ObjectStreamException implements Serializable

serialVersionUID: -3893467273049808895L

Class java.io.NotSerializableException extends ObjectStreamException implements Serializable

serialVersionUID: 2906642554793891381L

Class java.io.ObjectStreamClass extends Object implements Serializable

serialVersionUID: -6120832682080437368L

Serialized Fields

superClass

 ObjectStreamClass superClass


clazz

 Class clazz


name

 String name


uid

 long uid


flags

 byte flags


fields

 ObjectStreamField[] fields


primFieldSize

 int primFieldSize


objectFieldCount

 int objectFieldCount


readObjectMethod

 Method readObjectMethod


readResolveMethod

 Method readResolveMethod


writeReplaceMethod

 Method writeReplaceMethod


writeObjectMethod

 Method writeObjectMethod


realClassIsSerializable

 boolean realClassIsSerializable


realClassIsExternalizable

 boolean realClassIsExternalizable


fieldMapping

 ObjectStreamField[] fieldMapping


firstNonSerializableParentConstructor

 Constructor firstNonSerializableParentConstructor


constructor

 Constructor constructor


isProxyClass

 boolean isProxyClass

Class java.io.ObjectStreamException extends IOException implements Serializable

serialVersionUID: 7260898174833392607L

Class java.io.OptionalDataException extends ObjectStreamException implements Serializable

serialVersionUID: -8011121865681257820L

Serialized Fields

eof

 boolean eof
Whether or not the end of the stream has been reached.

the end of the buffer was reached


length

 int length
The number of valid bytes that can be read.

the bytes of the buffer remaining

Class java.io.SerializablePermission extends BasicPermission implements Serializable

serialVersionUID: 8537212141160296410L

Class java.io.StreamCorruptedException extends ObjectStreamException implements Serializable

serialVersionUID: 8983558202217591746L

Class java.io.SyncFailedException extends IOException implements Serializable

serialVersionUID: -2353342684412443330L

Class java.io.UnsupportedEncodingException extends IOException implements Serializable

serialVersionUID: -4274276298326136670L

Class java.io.UTFDataFormatException extends IOException implements Serializable

serialVersionUID: 420743449228280612L

Class java.io.WriteAbortedException extends ObjectStreamException implements Serializable

serialVersionUID: -3326426625597282442L

Serialized Fields

detail

 Exception detail
The cause of this exception. This pre-dates the exception chaining of Throwable; and although you can change this field, you are wiser to leave it alone.

the exception cause

Package java.lang

Class java.lang.AbstractMethodError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -1654391082989018462L

Class java.lang.ArithmeticException extends RuntimeException implements Serializable

serialVersionUID: 2256477558314496007L

Class java.lang.ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException implements Serializable

serialVersionUID: -5116101128118950844L

Class java.lang.ArrayStoreException extends RuntimeException implements Serializable

serialVersionUID: -4522193890499838241L

Class java.lang.AssertionError extends Error implements Serializable

serialVersionUID: -5013299493970297370L

Class java.lang.Boolean extends Object implements Serializable

serialVersionUID: -3665804199014368530L

Serialized Fields

value

 boolean value
The immutable value of this Boolean.

the wrapped value

Class java.lang.Byte extends Number implements Serializable

serialVersionUID: -7183698231559129828L

Serialized Fields

value

 byte value
The immutable value of this Byte.

the wrapped byte

Class java.lang.Character extends Object implements Serializable

serialVersionUID: 3786198910865385080L

Serialized Fields

value

 char value
The immutable value of this Character.

the value of this Character

Class java.lang.Class extends Object implements Serializable

serialVersionUID: 3206093459760846163L

Serialized Fields

signers

 Object[] signers
The class signers.


pd

 ProtectionDomain pd
The class protection domain.

Class java.lang.ClassCastException extends RuntimeException implements Serializable

serialVersionUID: -9223365651070458532L

Class java.lang.ClassCircularityError extends LinkageError implements Serializable

serialVersionUID: 1054362542914539689L

Class java.lang.ClassFormatError extends LinkageError implements Serializable

serialVersionUID: -8420114879011949195L

Class java.lang.ClassNotFoundException extends Exception implements Serializable

serialVersionUID: 9176873029745254542L

Serialized Fields

ex

 Throwable ex
The cause of this exception (duplicates the one stored in Throwable).

Since:
1.2

the exception cause

Class java.lang.CloneNotSupportedException extends Exception implements Serializable

serialVersionUID: 5195511250079656443L

Class java.lang.Double extends Number implements Serializable

serialVersionUID: -9172774392245257468L

Serialized Fields

value

 double value
The immutable value of this Double.

the wrapped double

Class java.lang.Error extends Throwable implements Serializable

serialVersionUID: 4980196508277280342L

Class java.lang.Exception extends Throwable implements Serializable

serialVersionUID: -3387516993124229948L

Class java.lang.ExceptionInInitializerError extends LinkageError implements Serializable

serialVersionUID: 1521711792217232256L

Serialized Fields

exception

 Throwable exception
The cause of this exception (duplicates the one stored in Throwable).

the exception cause

Class java.lang.Float extends Number implements Serializable

serialVersionUID: -2671257302660747028L

Serialized Fields

value

 float value
The immutable value of this Float.

the wrapped float

Class java.lang.IllegalAccessError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -8988904074992417891L

Class java.lang.IllegalAccessException extends Exception implements Serializable

serialVersionUID: 6616958222490762034L

Class java.lang.IllegalArgumentException extends RuntimeException implements Serializable

serialVersionUID: -5365630128856068164L

Class java.lang.IllegalMonitorStateException extends RuntimeException implements Serializable

serialVersionUID: 3713306369498869069L

Class java.lang.IllegalStateException extends RuntimeException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.lang.IllegalThreadStateException extends IllegalArgumentException implements Serializable

serialVersionUID: -7626246362397460174L

Class java.lang.IncompatibleClassChangeError extends LinkageError implements Serializable

serialVersionUID: -4914975503642802119L

Class java.lang.IndexOutOfBoundsException extends RuntimeException implements Serializable

serialVersionUID: 234122996006267687L

Class java.lang.InstantiationError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -4885810657349421204L

Class java.lang.InstantiationException extends Exception implements Serializable

serialVersionUID: -8441929162975509110L

Class java.lang.Integer extends Number implements Serializable

serialVersionUID: 1360826667806852920L

Serialized Fields

value

 int value
The immutable value of this Integer.

the wrapped int

Class java.lang.InternalError extends VirtualMachineError implements Serializable

serialVersionUID: -9062593416125562365L

Class java.lang.InterruptedException extends Exception implements Serializable

serialVersionUID: 6700697376100628473L

Class java.lang.LinkageError extends Error implements Serializable

serialVersionUID: 3579600108157160122L

Class java.lang.Long extends Number implements Serializable

serialVersionUID: 4290774380558885855L

Serialized Fields

value

 long value
The immutable value of this Long.

the wrapped long

Class java.lang.NegativeArraySizeException extends RuntimeException implements Serializable

serialVersionUID: -8960118058596991861L

Class java.lang.NoClassDefFoundError extends LinkageError implements Serializable

serialVersionUID: 9095859863287012458L

Class java.lang.NoSuchFieldError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -3456430195886129035L

Class java.lang.NoSuchFieldException extends Exception implements Serializable

serialVersionUID: -6143714805279938260L

Class java.lang.NoSuchMethodError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -3765521442372831335L

Class java.lang.NoSuchMethodException extends Exception implements Serializable

serialVersionUID: 5034388446362600923L

Class java.lang.NullPointerException extends RuntimeException implements Serializable

serialVersionUID: 5162710183389028792L

Class java.lang.Number extends Object implements Serializable

serialVersionUID: -8742448824652078965L

Class java.lang.NumberFormatException extends IllegalArgumentException implements Serializable

serialVersionUID: -2848938806368998894L

Class java.lang.OutOfMemoryError extends VirtualMachineError implements Serializable

serialVersionUID: 8228564086184010517L

Class java.lang.RuntimeException extends Exception implements Serializable

serialVersionUID: -7034897190745766939L

Class java.lang.RuntimePermission extends BasicPermission implements Serializable

serialVersionUID: 7399184964622342223L

Class java.lang.SecurityException extends RuntimeException implements Serializable

serialVersionUID: 6878364983674394167L

Class java.lang.Short extends Number implements Serializable

serialVersionUID: 7515723908773894738L

Serialized Fields

value

 short value
The immutable value of this Short.

the wrapped short

Class java.lang.StackOverflowError extends VirtualMachineError implements Serializable

serialVersionUID: 8609175038441759607L

Class java.lang.StackTraceElement extends Object implements Serializable

serialVersionUID: 6992337162326171013L

Serialized Fields

fileName

 String fileName
The name of the file, null if unknown.

the source code filename, if known


lineNumber

 int lineNumber
The line number in the file, negative if unknown.

the source code line number, if known


declaringClass

 String declaringClass
The fully qualified class name, null if unknown.

the enclosing class, if known


methodName

 String methodName
The method name in the class, null if unknown.

the enclosing method, if known

Class java.lang.String extends Object implements Serializable

serialVersionUID: -6849794470754667710L

Serialized Fields

value

 char[] value
Characters which make up the String. Package access is granted for use by StringBuffer.


count

 int count
Holds the number of characters in value. This number is generally the same as value.length, but can be smaller because substrings and StringBuffers can share arrays. Package visible for use by trusted code.


cachedHashCode

 int cachedHashCode
Caches the result of hashCode(). If this value is zero, the hashcode is considered uncached (even if 0 is the correct hash value).


offset

 int offset
Holds the starting position for characters in value[]. Since substring()'s are common, the use of offset allows the operation to perform in O(1). Package access is granted for use by StringBuffer.

Class java.lang.StringBuffer extends Object implements Serializable

serialVersionUID: 3388685877147921107L

Serialized Fields

count

 int count
Index of next available character (and thus the size of the current string contents). Note that this has permissions set this way so that String can get the value.

the number of characters in the buffer


value

 char[] value
The buffer. Note that this has permissions set this way so that String can get the value.

the buffer


shared

 boolean shared
True if the buffer is shared with another object (StringBuffer or String); this means the buffer must be copied before writing to it again. Note that this has permissions set this way so that String can get the value.

whether the buffer is shared

Class java.lang.StringBuilder extends Object implements Serializable

serialVersionUID: 4383685877147921099L

Serialized Fields

count

 int count
Index of next available character (and thus the size of the current string contents). Note that this has permissions set this way so that String can get the value.

the number of characters in the buffer


value

 char[] value
The buffer. Note that this has permissions set this way so that String can get the value.

the buffer

Class java.lang.StringIndexOutOfBoundsException extends IndexOutOfBoundsException implements Serializable

serialVersionUID: -6762910422159637258L

Class java.lang.ThreadDeath extends Error implements Serializable

serialVersionUID: -4417128565033088268L

Class java.lang.Throwable extends Object implements Serializable

serialVersionUID: -3042686055658047285L

Serialized Fields

detailMessage

 String detailMessage
The detail message.

specific details about the exception, may be null


cause

 Throwable cause
The cause of the throwable, including null for an unknown or non-chained cause. This may only be set once; so the field is set to this until initialized.

Since:
1.4

the cause, or null if unknown, or this if not yet set


stackTrace

 StackTraceElement[] stackTrace
The stack trace, in a serialized form.

Since:
1.4

the elements of the stack trace; this is non-null, and has no null entries

Class java.lang.TypeNotPresentException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Serialized Fields

typeName

 String typeName
The name of the missing type.

the missing type's name.

Class java.lang.UnknownError extends VirtualMachineError implements Serializable

serialVersionUID: 2524784860676771849L

Class java.lang.UnsatisfiedLinkError extends LinkageError implements Serializable

serialVersionUID: -4019343241616879428L

Class java.lang.UnsupportedClassVersionError extends ClassFormatError implements Serializable

serialVersionUID: -7123279212883497373L

Class java.lang.UnsupportedOperationException extends RuntimeException implements Serializable

serialVersionUID: -1242599979055084673L

Class java.lang.VerifyError extends LinkageError implements Serializable

serialVersionUID: 7001962396098498785L

Class java.lang.VirtualMachineError extends Error implements Serializable

serialVersionUID: 4161983926571568670L

Package java.lang.annotation

Class java.lang.annotation.AnnotationFormatError extends Error implements Serializable

serialVersionUID: 4980196508277280342L

Class java.lang.annotation.AnnotationTypeMismatchException extends RuntimeException implements Serializable

serialVersionUID: 8125925355765570191L

Serialized Fields

element

 Method element
The element from the annotation.

the element with the mismatched type.


foundType

 String foundType
The erroneous type used by the element.

the type found in the element.

Package java.lang.reflect

Class java.lang.reflect.GenericSignatureFormatError extends ClassFormatError implements Serializable

serialVersionUID: -8420114879011949195L

Class java.lang.reflect.InvocationTargetException extends Exception implements Serializable

serialVersionUID: 4085088731926701167L

Serialized Fields

target

 Throwable target
The chained exception. This field is only around for serial compatibility.

the chained exception

Class java.lang.reflect.Proxy extends Object implements Serializable

serialVersionUID: -2222568056686623797L

Serialized Fields

h

 InvocationHandler h
The invocation handler for this proxy instance. For Proxy, this field is unused, but it appears here in order to be serialized in all proxy classes. NOTE: This implementation is more secure for proxy classes than what Sun specifies. Sun does not require h to be immutable, but this means you could change h after the fact by reflection. However, by making h immutable, we may break non-proxy classes which extend Proxy.

invocation handler associated with this proxy instance

Class java.lang.reflect.ReflectPermission extends BasicPermission implements Serializable

serialVersionUID: 7412737110241507485L

Class java.lang.reflect.UndeclaredThrowableException extends RuntimeException implements Serializable

serialVersionUID: 330127114055056639L

Serialized Fields

undeclaredThrowable

 Throwable undeclaredThrowable
The immutable exception that this wraps. This field is redundant with Throwable, but is necessary for serial compatibility.

the chained exception

Package java.math

Class java.math.BigDecimal extends Number implements Serializable

serialVersionUID: 6108874887143696463L

Serialized Fields

intVal

 BigInteger intVal


scale

 int scale

Class java.math.BigInteger extends Number implements Serializable

serialVersionUID: -8287574255936472291L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException,
                   ClassNotFoundException

Serialized Fields

bitCount

 int bitCount


bitLength

 int bitLength


firstNonzeroByteNum

 int firstNonzeroByteNum


lowestSetBit

 int lowestSetBit


magnitude

 byte[] magnitude


signum

 int signum

Package java.net

Class java.net.BindException extends SocketException implements Serializable

serialVersionUID: -5945005768251722951L

Class java.net.ConnectException extends SocketException implements Serializable

serialVersionUID: 3831404271622369215L

Class java.net.Inet4Address extends InetAddress implements Serializable

serialVersionUID: 3286316764910316507L

Class java.net.Inet6Address extends InetAddress implements Serializable

serialVersionUID: 6880410070516793377L

Serialized Fields

ipaddress

 byte[] ipaddress
Needed for serialization

Class java.net.InetAddress extends Object implements Serializable

serialVersionUID: 3286316764910316507L

Serialization Methods

readResolve

private void readResolve()
            throws ObjectStreamException


readObject

private void readObject(ObjectInputStream ois)
            throws IOException,
                   ClassNotFoundException


writeObject

private void writeObject(ObjectOutputStream oos)
            throws IOException

Serialized Fields

address

 int address
The Serialized Form specifies that an int 'address' is saved/restored. This class uses a byte array internally so we'll just do the conversion at serialization time and leave the rest of the algorithm as is.


hostName

 String hostName
The name of the host for this address.


family

 int family
The field 'family' seems to be the AF_ value. FIXME: Much of the code in the other java.net classes does not make use of this family field. A better implementation would be to make use of getaddrinfo() and have other methods just check the family field rather than examining the length of the address each time.

Class java.net.InetSocketAddress extends SocketAddress implements Serializable

serialVersionUID: 5076001401234631237L

Serialized Fields

hostname

 String hostname
Name of host.


addr

 InetAddress addr
Address of host.


port

 int port
Port of host.

Class java.net.MalformedURLException extends IOException implements Serializable

serialVersionUID: -182787522200415866L

Class java.net.NetPermission extends BasicPermission implements Serializable

serialVersionUID: -8343910153355041693L

Class java.net.NoRouteToHostException extends SocketException implements Serializable

serialVersionUID: -1897550894873493790L

Class java.net.PortUnreachableException extends SocketException implements Serializable

serialVersionUID: 8462541992376507323L

Class java.net.ProtocolException extends IOException implements Serializable

serialVersionUID: -6098449442062388080L

Class java.net.SocketAddress extends Object implements Serializable

serialVersionUID: 5215720748342549866L

Class java.net.SocketException extends IOException implements Serializable

serialVersionUID: -5935874303556886934L

Class java.net.SocketPermission extends Permission implements Serializable

serialVersionUID: -7204263841984476862L

Serialized Fields

actions

 String actions
A comma separated list of actions for which we have permission

Class java.net.SocketTimeoutException extends InterruptedIOException implements Serializable

serialVersionUID: -8846654841826352300L

Class java.net.UnknownHostException extends IOException implements Serializable

serialVersionUID: -4639126076052875403L

Class java.net.UnknownServiceException extends IOException implements Serializable

serialVersionUID: -4169033248853639508L

Class java.net.URI extends Object implements Serializable

serialVersionUID: -6052424284110960213L

Serialization Methods

readObject

private void readObject(ObjectInputStream is)
            throws ClassNotFoundException,
                   IOException


writeObject

private void writeObject(ObjectOutputStream os)
            throws IOException

Serialized Fields

string

 String string

Class java.net.URISyntaxException extends Exception implements Serializable

serialVersionUID: 2137979680897488891L

Serialized Fields

input

 String input
The failed input.

the bad URI


index

 int index
The index of failure.

the location of the problem

Class java.net.URL extends Object implements Serializable

serialVersionUID: -7627629688361524110L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
            throws IOException,
                   ClassNotFoundException


writeObject

private void writeObject(ObjectOutputStream oos)
            throws IOException

Serialized Fields

protocol

 String protocol
The name of the protocol for this URL. The protocol is always stored in lower case.


authority

 String authority
The "authority" portion of the URL.


host

 String host
The hostname or IP address of this protocol. This includes a possible user. For example joe@some.host.net.


userInfo

 String userInfo
The user information necessary to establish the connection.


port

 int port
The port number of this protocol or -1 if the port number used is the default for this protocol.


file

 String file
The "file" portion of the URL. It is defined as path[?query].


ref

 String ref
The anchor portion of the URL.


hashCode

 int hashCode
This is the hashCode for this URL

Package java.nio

Class java.nio.BufferOverflowException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Class java.nio.BufferUnderflowException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Class java.nio.InvalidMarkException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.ReadOnlyBufferException extends UnsupportedOperationException implements Serializable

serialVersionUID: -1242599979055084673L

Package java.nio.channels

Class java.nio.channels.AlreadyConnectedException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.AsynchronousCloseException extends ClosedChannelException implements Serializable

serialVersionUID: 7818375828146090155L

Class java.nio.channels.CancelledKeyException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.ClosedByInterruptException extends AsynchronousCloseException implements Serializable

serialVersionUID: 7818375828146090155L

Class java.nio.channels.ClosedChannelException extends IOException implements Serializable

serialVersionUID: 7818375828146090155L

Class java.nio.channels.ClosedSelectorException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.ConnectionPendingException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.FileLockInterruptionException extends IOException implements Serializable

serialVersionUID: 7818375828146090155L

Class java.nio.channels.IllegalBlockingModeException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.IllegalSelectorException extends IllegalArgumentException implements Serializable

serialVersionUID: -5365630128856068164L

Class java.nio.channels.NoConnectionPendingException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.NonReadableChannelException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.NonWritableChannelException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.NotYetBoundException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.NotYetConnectedException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.OverlappingFileLockException extends IllegalStateException implements Serializable

serialVersionUID: -1848914673093119416L

Class java.nio.channels.UnresolvedAddressException extends IllegalArgumentException implements Serializable

serialVersionUID: -5365630128856068164L

Class java.nio.channels.UnsupportedAddressTypeException extends IllegalArgumentException implements Serializable

serialVersionUID: -5365630128856068164L

Package java.nio.charset

Class java.nio.charset.CharacterCodingException extends IOException implements Serializable

serialVersionUID: 7818375828146090155L

Class java.nio.charset.CoderMalfunctionError extends Error implements Serializable

serialVersionUID: 4980196508277280342L

Class java.nio.charset.IllegalCharsetNameException extends IllegalArgumentException implements Serializable

serialVersionUID: 1457525358470002989L

Serialized Fields

charsetName

 String charsetName

Class java.nio.charset.MalformedInputException extends CharacterCodingException implements Serializable

serialVersionUID: 7818375828146090155L

Serialized Fields

inputLength

 int inputLength

Class java.nio.charset.UnmappableCharacterException extends CharacterCodingException implements Serializable

serialVersionUID: 7818375828146090155L

Serialized Fields

inputLength

 int inputLength

Class java.nio.charset.UnsupportedCharsetException extends IllegalArgumentException implements Serializable

serialVersionUID: 1490765524727386367L

Serialized Fields

charsetName

 String charsetName

Package java.rmi

Class java.rmi.AccessException extends RemoteException implements Serializable

serialVersionUID: 6314925228044966088L

Class java.rmi.AlreadyBoundException extends Exception implements Serializable

serialVersionUID: 9218657361741657110L

Class java.rmi.ConnectException extends RemoteException implements Serializable

serialVersionUID: 4863550261346652506L

Class java.rmi.ConnectIOException extends RemoteException implements Serializable

serialVersionUID: -8087809532704668744L

Class java.rmi.MarshalException extends RemoteException implements Serializable

serialVersionUID: 6223554758134037936L

Class java.rmi.MarshalledObject extends Object implements Serializable

serialVersionUID: 8988374069173025854L

Serialized Fields

objBytes

 byte[] objBytes


locBytes

 byte[] locBytes


hash

 int hash

Class java.rmi.NoSuchObjectException extends RemoteException implements Serializable

serialVersionUID: 6619395951570472985L

Class java.rmi.NotBoundException extends Exception implements Serializable

serialVersionUID: -1857741824849069317L

Class java.rmi.RemoteException extends IOException implements Serializable

serialVersionUID: -5148567311918794206L

Serialized Fields

detail

 Throwable detail
The cause of this exception. This pre-dates the exception chaining of Throwable; and although you can change this field, you are wiser to leave it alone.

the exception cause

Class java.rmi.RMISecurityException extends SecurityException implements Serializable

serialVersionUID: -8433406075740433514L

Class java.rmi.ServerError extends RemoteException implements Serializable

serialVersionUID: 8455284893909696482L

Class java.rmi.ServerException extends RemoteException implements Serializable

serialVersionUID: -4775845313121906682L

Class java.rmi.ServerRuntimeException extends RemoteException implements Serializable

serialVersionUID: 7054464920481467219L

Class java.rmi.StubNotFoundException extends RemoteException implements Serializable

serialVersionUID: -7088199405468872373L

Class java.rmi.UnexpectedException extends RemoteException implements Serializable

serialVersionUID: 1800467484195073863L

Class java.rmi.UnknownHostException extends RemoteException implements Serializable

serialVersionUID: -8152710247442114228L

Class java.rmi.UnmarshalException extends RemoteException implements Serializable

serialVersionUID: 594380845140740218L

Package java.rmi.activation

Class java.rmi.activation.Activatable extends RemoteServer implements Serializable

serialVersionUID: -3120617863591563455L

Class java.rmi.activation.ActivateFailedException extends RemoteException implements Serializable

serialVersionUID: 4863550261346652506L

Class java.rmi.activation.ActivationDesc extends Object implements Serializable

serialVersionUID: 7455834104417690957L

Serialized Fields

groupid

 ActivationGroupID groupid


classname

 String classname


location

 String location


data

 MarshalledObject data


restart

 boolean restart

Class java.rmi.activation.ActivationException extends Exception implements Serializable

serialVersionUID: -4320118837291406071L

Serialized Fields

detail

 Throwable detail
The cause of this exception. This pre-dates the exception chaining of Throwable; and although you can change this field, you are wiser to leave it alone.

the exception cause

Class java.rmi.activation.ActivationGroup extends UnicastRemoteObject implements Serializable

serialVersionUID: -7696947875314805420L

Class java.rmi.activation.ActivationGroupDesc extends Object implements Serializable

serialVersionUID: -4936225423168276595L

Class java.rmi.activation.ActivationGroupDesc.CommandEnvironment extends Object implements Serializable

serialVersionUID: 6165754737887770191L

Serialized Fields

cmdpath

 String cmdpath


argv

 String[] argv

Class java.rmi.activation.ActivationGroupID extends Object implements Serializable

serialVersionUID: -1648432278909740833L

Serialized Fields

system

 ActivationSystem system

Class java.rmi.activation.ActivationID extends Object implements Serializable

serialVersionUID: -4608673054848209235L

Serialized Fields

activator

 Activator activator

Class java.rmi.activation.UnknownGroupException extends ActivationException implements Serializable

serialVersionUID: 7056094974750002460L

Class java.rmi.activation.UnknownObjectException extends ActivationException implements Serializable

serialVersionUID: 3425547551622251430L

Package java.rmi.dgc

Class java.rmi.dgc.Lease extends Object implements Serializable

serialVersionUID: -5713411624328831948L

Serialized Fields

vmid

 VMID vmid


value

 long value

Class java.rmi.dgc.VMID extends Object implements Serializable

serialVersionUID: -538642295484486218L

Serialized Fields

addr

 byte[] addr


uid

 UID uid

Package java.rmi.server

Class java.rmi.server.ExportException extends RemoteException implements Serializable

serialVersionUID: -9155485338494060170L

Class java.rmi.server.ObjID extends Object implements Serializable

serialVersionUID: -6386392263968365220L

Serialized Fields

objNum

 long objNum


space

 UID space

Class java.rmi.server.RemoteObject extends Object implements Serializable

serialVersionUID: -3215090123894869218L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
            throws IOException,
                   ClassNotFoundException


writeObject

private void writeObject(ObjectOutputStream out)
            throws IOException,
                   ClassNotFoundException

Class java.rmi.server.RemoteRef extends Object implements Serializable

serialVersionUID: 3632638527362204081L

Class java.rmi.server.RemoteServer extends RemoteObject implements Serializable

serialVersionUID: -4100238210092549637L

Class java.rmi.server.RemoteStub extends RemoteObject implements Serializable

serialVersionUID: -1585587260594494182L

Class java.rmi.server.ServerCloneException extends CloneNotSupportedException implements Serializable

serialVersionUID: 6617456357664815945L

Serialized Fields

detail

 Exception detail
The cause of this exception. This pre-dates the exception chaining of Throwable; and although you can change this field, you are wiser to leave it alone.

the exception cause

Class java.rmi.server.ServerNotActiveException extends Exception implements Serializable

serialVersionUID: 4687940720827538231L

Class java.rmi.server.SkeletonMismatchException extends RemoteException implements Serializable

serialVersionUID: -7780460454818859281L

Class java.rmi.server.SkeletonNotFoundException extends RemoteException implements Serializable

serialVersionUID: -7860299673822761231L

Class java.rmi.server.SocketSecurityException extends ExportException implements Serializable

serialVersionUID: -7622072999407781979L

Class java.rmi.server.UID extends Object implements Serializable

serialVersionUID: 1086053664494604050L

Serialized Fields

unique

 int unique


time

 long time


count

 short count

Class java.rmi.server.UnicastRemoteObject extends RemoteServer implements Serializable

serialVersionUID: 4974527148936298033L

Serialized Fields

port

 int port


csf

 RMIClientSocketFactory csf


ssf

 RMIServerSocketFactory ssf

Package java.security

Class java.security.AccessControlException extends SecurityException implements Serializable

serialVersionUID: 5138225684096988535L

Serialized Fields

perm

 Permission perm
The Permission associated with this exception.

the permission

Class java.security.AllPermission extends Permission implements Serializable

serialVersionUID: -2916474571451318075L

Class java.security.BasicPermission extends Permission implements Serializable

serialVersionUID: 6279438298436773498L

Class java.security.CodeSource extends Object implements Serializable

serialVersionUID: 4977541819976013951L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads this object from a serialization stream.

Parameters:
s - the input stream

Throws:
IOException - if reading fails
ClassNotFoundException - if deserialization fails


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Writes this object to a serialization stream.

Parameters:
s - the output stream

Throws:
IOException - if writing fails

Serialized Fields

location

 URL location
This is the URL that represents the code base from which code will be loaded.

the code location

Class java.security.DigestException extends GeneralSecurityException implements Serializable

serialVersionUID: 5821450303093652515L

Class java.security.GeneralSecurityException extends Exception implements Serializable

serialVersionUID: 894798122053539237L

Class java.security.GuardedObject extends Object implements Serializable

serialVersionUID: -5240450096227834308L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Ensures that serialization is legal, by checking the guard.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails

Serialized Fields

guard

 Guard guard
This is the Guard that is protecting the object.

the guard


object

 Object object
This is the object that is being guarded.

the protected object

Class java.security.Identity extends Object implements Serializable

serialVersionUID: 3609922007826600659L

Serialized Fields

name

 String name


scope

 IdentityScope scope


publicKey

 PublicKey publicKey


info

 String info


certificates

 Vector certificates

Class java.security.IdentityScope extends Identity implements Serializable

serialVersionUID: -2337346281189773310L

Class java.security.InvalidAlgorithmParameterException extends GeneralSecurityException implements Serializable

serialVersionUID: 2864672297499471472L

Class java.security.InvalidKeyException extends KeyException implements Serializable

serialVersionUID: 5698479920593359816L

Class java.security.InvalidParameterException extends IllegalArgumentException implements Serializable

serialVersionUID: -857968536935667808L

Class java.security.Key extends Object implements Serializable

serialVersionUID: 6603384152749567654L

Class java.security.KeyException extends GeneralSecurityException implements Serializable

serialVersionUID: -7483676942812432108L

Class java.security.KeyManagementException extends KeyException implements Serializable

serialVersionUID: 947674216157062695L

Class java.security.KeyPair extends Object implements Serializable

serialVersionUID: -7565189502268009837L

Serialized Fields

publicKey

 PublicKey publicKey


privateKey

 PrivateKey privateKey

Class java.security.KeyStoreException extends GeneralSecurityException implements Serializable

serialVersionUID: -1119353179322377262L

Class java.security.NoSuchAlgorithmException extends GeneralSecurityException implements Serializable

serialVersionUID: -7443947487218346562L

Class java.security.NoSuchProviderException extends GeneralSecurityException implements Serializable

serialVersionUID: 8488111756688534474L

Class java.security.Permission extends Object implements Serializable

serialVersionUID: -5636570222231596674L

Serialized Fields

name

 String name
This is the name assigned to this permission object.

the name of the permission

Class java.security.PermissionCollection extends Object implements Serializable

serialVersionUID: -6727011328946861783L

Serialized Fields

readOnly

 boolean readOnly
Indicates whether or not this collection is read only.

if the collection is read-only

Class java.security.Permissions extends PermissionCollection implements Serializable

serialVersionUID: 4858622370623524688L

Serialized Fields

allPermission

 PermissionCollection allPermission
Holds instances of AllPermission.

the permission collection for AllPermission


perms

 Hashtable perms
This is the Hashtable that contains our collections.

maps Class to PermissionCollection

Class java.security.PrivilegedActionException extends Exception implements Serializable

serialVersionUID: 4724086851538908602L

Serialized Fields

exception

 Exception exception
This is the actual exception that occurred.

the wrapped exception

Class java.security.Provider extends Properties implements Serializable

serialVersionUID: -4298000515446427739L

Serialized Fields

info

 String info
This is a textual description of the provider


name

 String name
This is the name of the provider


version

 double version
This is the version number of the provider

Class java.security.ProviderException extends RuntimeException implements Serializable

serialVersionUID: 5256023526693665674L

Class java.security.SecureRandom extends Random implements Serializable

serialVersionUID: 4940670005562187L

Serialized Fields

counter

 long counter


provider

 Provider provider


randomBytes

 byte[] randomBytes


randomBytesUsed

 int randomBytesUsed


secureRandomSpi

 SecureRandomSpi secureRandomSpi


state

 byte[] state

Class java.security.SecureRandomSpi extends Object implements Serializable

serialVersionUID: -2991854161009191830L

Class java.security.SecurityPermission extends BasicPermission implements Serializable

serialVersionUID: 5236109936224050470L

Class java.security.SignatureException extends GeneralSecurityException implements Serializable

serialVersionUID: 7509989324975124438L

Class java.security.SignedObject extends Object implements Serializable

serialVersionUID: 720502720485447167L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Called to restore the state of the SignedObject from a stream.

Serialized Fields

content

 byte[] content


signature

 byte[] signature


thealgorithm

 String thealgorithm

Class java.security.Signer extends Identity implements Serializable

serialVersionUID: -1763464102261361480L

Serialized Fields

privateKey

 PrivateKey privateKey

Class java.security.UnrecoverableKeyException extends GeneralSecurityException implements Serializable

serialVersionUID: 7275063078190151277L

Class java.security.UnresolvedPermission extends Permission implements Serializable

serialVersionUID: -4821973115467008846L

Serialized Fields

actions

 String actions
The list of actions associated with this permission object.

the permission actions


type

 String type
The name of the class this object should be resolved to.

the fully-qualified classname of the resolved type


name

 String name
The name of the permission.

the permission name

Package java.security.acl

Class java.security.acl.AclNotFoundException extends Exception implements Serializable

serialVersionUID: 5684295034092681791L

Class java.security.acl.LastOwnerException extends Exception implements Serializable

serialVersionUID: -5141997548211140359L

Class java.security.acl.NotOwnerException extends Exception implements Serializable

serialVersionUID: -5555597911163362399L

Package java.security.cert

Class java.security.cert.Certificate extends Object implements Serializable

serialVersionUID: -6751606818319535583L

Serialized Fields

type

 String type

Class java.security.cert.Certificate.CertificateRep extends Object implements Serializable

serialVersionUID: -8563758940495660020L

Serialization Methods

readResolve

protected Object readResolve()
            throws ObjectStreamException
Deserialize this certificate replacement into the appropriate certificate object. That is, this method attempts to create a CertificateFactory for this certificate's type, then attempts to parse the encoded data with that factory, returning the resulting certificate.

Returns:
The deserialized certificate.

Throws:
ObjectStreamException - If there is no appropriate certificate factory for the given type, or if the encoded form cannot be parsed.

Serialized Fields

type

 String type
The certificate type, e.g. "X.509".


data

 byte[] data
The encoded certificate data.

Class java.security.cert.CertificateEncodingException extends CertificateException implements Serializable

serialVersionUID: 6219492851589449162L

Class java.security.cert.CertificateException extends GeneralSecurityException implements Serializable

serialVersionUID: 3192535253797119798L

Class java.security.cert.CertificateExpiredException extends CertificateException implements Serializable

serialVersionUID: 9071001339691533771L

Class java.security.cert.CertificateNotYetValidException extends CertificateException implements Serializable

serialVersionUID: 4355919900041064702L

Class java.security.cert.CertificateParsingException extends CertificateException implements Serializable

serialVersionUID: -7989222416793322029L

Class java.security.cert.CertPath extends Object implements Serializable

serialVersionUID: 6068470306649138683L

Serialized Fields

type

 String type
The path type.

the type of all certificates in this path

Class java.security.cert.CertPath.CertPathRep extends Object implements Serializable

serialVersionUID: 3015633072427920915L

Serialization Methods

readResolve

protected Object readResolve()
            throws ObjectStreamException
Decode the data into an actual CertPath upon deserialization.

Returns:
the replacement object

Throws:
ObjectStreamException - if replacement fails

Serialized Fields

type

 String type
The certificate type.

the type of the certificate path


data

 byte[] data
The encoded form of the path.

the encoded form

Class java.security.cert.CertPathBuilderException extends GeneralSecurityException implements Serializable

serialVersionUID: 5316471420178794402L

Class java.security.cert.CertPathValidatorException extends GeneralSecurityException implements Serializable

serialVersionUID: -3083180014971893139L

Serialized Fields

index

 int index
The index of the certificate path that failed, or -1.

the failed index


certPath

 CertPath certPath
The CertPath that failed.

the object being validated at time of failure

Class java.security.cert.CertStoreException extends GeneralSecurityException implements Serializable

serialVersionUID: 2395296107471573245L

Class java.security.cert.CRLException extends GeneralSecurityException implements Serializable

serialVersionUID: -6694728944094197147L

Class java.security.cert.X509Certificate extends Certificate implements Serializable

serialVersionUID: -2491127588187038216L

Package java.security.spec

Class java.security.spec.InvalidKeySpecException extends GeneralSecurityException implements Serializable

serialVersionUID: 3546139293998810778L

Class java.security.spec.InvalidParameterSpecException extends GeneralSecurityException implements Serializable

serialVersionUID: -970468769593399342L

Package java.sql

Class java.sql.BatchUpdateException extends SQLException implements Serializable

serialVersionUID: 5977529877145521757L

Serialized Fields

updateCounts

 int[] updateCounts
This is the array of update counts for the commands which completed successfully prior to the error.

Class java.sql.DataTruncation extends SQLWarning implements Serializable

serialVersionUID: 6464298989504059473L

Serialized Fields

dataSize

 int dataSize
The original size of the data.


index

 int index
The index of the parameter or column whose value was truncated.


parameter

 boolean parameter
Indicates whether or not a parameter value was truncated.


read

 boolean read
Indicates whether or not a data column value was truncated.


transferSize

 int transferSize
This is the size of the data after truncation.

Class java.sql.Date extends Date implements Serializable

serialVersionUID: 1511598038487230103L

Class java.sql.SQLException extends Exception implements Serializable

serialVersionUID: 2135244094396331484L

Serialized Fields

next

 SQLException next
This is the next exception in the chain


SQLState

 String SQLState
This is the state of the SQL statement at the time of the error.


vendorCode

 int vendorCode
The vendor error code for this error

Class java.sql.SQLPermission extends BasicPermission implements Serializable

serialVersionUID: 6279438298436773498L

Class java.sql.SQLWarning extends SQLException implements Serializable

serialVersionUID: 3917336774604784856L

Class java.sql.Time extends Date implements Serializable

serialVersionUID: 8397324403548013681L

Class java.sql.Timestamp extends Date implements Serializable

serialVersionUID: 2745179027874758501L

Serialized Fields

nanos

 int nanos
The nanosecond value for this object

Package java.text

Class java.text.AttributedCharacterIterator.Attribute extends Object implements Serializable

serialVersionUID: -9142742483513960612L

Serialization Methods

readResolve

protected Object readResolve()
            throws InvalidObjectException
This method resolves an instance of AttributedCharacterIterator.Attribute that is being deserialized to one of the three pre-defined attribute constants. It does this by comparing the names of the attributes. The constant that the deserialized object resolves to is returned.

Returns:
The resolved contant value

Throws:
InvalidObjectException - If the object being deserialized cannot be resolved.

Serialized Fields

name

 String name
This is the name of the attribute key

Class java.text.ChoiceFormat extends NumberFormat implements Serializable

serialVersionUID: 1795184449645032964L

Serialized Fields

choiceFormats

 String[] choiceFormats
This is the list of format strings. Note that this variable is specified by the serialization spec of this class.


choiceLimits

 double[] choiceLimits
This is the list of range terminator values. Note that this variable is specified by the serialization spec of this class.

Class java.text.DateFormat extends Format implements Serializable

serialVersionUID: -299282585814624189L

Serialized Fields

calendar

 Calendar calendar


numberFormat

 NumberFormat numberFormat

Class java.text.DateFormat.Field extends Format.Field implements Serializable

serialVersionUID: 7441350119349544720L

Serialization Methods

readResolve

protected Object readResolve()
            throws InvalidObjectException
Overrides:
readResolve in interface AttributedCharacterIterator.Attribute

Serialized Fields

calendarField

 int calendarField

Class java.text.DateFormatSymbols extends Object implements Serializable

serialVersionUID: -5987973545549424702L

Serialized Fields

ampms

 String[] ampms


eras

 String[] eras


localPatternChars

 String localPatternChars


months

 String[] months


shortMonths

 String[] shortMonths


shortWeekdays

 String[] shortWeekdays


weekdays

 String[] weekdays


zoneStrings

 String[][] zoneStrings

Class java.text.DecimalFormat extends NumberFormat implements Serializable

serialVersionUID: 864413376551465018L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException

Serialized Fields

decimalSeparatorAlwaysShown

 boolean decimalSeparatorAlwaysShown


groupingSize

 byte groupingSize


minExponentDigits

 byte minExponentDigits


exponentRound

 int exponentRound


multiplier

 int multiplier


negativePrefix

 String negativePrefix


negativeSuffix

 String negativeSuffix


positivePrefix

 String positivePrefix


positiveSuffix

 String positiveSuffix


negativePrefixRanges

 int[] negativePrefixRanges


positivePrefixRanges

 int[] positivePrefixRanges


negativePrefixAttrs

 HashMap[] negativePrefixAttrs


positivePrefixAttrs

 HashMap[] positivePrefixAttrs


negativeSuffixRanges

 int[] negativeSuffixRanges


positiveSuffixRanges

 int[] positiveSuffixRanges


negativeSuffixAttrs

 HashMap[] negativeSuffixAttrs


positiveSuffixAttrs

 HashMap[] positiveSuffixAttrs


serialVersionOnStream

 int serialVersionOnStream


symbols

 DecimalFormatSymbols symbols


useExponentialNotation

 boolean useExponentialNotation

Class java.text.DecimalFormatSymbols extends Object implements Serializable

serialVersionUID: 5772796243397350300L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException

Serialized Fields

currencySymbol

 String currencySymbol

A string used for the local currency


decimalSeparator

 char decimalSeparator

The char used to separate decimals in a number.


digit

 char digit

This is the char used to represent a digit in a format specification.


exponential

 char exponential

This is the char used to represent the exponent separator in exponential notation.


groupingSeparator

 char groupingSeparator

This separates groups of thousands in numbers.


infinity

 String infinity

This string represents infinity.


intlCurrencySymbol

 String intlCurrencySymbol

This string represents the local currency in an international context, eg, "C$" for Canadian dollars.


minusSign

 char minusSign

This is the character used to represent the minus sign.


monetarySeparator

 char monetarySeparator

This character is used to separate decimals when formatting currency values.


NaN

 String NaN

This string is used the represent the Java NaN value for "not a number".


patternSeparator

 char patternSeparator

This is the character used to separate positive and negative subpatterns in a format pattern.


percent

 char percent

This is the percent symbols


perMill

 char perMill

This character is used for the mille percent sign.


serialVersionOnStream

 int serialVersionOnStream

This value represents the type of object being de-serialized. 0 indicates a pre-Java 1.1.6 version, 1 indicates 1.1.6 or later. 0 indicates a pre-Java 1.1.6 version, 1 indicates 1.1.6 or later, 2 indicates 1.4 or later


zeroDigit

 char zeroDigit

This is the character used to represent 0.


locale

 Locale locale

The locale of these currency symbols.

Class java.text.Format extends Object implements Serializable

serialVersionUID: -299282585814624189L

Class java.text.Format.Field extends AttributedCharacterIterator.Attribute implements Serializable

serialVersionUID: 276966692217360283L

Class java.text.MessageFormat extends Format implements Serializable

serialVersionUID: 6479157306784022952L

Serialized Fields

pattern

 String pattern


locale

 Locale locale


elements

 java.text.MessageFormat.MessageFormatElement[] elements


leader

 String leader

Class java.text.MessageFormat.Field extends Format.Field implements Serializable

serialVersionUID: 7899943957617360810L

Serialization Methods

readResolve

protected Object readResolve()
            throws InvalidObjectException
invoked to resolve the true static constant by comparing the deserialized object to know name.
Overrides:
readResolve in interface AttributedCharacterIterator.Attribute

Returns:
object constant

Class java.text.NumberFormat extends Format implements Serializable

serialVersionUID: -2308460125733713944L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException


writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException

Serialized Fields

groupingUsed

 boolean groupingUsed


maximumFractionDigits

 int maximumFractionDigits


maxFractionDigits

 byte maxFractionDigits


maximumIntegerDigits

 int maximumIntegerDigits


maxIntegerDigits

 byte maxIntegerDigits


minimumFractionDigits

 int minimumFractionDigits


minFractionDigits

 byte minFractionDigits


minimumIntegerDigits

 int minimumIntegerDigits


minIntegerDigits

 byte minIntegerDigits


parseIntegerOnly

 boolean parseIntegerOnly


serialVersionOnStream

 int serialVersionOnStream

Class java.text.NumberFormat.Field extends Format.Field implements Serializable

serialVersionUID: 7494728892700160890L

Serialization Methods

readResolve

protected Object readResolve()
            throws InvalidObjectException
This function is used by the deserializer to know which object to use when it encounters an encoded NumberFormat.Field in a serialization stream. If the stream is valid it should return one of the above field. In the other case we throw an exception.
Overrides:
readResolve in interface AttributedCharacterIterator.Attribute

Returns:
a valid official NumberFormat.Field instance.

Throws:
InvalidObjectException - if the field name is invalid.

Class java.text.ParseException extends Exception implements Serializable

serialVersionUID: 2703218443322787634L

Serialized Fields

errorOffset

 int errorOffset
This is the position where the error was encountered.

the zero-based offset in the string where the error occurred

Class java.text.SimpleDateFormat extends DateFormat implements Serializable

serialVersionUID: 4774881970558875024L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException
Reads the serialized version of this object. If the serialized data is only version 0, then the date for the start of the century for interpreting two digit years is computed. The pattern is parsed and compiled following the process of reading in the serialized data.

Parameters:
stream - the object stream to read the data from.

Throws:
IOException - if an I/O error occurs.
ClassNotFoundException - if the class of the serialized data could not be found.

Serialized Fields

formatData

 DateFormatSymbols formatData
The localised data used in formatting, such as the day and month names in the local language, and the localized pattern characters.

The localisation data. May not be null.

See Also:
DateFormatSymbols


defaultCenturyStart

 Date defaultCenturyStart
The date representing the start of the century used for interpreting two digit years. For example, 24/10/2004 would cause two digit years to be interpreted as representing the years between 2004 and 2104.

The start date of the century for parsing two digit years. May not be null.

See Also:
get2DigitYearStart(), set2DigitYearStart(java.util.Date), Date


pattern

 String pattern
The non-localized pattern string. This only ever contains the pattern characters stored in standardChars. Localized patterns are translated to this form.

The non-localized pattern string. May not be null.

See Also:
applyPattern(String), applyLocalizedPattern(String), toPattern(), toLocalizedPattern()


serialVersionOnStream

 int serialVersionOnStream
The version of serialized data used by this class. Version 0 only includes the pattern and formatting data. Version 1 adds the start date for interpreting two digit years.

This specifies the version of the data being serialized. Version 0 (or no version) specifies just pattern and formatData. Version 1 adds the defaultCenturyStart. This implementation always writes out version 1 data.

Package java.util

Class java.util.ArrayList extends AbstractList implements Serializable

serialVersionUID: 8683452581122892189L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:

Throws:
IOException - if the underlying stream fails


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes this object from the given stream.

Parameters:

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails

Serialized Fields

size

 int size
The number of elements in this list.

the list size

Class java.util.BitSet extends Object implements Serializable

serialVersionUID: 7997698588986878753L

Serialized Fields

bits

 long[] bits
The actual bits.

the i'th bit is in bits[i/64] at position i%64 (where position 0 is the least significant).

Class java.util.Calendar extends Object implements Serializable

serialVersionUID: -1807547505821590642L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
Saves the state of the object to the stream. Ideally we would only write the time field, but we need to be compatible with earlier versions.
This doesn't write the JDK1.1 field nextStamp to the stream, as I don't know what it is good for, and because the documentation says, that it could be omitted.


readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException
Reads the object back from stream (deserialization).

Serialized Fields

fields

 int[] fields
The time fields. The array is indexed by the constants YEAR to DST_OFFSET.


isSet

 boolean[] isSet
The flags which tell if the fields above have a value.


time

 long time
The time in milliseconds since the epoch.


isTimeSet

 boolean isTimeSet
Tells if the above field has a valid value.


areFieldsSet

 boolean areFieldsSet
Tells if the fields have a valid value. This superseeds the isSet array.


zone

 TimeZone zone
The time zone of this calendar. Used by sub classes to do UTC / local time conversion. Sub classes can access this field with getTimeZone().


lenient

 boolean lenient
Specifies if the date/time interpretation should be lenient. If the flag is set, a date such as "February 30, 1996" will be treated as the 29th day after the February 1. If this flag is false, such dates will cause an exception.


firstDayOfWeek

 int firstDayOfWeek
Sets what the first day of week is. This is used for WEEK_OF_MONTH and WEEK_OF_YEAR fields.


minimalDaysInFirstWeek

 int minimalDaysInFirstWeek
Sets how many days are required in the first week of the year. If the first day of the year should be the first week you should set this value to 1. If the first week must be a full week, set it to 7.


explicitDSTOffset

 boolean explicitDSTOffset
Is set to true if DST_OFFSET is explicitly set. In that case it's value overrides the value computed from the current time and the timezone.


serialVersionOnStream

 int serialVersionOnStream
The version of the serialized data on the stream.
0 or not present
JDK 1.1.5 or later.
1
JDK 1.1.6 or later. This always writes a correct `time' value on the stream, as well as the other fields, to be compatible with earlier versions

Since:
JDK1.1.6

Class java.util.ConcurrentModificationException extends RuntimeException implements Serializable

serialVersionUID: -3666751008965953603L

Class java.util.Currency extends Object implements Serializable

serialVersionUID: -158308464356906721L

Serialization Methods

readResolve

private Object readResolve()
            throws ObjectStreamException
Resolves the deserialized object to the singleton instance for its particular currency. The currency code of the deserialized instance is used to return the correct instance.

Returns:
the singleton instance for the currency specified by the currency code of the deserialized object. This replaces the deserialized object as the returned object from deserialization.

Throws:
ObjectStreamException - if a problem occurs with deserializing the object.

Serialized Fields

currencyCode

 String currencyCode
The ISO 4217 currency code associated with this particular instance.

the ISO 4217 currency code

See Also:
Currency.getCurrencyCode()

Class java.util.Date extends Object implements Serializable

serialVersionUID: 7523967970034938905L

Serialization Methods

readObject

private void readObject(ObjectInputStream input)
            throws IOException,
                   ClassNotFoundException
Deserializes a Date object from an input stream, setting the time (in milliseconds since the epoch) to the long value read from the stream.

Parameters:
input - the input stream.

Throws:
IOException - if an I/O error occurs in the stream.
ClassNotFoundException - if the class of the serialized object could not be found.


writeObject

private void writeObject(ObjectOutputStream output)
            throws IOException
Serializes a Date object to an output stream, storing the time (in milliseconds since the epoch) as a long value in the stream.

Parameters:
output - the output stream.

Throws:
IOException - if an I/O error occurs in the stream.

Class java.util.EmptyStackException extends RuntimeException implements Serializable

serialVersionUID: 5084686378493302095L

Class java.util.EventObject extends Object implements Serializable

serialVersionUID: 5516075349620653480L

Class java.util.GregorianCalendar extends Calendar implements Serializable

serialVersionUID: -8125100834729963327L

Serialized Fields

gregorianCutover

 long gregorianCutover
The point at which the Gregorian calendar rules were used. This may be changed by using setGregorianChange; The default is midnight (UTC) on October 5, 1582 (Julian), or October 15, 1582 (Gregorian).

the changeover point from the Julian calendar system to the Gregorian.

Class java.util.HashMap extends AbstractMap implements Serializable

serialVersionUID: 362498820763181265L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes this object from the given stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails

Serialized Fields

threshold

 int threshold
The rounded product of the capacity and the load factor; when the number of elements exceeds the threshold, the HashMap calls rehash().

the threshold for rehashing


loadFactor

 float loadFactor
Load factor of this HashMap: used in computing the threshold. Package visible for use by HashSet.

the load factor

Class java.util.HashSet extends AbstractSet implements Serializable

serialVersionUID: -5024744406713321676L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes this object from the given stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails

Class java.util.Hashtable extends Dictionary implements Serializable

serialVersionUID: 1421746759512286392L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes this object from the given stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails

Serialized Fields

threshold

 int threshold
The rounded product of the capacity and the load factor; when the number of elements exceeds the threshold, the Hashtable calls rehash().


loadFactor

 float loadFactor
Load factor of this Hashtable: used in computing the threshold.

Class java.util.IdentityHashMap extends AbstractMap implements Serializable

serialVersionUID: 8188218128353913216L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads the object from a serial stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Writes the object to a serial stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails

Serialized Fields

size

 int size
The number of mappings in the table. Package visible for use by nested classes.

Class java.util.LinkedHashMap extends HashMap implements Serializable

serialVersionUID: 3801124242820219131L

Serialized Fields

accessOrder

 boolean accessOrder
The iteration order of this linked hash map: true for access-order, false for insertion-order.

true for access order traversal

Class java.util.LinkedHashSet extends HashSet implements Serializable

serialVersionUID: -2851667679971038690L

Class java.util.LinkedList extends AbstractSequentialList implements Serializable

serialVersionUID: 876323262645176354L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes this object from the given stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails

Class java.util.Locale extends Object implements Serializable

serialVersionUID: 9149081749638150636L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Write the locale to an object stream.

Parameters:

Throws:
IOException - if the write fails


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads a locale from the input stream.

Parameters:

Throws:
IOException - if reading fails
ClassNotFoundException - if reading fails

Serialized Fields

language

 String language
The language code, as returned by getLanguage().

the languange, possibly ""


country

 String country
The country code, as returned by getCountry().

the country, possibly ""


variant

 String variant
The variant code, as returned by getVariant().

the variant, possibly ""

Class java.util.MissingResourceException extends RuntimeException implements Serializable

serialVersionUID: -4876345176062000401L

Serialized Fields

className

 String className
The name of the resource bundle requested by user.

the class name of the resource bundle


key

 String key
The key of the resource in the bundle requested by user.

the name of the resouce

Class java.util.NoSuchElementException extends RuntimeException implements Serializable

serialVersionUID: 6769829250639411880L

Class java.util.Properties extends Hashtable implements Serializable

serialVersionUID: 4112578634029874840L

Serialized Fields

defaults

 Properties defaults
The property list that contains default values for any keys not in this property list.

the default properties

Class java.util.PropertyPermission extends BasicPermission implements Serializable

serialVersionUID: 885438825399942851L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Reads an object from the stream. This converts the external to the internal representation.

Parameters:
s - the stream to read from

Throws:
IOException - if the stream fails
ClassNotFoundException - if reserialization fails


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Writes an object to the stream. This converts the internal to the external representation.

Parameters:
s - the stram to write to

Throws:
IOException - if the stream fails

Class java.util.Random extends Object implements Serializable

serialVersionUID: 3905348978240129619L

Serialized Fields

haveNextNextGaussian

 boolean haveNextNextGaussian
True if the next nextGaussian is available. This is used by nextGaussian, which generates two gaussian numbers by one call, and returns the second on the second call.

whether nextNextGaussian is available

See Also:
Random.nextGaussian(), Random


nextNextGaussian

 double nextNextGaussian
The next nextGaussian, when available. This is used by nextGaussian, which generates two gaussian numbers by one call, and returns the second on the second call.

the second gaussian of a pair

See Also:
Random.nextGaussian(), Random


seed

 long seed
The seed. This is the number set by setSeed and which is used in next.

the internal state of this generator

See Also:
next()

Class java.util.SimpleTimeZone extends TimeZone implements Serializable

serialVersionUID: -403250971215465050L

Serialization Methods

readObject

private void readObject(ObjectInputStream input)
            throws IOException,
                   ClassNotFoundException
Reads a serialized simple time zone from stream.

See Also:
SimpleTimeZone


writeObject

private void writeObject(ObjectOutputStream output)
            throws IOException
Serializes this object to a stream. @serialdata The object is first written in the old JDK 1.1 format, so that it can be read by by the old classes. This means, that the start/endDay(OfWeek)-Fields are written in the DOW_IN_MONTH_MODE rule, since this was the only supported rule in 1.1. In the optional section, we write first the length of an byte array as int and afterwards the byte array itself. The byte array contains in this release four elements, namely the real startDay, startDayOfWeek endDay, endDayOfWeek in that Order. These fields are needed, because for compatibility reasons only approximative values are written to the required section, as described above.

Serialized Fields

rawOffset

 int rawOffset
The raw time zone offset in milliseconds to GMT, ignoring daylight savings.


useDaylight

 boolean useDaylight
True, if this timezone uses daylight savings, false otherwise.


dstSavings

 int dstSavings
The daylight savings offset. This is a positive offset in milliseconds with respect to standard time. Typically this is one hour, but for some time zones this may be half an hour.

Since:
JDK1.1.4


startYear

 int startYear
The first year, in which daylight savings rules applies.


startMode

 int startMode
The mode of the start rule. This takes one of the following values:
DOM_MODE (1)
startDay contains the day in month of the start date, startDayOfWeek is unused.
DOW_IN_MONTH_MODE (2)
The startDay gives the day of week in month, and startDayOfWeek the day of week. For example startDay=2 and startDayOfWeek=Calender.SUNDAY specifies that the change is on the second sunday in that month. You must make sure, that this day always exists (ie. don't specify the 5th sunday).
DOW_GE_DOM_MODE (3)
The start is on the first startDayOfWeek on or after startDay. For example startDay=13 and startDayOfWeek=Calendar.FRIDAY specifies that the daylight savings start on the first FRIDAY on or after the 13th of that Month. Make sure that the change is always in the given month, or the result is undefined.
DOW_LE_DOM_MONTH (4)
The start is on the first startDayOfWeek on or before the startDay. Make sure that the change is always in the given month, or the result is undefined.


startMonth

 int startMonth
The month in which daylight savings start. This is one of the constants Calendar.JANUARY, ..., Calendar.DECEMBER.


startDay

 int startDay
This variable can have different meanings. See startMode for details

See Also:
SimpleTimeZone


startDayOfWeek

 int startDayOfWeek
This variable specifies the day of week the change takes place. If startMode == DOM_MODE, this is undefined.

See Also:
SimpleTimeZone


startTime

 int startTime
This variable specifies the time of change to daylight savings. This time is given in milliseconds after midnight local standard time.


startTimeMode

 int startTimeMode
This variable specifies the mode that startTime is specified in. By default it is WALL_TIME, but can also be STANDARD_TIME or UTC_TIME. For startTime, STANDARD_TIME and WALL_TIME are equivalent.


endMonth

 int endMonth
The month in which daylight savings ends. This is one of the constants Calendar.JANUARY, ..., Calendar.DECEMBER.


endMode

 int endMode
This variable gives the mode for the end of daylight savings rule. It can take the same values as startMode.

See Also:
SimpleTimeZone


endDay

 int endDay
This variable can have different meanings. See startMode for details

See Also:
SimpleTimeZone


endDayOfWeek

 int endDayOfWeek
This variable specifies the day of week the change takes place. If endMode == DOM_MODE, this is undefined.

See Also:
SimpleTimeZone


endTime

 int endTime
This variable specifies the time of change back to standard time. This time is given in milliseconds after midnight local standard time.


endTimeMode

 int endTimeMode
This variable specifies the mode that endTime is specified in. By default it is WALL_TIME, but can also be STANDARD_TIME or UTC_TIME.


monthLength

 byte[] monthLength
This variable points to a deprecated array from JDK 1.1. It is ignored in JDK 1.2 but streamed out for compatibility with JDK 1.1. The array contains the lengths of the months in the year and is assigned from a private static final field to avoid allocating the array for every instance of the object. Note that static final fields are not serialized.


serialVersionOnStream

 int serialVersionOnStream
The version of the serialized data on the stream.
0 or not present on stream
JDK 1.1.3 or earlier, only provides this fields: rawOffset, startDay, startDayOfWeek, startMonth, startTime, startYear, endDay, endDayOfWeek, endMonth, endTime
JDK 1.1.4 or later. This includes three new fields, namely startMode, endMode and dstSavings. And there is a optional section as described in writeObject.
XXX - JDK 1.2 Beta 4 docu states 1.1.4, but my 1.1.5 has the old version. When streaming out this class it is always written in the latest version.

Since:
JDK1.1.4

Class java.util.Stack extends Vector implements Serializable

serialVersionUID: 1224463164541339165L

Class java.util.TimeZone extends Object implements Serializable

serialVersionUID: 3581463369166924961L

Serialized Fields

ID

 String ID
The time zone identifier, e.g. PST.

Class java.util.TooManyListenersException extends Exception implements Serializable

serialVersionUID: 5074640544770687831L

Class java.util.TreeMap extends AbstractMap implements Serializable

serialVersionUID: 919286545866124006L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes this object from the given stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails


writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails

Serialized Fields

comparator

 Comparator comparator
This TreeMap's comparator, or null for natural ordering. Package visible for use by nested classes.

the comparator ordering this tree, or null

Class java.util.TreeSet extends AbstractSet implements Serializable

serialVersionUID: -2479143000061671589L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails


readObject

private void readObject(ObjectInputStream s)
            throws IOException,
                   ClassNotFoundException
Deserializes this object from the given stream.

Parameters:
s - the stream to read from

Throws:
ClassNotFoundException - if the underlying stream fails
IOException - if the underlying stream fails

Class java.util.Vector extends AbstractList implements Serializable

serialVersionUID: -2767605614048989439L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
            throws IOException
Serializes this object to the given stream.

Parameters:
s - the stream to write to

Throws:
IOException - if the underlying stream fails

Serialized Fields

elementData

 Object[] elementData
The internal array used to hold members of a Vector. The elements are in positions 0 through elementCount - 1, and all remaining slots are null.

the elements


elementCount

 int elementCount
The number of elements currently in the vector, also returned by size().

the size


capacityIncrement

 int capacityIncrement
The amount the Vector's internal array should be increased in size when a new element is added that exceeds the current size of the array, or when ensureCapacity(int) is called. If <= 0, the vector just doubles in size.

the amount to grow the vector by

Package java.util.jar

Class java.util.jar.JarException extends ZipException implements Serializable

serialVersionUID: 7159778400963954473L

Package java.util.logging

Class java.util.logging.Level extends Object implements Serializable

serialVersionUID: -8176160795706313070L

Serialization Methods

readResolve

private Object readResolve()
Checks whether the Level has the same intValue as one of the pre-defined levels. If so, the pre-defined level object is returned.
Since the resource bundle name is not taken into consideration, it is possible to resolve Level objects that have been de-serialized by another implementation, even if the other implementation uses a different resource bundle for localizing the names of pre-defined levels.

Serialized Fields

name

 String name
The name of the Level without localizing it, for example "WARNING".


value

 int value
The integer value of this Level.


resourceBundleName

 String resourceBundleName
The name of the resource bundle used for localizing the level name, or null if the name does not undergo localization.

Class java.util.logging.LoggingPermission extends BasicPermission implements Serializable

serialVersionUID: 6279438298436773498L

Class java.util.logging.LogRecord extends Object implements Serializable

serialVersionUID: 5372048053134512534L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
            throws IOException,
                   ClassNotFoundException


writeObject

private void writeObject(ObjectOutputStream out)
            throws IOException
toString() on the parameter (or null if the parameter is null).

Specification Note: The Javadoc for the Sun reference implementation does not specify the version number. FIXME: Reverse-engineer the JDK and file a bug report with Sun, asking for amendment of the specification.

Serialized Fields

level

 Level level
The severity level of this LogRecord.


sequenceNumber

 long sequenceNumber
The sequence number of this LogRecord.


sourceClassName

 String sourceClassName
The name of the class that issued the logging request, or null if this information could not be obtained.


sourceMethodName

 String sourceMethodName
The name of the method that issued the logging request, or null if this information could not be obtained.


message

 String message
The message for this LogRecord before any localization or formatting.


threadID

 int threadID
An identifier for the thread in which this LogRecord was created. The identifier is not necessarily related to any thread identifiers used by the operating system.


millis

 long millis
The time when this LogRecord was created, in milliseconds since the beginning of January 1, 1970.


thrown

 Throwable thrown
The Throwable associated with this LogRecord, or null if the logged event is not related to an exception or error.


loggerName

 String loggerName
The name of the logger where this LogRecord has originated, or null if this LogRecord does not originate from a Logger.


resourceBundleName

 String resourceBundleName
The name of the resource bundle used for localizing log messages, or null if no bundle has been specified.

Package java.util.prefs

Class java.util.prefs.BackingStoreException extends Exception implements Serializable

serialVersionUID: 859796500401108469L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream o)
            throws NotSerializableException
This class should not be serialized.

Parameters:
o - the output stream


readObject

private void readObject(ObjectInputStream i)
            throws NotSerializableException
This class should not be serialized.

Parameters:
i - the input stream

Class java.util.prefs.InvalidPreferencesFormatException extends Exception implements Serializable

serialVersionUID: -791715184232119669L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream o)
            throws NotSerializableException
This class should not be serialized.

Parameters:
o - the output stream


readObject

private void readObject(ObjectInputStream i)
            throws NotSerializableException
This class should not be serialized.

Parameters:
i - the input stream

Class java.util.prefs.NodeChangeEvent extends EventObject implements Serializable

serialVersionUID: 8068949086596572957L

Class java.util.prefs.PreferenceChangeEvent extends EventObject implements Serializable

serialVersionUID: 793724513368024975L

Serialized Fields

key

 String key
The key of the changed entry.


newValue

 String newValue
The new value of the changed entry, or null when the entry was removed.

Package java.util.regex

Class java.util.regex.Pattern extends Object implements Serializable

serialVersionUID: 5073258162644648461L

Serialized Fields

regex

 String regex


flags

 int flags


re

 gnu.regexp.RE re

Class java.util.regex.PatternSyntaxException extends IllegalArgumentException implements Serializable

serialVersionUID: -3864639126226059218L

Serialized Fields

desc

 String desc
Human readable escription of the syntax error.


pattern

 String pattern
The original pattern that contained the syntax error.


index

 int index
Index of the first character in the String that was probably invalid, or -1 when unknown.

Package java.util.zip

Class java.util.zip.DataFormatException extends Exception implements Serializable

serialVersionUID: 2219632870893641452L

Class java.util.zip.ZipException extends IOException implements Serializable

serialVersionUID: 8000196834066748623L

Package javax.crypto

Class javax.crypto.BadPaddingException extends GeneralSecurityException implements Serializable

serialVersionUID: -5315033893984728443L

Class javax.crypto.ExemptionMechanismException extends GeneralSecurityException implements Serializable

serialVersionUID: 1572699429277957109L

Class javax.crypto.IllegalBlockSizeException extends GeneralSecurityException implements Serializable

serialVersionUID: -1965144811953540392L

Class javax.crypto.NoSuchPaddingException extends GeneralSecurityException implements Serializable

serialVersionUID: -4572885201200175466L

Class javax.crypto.SealedObject extends Object implements Serializable

serialVersionUID: 4482838265551344752L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
            throws IOException,
                   ClassNotFoundException
Deserialize this object.

Parameters:
ois - The input stream.

Throws:
IOException - If reading fails.
ClassNotFoundException - If reading fails.


writeObject

private void writeObject(ObjectOutputStream oos)
            throws IOException
Serialize this object.

Parameters:
oos - The output stream.

Throws:
IOException - If writing fails.

Serialized Fields

encodedParams

 byte[] encodedParams
The encoded algorithm parameters.


encryptedContent

 byte[] encryptedContent
The serialized, encrypted object.


sealAlg

 String sealAlg
The algorithm used to seal the object.


paramsAlg

 String paramsAlg
The parameter type.

Class javax.crypto.ShortBufferException extends GeneralSecurityException implements Serializable

serialVersionUID: 8427718640832943747L

Package javax.imageio

Class javax.imageio.IIOException extends IOException implements Serializable

serialVersionUID: 7818375828146090155L

Package javax.imageio.metadata

Class javax.imageio.metadata.IIOInvalidTreeException extends IIOException implements Serializable

serialVersionUID: -1314083172544132777L

Serialized Fields

offendingNode

 Node offendingNode

Package javax.naming

Class javax.naming.AuthenticationException extends NamingSecurityException implements Serializable

serialVersionUID: 5855287647294685775L

Class javax.naming.AuthenticationNotSupportedException extends NamingSecurityException implements Serializable

serialVersionUID: 5855287647294685775L

Class javax.naming.BinaryRefAddr extends RefAddr implements Serializable

serialVersionUID: -3415254970957330361L

Serialized Fields

buf

 byte[] buf
The possibly null content of this RefAddr. Set by the constructor and returned by getContent.

Class javax.naming.Binding extends NameClassPair implements Serializable

Serialized Fields

boundObj

 Object boundObj

Class javax.naming.CannotProceedException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Serialized Fields

remainingNewName

 Name remainingNewName


environment

 Hashtable environment


altName

 Name altName


altNameCtx

 Context altNameCtx

Class javax.naming.CommunicationException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.CompositeName extends Object implements Serializable

serialVersionUID: 1667768148915813118L

Class javax.naming.CompoundName extends Object implements Serializable

serialVersionUID: 3513100557083972036L

Class javax.naming.ConfigurationException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.ContextNotEmptyException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.InsufficientResourcesException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.InterruptedNamingException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.InvalidNameException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.LimitExceededException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.LinkException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Serialized Fields

linkResolvedName

 Name linkResolvedName


linkResolvedObj

 Object linkResolvedObj


linkRemainingName

 Name linkRemainingName


linkExplanation

 String linkExplanation

Class javax.naming.LinkLoopException extends LinkException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.LinkRef extends Reference implements Serializable

serialVersionUID: -5386290613498931298L

Class javax.naming.MalformedLinkException extends LinkException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.Name extends Object implements Serializable

serialVersionUID: -3617482732056931635L

Class javax.naming.NameAlreadyBoundException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.NameClassPair extends Object implements Serializable

Serialized Fields

name

 String name


className

 String className


isRel

 boolean isRel

Class javax.naming.NameNotFoundException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.NamingException extends Exception implements Serializable

serialVersionUID: -1299181962103167177L

Serialized Fields

rootException

 Throwable rootException
The root cause of this exception. Might be null. Set by calling setRootCause(), can be accessed by calling getRootCause().


resolvedName

 Name resolvedName
If the exception was caused while resolving a Name then this field contains that part of the name that could be resolved. Field might be null. Set by calling setResolvedName(). Can be accessed by calling getResolvedName.


resolvedObj

 Object resolvedObj
If the exception was caused while resolving a Name then this field contains the object that part of the name could be resolved to. Field might be null. Set by calling setResolvedObj(). Can be accessed by calling getResolvedObj.


remainingName

 Name remainingName
If the exception was caused while resolving a Name then this field contains that part of the name that could not be resolved. Field might be null. Set by calling setRemainingName(). The field can be extended by calling appendRemainingName() or appendRemainingComponent(). Can be accessed by calling getRemainingName.

Class javax.naming.NamingSecurityException extends NamingException implements Serializable

serialVersionUID: 5855287647294685775L

Class javax.naming.NoInitialContextException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.NoPermissionException extends NamingSecurityException implements Serializable

serialVersionUID: 5855287647294685775L

Class javax.naming.NotContextException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.OperationNotSupportedException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.PartialResultException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.RefAddr extends Object implements Serializable

Serialized Fields

addrType

 String addrType
The string resprenstation of the type of address. Set by the constructor and returned by the getType() method.

Class javax.naming.Reference extends Object implements Serializable

Serialized Fields

addrs

 Vector addrs


classFactory

 String classFactory


classFactoryLocation

 String classFactoryLocation


className

 String className

Class javax.naming.ReferralException extends NamingException implements Serializable

serialVersionUID: -2881363844695698876L

Class javax.naming.ServiceUnavailableException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.SizeLimitExceededException extends LimitExceededException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.StringRefAddr extends RefAddr implements Serializable

serialVersionUID: -8913762495138505527L

Serialized Fields

contents

 String contents
The possibly null content of this RefAddr. Set by the constructor and returned by getContent.

Class javax.naming.TimeLimitExceededException extends LimitExceededException implements Serializable

serialVersionUID: -1299181962103167177L

Package javax.naming.directory

Class javax.naming.directory.Attribute extends Object implements Serializable

serialVersionUID: 8707690322213556804L

Class javax.naming.directory.AttributeInUseException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.AttributeModificationException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Serialized Fields

unexecs

 ModificationItem[] unexecs

Class javax.naming.directory.Attributes extends Object implements Serializable

Class javax.naming.directory.InvalidAttributeIdentifierException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.InvalidAttributesException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.InvalidAttributeValueException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.InvalidSearchControlsException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.InvalidSearchFilterException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.ModificationItem extends Object implements Serializable

Serialized Fields

mod_op

 int mod_op


attr

 Attribute attr

Class javax.naming.directory.NoSuchAttributeException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.SchemaViolationException extends NamingException implements Serializable

serialVersionUID: -1299181962103167177L

Class javax.naming.directory.SearchControls extends Object implements Serializable

Serialized Fields

searchScope

 int searchScope


timeLimit

 int timeLimit


derefLink

 boolean derefLink


returnObj

 boolean returnObj


countLimit

 long countLimit


attributesToReturn

 String[] attributesToReturn

Class javax.naming.directory.SearchResult extends Binding implements Serializable

Serialized Fields

attrs

 Attributes attrs

Package javax.naming.event

Class javax.naming.event.NamingEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

changeInfo

 Object changeInfo


type

 int type


oldBinding

 Binding oldBinding


newBinding

 Binding newBinding

Class javax.naming.event.NamingExceptionEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

exception

 NamingException exception

Package javax.naming.ldap

Class javax.naming.ldap.Control extends Object implements Serializable

Class javax.naming.ldap.ExtendedRequest extends Object implements Serializable

Class javax.naming.ldap.ExtendedResponse extends Object implements Serializable

Class javax.naming.ldap.LdapReferralException extends ReferralException implements Serializable

serialVersionUID: -2881363844695698876L

Class javax.naming.ldap.UnsolicitedNotificationEvent extends EventObject implements Serializable

serialVersionUID: -2382603380799883705L

Serialized Fields

notice

 UnsolicitedNotification notice

Package javax.naming.spi

Class javax.naming.spi.ResolveResult extends Object implements Serializable

Serialized Fields

resolvedObj

 Object resolvedObj


remainingName

 Name remainingName

Package javax.net.ssl

Class javax.net.ssl.HandshakeCompletedEvent extends EventObject implements Serializable

serialVersionUID: 7914963744257769778L

Class javax.net.ssl.SSLException extends IOException implements Serializable

serialVersionUID: 7818375828146090155L

Class javax.net.ssl.SSLHandshakeException extends SSLException implements Serializable

serialVersionUID: 7818375828146090155L

Class javax.net.ssl.SSLKeyException extends SSLException implements Serializable

serialVersionUID: 7818375828146090155L

Class javax.net.ssl.SSLPeerUnverifiedException extends SSLException implements Serializable

serialVersionUID: 7818375828146090155L

Class javax.net.ssl.SSLPermission extends BasicPermission implements Serializable

serialVersionUID: -3456898025505876775L

Class javax.net.ssl.SSLProtocolException extends SSLException implements Serializable

serialVersionUID: 7818375828146090155L

Class javax.net.ssl.SSLSessionBindingEvent extends EventObject implements Serializable

serialVersionUID: 3989172637106345L

Serialized Fields

name

 String name

Package javax.print

Class javax.print.DocFlavor extends Object implements Serializable

serialVersionUID: -4512080796965449721L

Serialized Fields

mediaSubtype

 String mediaSubtype


mediaType

 String mediaType


className

 String className


params

 HashMap params

Class javax.print.DocFlavor.BYTE_ARRAY extends DocFlavor implements Serializable

serialVersionUID: -4512080796965449721L

Class javax.print.DocFlavor.CHAR_ARRAY extends DocFlavor implements Serializable

serialVersionUID: -8720590903724405128L

Class javax.print.DocFlavor.INPUT_STREAM extends DocFlavor implements Serializable

serialVersionUID: -4512080796965449721L

Class javax.print.DocFlavor.READER extends DocFlavor implements Serializable

serialVersionUID: 7100295812579351567L

Class javax.print.DocFlavor.SERVICE_FORMATTED extends DocFlavor implements Serializable

serialVersionUID: 6181337766266637256L

Class javax.print.DocFlavor.STRING extends DocFlavor implements Serializable

serialVersionUID: 4414407504887034035L

Class javax.print.DocFlavor.URL extends DocFlavor implements Serializable

serialVersionUID: 2936725788144902062L

Class javax.print.PrintException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Package javax.print.attribute

Class javax.print.attribute.Attribute extends Object implements Serializable

Class javax.print.attribute.DateTimeSyntax extends Object implements Serializable

serialVersionUID: -1400819079791208582L

Serialized Fields

value

 Date value

Class javax.print.attribute.EnumSyntax extends Object implements Serializable

serialVersionUID: -2739521845085831642L

Serialized Fields

value

 int value

Class javax.print.attribute.HashAttributeSet extends Object implements Serializable

serialVersionUID: 5311560590283707917L

Serialized Fields

interfaceName

 Class interfaceName


attributeMap

 HashMap attributeMap

Class javax.print.attribute.HashDocAttributeSet extends HashAttributeSet implements Serializable

serialVersionUID: -1128534486061432528L

Class javax.print.attribute.HashPrintJobAttributeSet extends HashAttributeSet implements Serializable

serialVersionUID: -4204473656070350348L

Class javax.print.attribute.HashPrintRequestAttributeSet extends HashAttributeSet implements Serializable

serialVersionUID: 2364756266107751933L

Class javax.print.attribute.HashPrintServiceAttributeSet extends HashAttributeSet implements Serializable

serialVersionUID: 6642904616179203070L

Class javax.print.attribute.IntegerSyntax extends Object implements Serializable

Serialized Fields

value

 int value

Class javax.print.attribute.ResolutionSyntax extends Object implements Serializable

serialVersionUID: 2706743076526672017L

Serialized Fields

crossFeedResolution

 int crossFeedResolution


feedResolution

 int feedResolution

Class javax.print.attribute.SetOfIntegerSyntax extends Object implements Serializable

serialVersionUID: 3666874174847632203L

Serialized Fields

members

 int[][] members

Class javax.print.attribute.Size2DSyntax extends Object implements Serializable

Serialized Fields

x

 int x


y

 int y

Class javax.print.attribute.TextSyntax extends Object implements Serializable

serialVersionUID: -8130648736378144102L

Serialized Fields

value

 String value


locale

 Locale locale

Class javax.print.attribute.UnmodifiableSetException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Class javax.print.attribute.URISyntax extends Object implements Serializable

serialVersionUID: -7842661210486401678L

Serialized Fields

uri

 URI uri

Package javax.print.attribute.standard

Class javax.print.attribute.standard.Chromaticity extends EnumSyntax implements Serializable

serialVersionUID: 4660543931355214012L

Class javax.print.attribute.standard.ColorSupported extends EnumSyntax implements Serializable

serialVersionUID: -2700555589688535545L

Class javax.print.attribute.standard.Compression extends EnumSyntax implements Serializable

serialVersionUID: -5716748913324997674L

Class javax.print.attribute.standard.Copies extends IntegerSyntax implements Serializable

serialVersionUID: -6426631521680023833L

Class javax.print.attribute.standard.CopiesSupported extends SetOfIntegerSyntax implements Serializable

serialVersionUID: 6927711687034846001L

Class javax.print.attribute.standard.DateTimeAtCompleted extends DateTimeSyntax implements Serializable

serialVersionUID: 6497399708058490000L

Class javax.print.attribute.standard.DateTimeAtCreation extends DateTimeSyntax implements Serializable

serialVersionUID: -2923732231056647903L

Class javax.print.attribute.standard.DateTimeAtProcessing extends DateTimeSyntax implements Serializable

serialVersionUID: -3710068197278263244L

Class javax.print.attribute.standard.Destination extends URISyntax implements Serializable

serialVersionUID: 6776739171700415321L

Class javax.print.attribute.standard.DocumentName extends TextSyntax implements Serializable

serialVersionUID: 7883105848533280430L

Class javax.print.attribute.standard.Fidelity extends EnumSyntax implements Serializable

serialVersionUID: 6320827847329172308L

Class javax.print.attribute.standard.Finishings extends EnumSyntax implements Serializable

serialVersionUID: -627840419548391754L

Class javax.print.attribute.standard.JobHoldUntil extends DateTimeSyntax implements Serializable

serialVersionUID: -1664471048860415024L

Class javax.print.attribute.standard.JobImpressions extends IntegerSyntax implements Serializable

serialVersionUID: 8225537206784322464L

Class javax.print.attribute.standard.JobImpressionsCompleted extends IntegerSyntax implements Serializable

serialVersionUID: 6722648442432393294L

Class javax.print.attribute.standard.JobImpressionsSupported extends SetOfIntegerSyntax implements Serializable

serialVersionUID: -4887354803843173692L

Class javax.print.attribute.standard.JobKOctets extends IntegerSyntax implements Serializable

serialVersionUID: -8959710146498202869L

Class javax.print.attribute.standard.JobKOctetsProcessed extends IntegerSyntax implements Serializable

serialVersionUID: -6265238509657881806L

Class javax.print.attribute.standard.JobKOctetsSupported extends SetOfIntegerSyntax implements Serializable

serialVersionUID: -2867871140549897443L

Class javax.print.attribute.standard.JobMediaSheets extends IntegerSyntax implements Serializable

serialVersionUID: 408871131531979741L

Class javax.print.attribute.standard.JobMediaSheetsCompleted extends IntegerSyntax implements Serializable

serialVersionUID: 1739595973810840475L

Class javax.print.attribute.standard.JobMediaSheetsSupported extends SetOfIntegerSyntax implements Serializable

serialVersionUID: 2953685470388672940L

Class javax.print.attribute.standard.JobMessageFromOperator extends TextSyntax implements Serializable

serialVersionUID: -4620751846003142047L

Class javax.print.attribute.standard.JobName extends TextSyntax implements Serializable

serialVersionUID: 4660359192078689545L

Class javax.print.attribute.standard.JobOriginatingUserName extends TextSyntax implements Serializable

serialVersionUID: -8052537926362933477L

Class javax.print.attribute.standard.JobPriority extends IntegerSyntax implements Serializable

serialVersionUID: -4599900369040602769L

Class javax.print.attribute.standard.JobPrioritySupported extends IntegerSyntax implements Serializable

serialVersionUID: 2564840378013555894L

Class javax.print.attribute.standard.JobSheets extends EnumSyntax implements Serializable

serialVersionUID: -4735258056132519759L

Class javax.print.attribute.standard.JobState extends EnumSyntax implements Serializable

serialVersionUID: 400465010094018920L

Class javax.print.attribute.standard.JobStateReason extends EnumSyntax implements Serializable

serialVersionUID: -8765894420449009168L

Class javax.print.attribute.standard.JobStateReasons extends HashSet implements Serializable

serialVersionUID: 8849088261264331812L

Class javax.print.attribute.standard.Media extends EnumSyntax implements Serializable

serialVersionUID: -2823970704630722439L

Class javax.print.attribute.standard.MediaSize extends Size2DSyntax implements Serializable

serialVersionUID: -1967958664615414771L

Serialized Fields

media

 MediaSizeName media

Class javax.print.attribute.standard.MediaSizeName extends Media implements Serializable

serialVersionUID: 2778798329756942747L

Class javax.print.attribute.standard.MultipleDocumentHandling extends EnumSyntax implements Serializable

serialVersionUID: 8098326460746413466L

Class javax.print.attribute.standard.NumberOfDocuments extends IntegerSyntax implements Serializable

serialVersionUID: 7891881310684461097L

Class javax.print.attribute.standard.NumberOfInterveningJobs extends IntegerSyntax implements Serializable

serialVersionUID: 2568141124844982746L

Class javax.print.attribute.standard.NumberUp extends IntegerSyntax implements Serializable

serialVersionUID: -3040436486786527811L

Class javax.print.attribute.standard.NumberUpSupported extends SetOfIntegerSyntax implements Serializable

serialVersionUID: -1041573395759141805L

Class javax.print.attribute.standard.OrientationRequested extends EnumSyntax implements Serializable

serialVersionUID: -4447437289862822276L

Class javax.print.attribute.standard.OutputDeviceAssigned extends TextSyntax implements Serializable

serialVersionUID: 5486733778854271081L

Class javax.print.attribute.standard.PageRanges extends SetOfIntegerSyntax implements Serializable

serialVersionUID: 8639895197656148392L

Class javax.print.attribute.standard.PagesPerMinute extends IntegerSyntax implements Serializable

serialVersionUID: -6366403993072862015L

Class javax.print.attribute.standard.PagesPerMinuteColor extends IntegerSyntax implements Serializable

serialVersionUID: 1684993151687470944L

Class javax.print.attribute.standard.PDLOverrideSupported extends EnumSyntax implements Serializable

serialVersionUID: -4393264467928463934L

Class javax.print.attribute.standard.PresentationDirection extends EnumSyntax implements Serializable

serialVersionUID: 8294728067230931780L

Class javax.print.attribute.standard.PrinterInfo extends TextSyntax implements Serializable

serialVersionUID: 7765280618777599727L

Class javax.print.attribute.standard.PrinterIsAcceptingJobs extends EnumSyntax implements Serializable

serialVersionUID: -5052010680537678061L

Class javax.print.attribute.standard.PrinterLocation extends TextSyntax implements Serializable

serialVersionUID: -1598610039865566337L

Class javax.print.attribute.standard.PrinterMakeAndModel extends TextSyntax implements Serializable

serialVersionUID: 4580461489499351411L

Class javax.print.attribute.standard.PrinterMessageFromOperator extends TextSyntax implements Serializable

serialVersionUID: -4486871203218629318L

Class javax.print.attribute.standard.PrinterMoreInfo extends URISyntax implements Serializable

serialVersionUID: 4555850007675338574L

Class javax.print.attribute.standard.PrinterMoreInfoManufacturer extends URISyntax implements Serializable

serialVersionUID: 3323271346485076608L

Class javax.print.attribute.standard.PrinterName extends TextSyntax implements Serializable

serialVersionUID: 299740639137803127L

Class javax.print.attribute.standard.PrinterResolution extends ResolutionSyntax implements Serializable

serialVersionUID: 13090306561090558L

Class javax.print.attribute.standard.PrinterState extends EnumSyntax implements Serializable

serialVersionUID: -649578618346507718L

Class javax.print.attribute.standard.PrinterStateReason extends EnumSyntax implements Serializable

serialVersionUID: -1623720656201472593L

Class javax.print.attribute.standard.PrinterStateReasons extends HashMap implements Serializable

serialVersionUID: -3731791085163619457L

Class javax.print.attribute.standard.PrinterURI extends URISyntax implements Serializable

serialVersionUID: 7923912792485606497L

Class javax.print.attribute.standard.PrintQuality extends EnumSyntax implements Serializable

serialVersionUID: -3072341285225858365L

Class javax.print.attribute.standard.QueuedJobCount extends IntegerSyntax implements Serializable

serialVersionUID: 7499723077864047742L

Class javax.print.attribute.standard.ReferenceUriSchemesSupported extends EnumSyntax implements Serializable

serialVersionUID: -8989076942813442805L

Class javax.print.attribute.standard.RequestingUserName extends TextSyntax implements Serializable

serialVersionUID: -2683049894310331454L

Class javax.print.attribute.standard.Severity extends EnumSyntax implements Serializable

serialVersionUID: 8781881462717925380L

Class javax.print.attribute.standard.SheetCollate extends EnumSyntax implements Serializable

serialVersionUID: 7080587914259873003L

Class javax.print.attribute.standard.Sides extends EnumSyntax implements Serializable

serialVersionUID: -6890309414893262822L

Package javax.print.event

Class javax.print.event.PrintEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Class javax.print.event.PrintJobAttributeEvent extends PrintEvent implements Serializable

serialVersionUID: -6534469883874742101L

Serialized Fields

attributes

 PrintJobAttributeSet attributes

Class javax.print.event.PrintJobEvent extends PrintEvent implements Serializable

serialVersionUID: -1711656903622072997L

Serialized Fields

reason

 int reason

Class javax.print.event.PrintServiceAttributeEvent extends PrintEvent implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

attributes

 PrintServiceAttributeSet attributes

Package javax.rmi

Class javax.rmi.BAD_OPERATION extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Package javax.rmi.CORBA

Class javax.rmi.CORBA.ClassDesc extends Object implements Serializable

Serialized Fields

repid

 String repid


codebase

 String codebase

Class javax.rmi.CORBA.Stub extends ObjectImpl implements Serializable

serialVersionUID: 1087775603798577179L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException
The following two routines are required by serialized form of Java API doc.


writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException

Class javax.rmi.CORBA.SystemException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Package javax.security.auth

Class javax.security.auth.AuthPermission extends BasicPermission implements Serializable

serialVersionUID: 6279438298436773498L

Class javax.security.auth.DestroyFailedException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.security.auth.PrivateCredentialPermission extends Permission implements Serializable

serialVersionUID: 5284372143517237068L

Serialized Fields

credentialClass

 String credentialClass

The credential class name.


principals

 Set principals

The principals, a set of CredOwner objects (an undocumented inner class of this class).


testing

 boolean testing

Who knows?

Class javax.security.auth.RefreshFailedException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.security.auth.Subject extends Object implements Serializable

serialVersionUID: -8308522755600156056L

Serialized Fields

principals

 Set principals

The set of principals. The type of this field is SecureSet, a private inner class.


readOnly

 boolean readOnly

The read-only flag.

Package javax.security.auth.callback

Class javax.security.auth.callback.ChoiceCallback extends Object implements Serializable

Serialized Fields

prompt

 String prompt

Since:
1.4


choices

 String[] choices

Since:
1.4

the list of choices.


defaultChoice

 int defaultChoice

Since:
1.4

the choice to be used as the default choice.


multipleSelectionsAllowed

 boolean multipleSelectionsAllowed

Since:
1.4

whether multiple selections are allowed from the list of choices.


selections

 int[] selections

Since:
1.4

the selected choices, represented as indexes into the choices list.

Class javax.security.auth.callback.ConfirmationCallback extends Object implements Serializable

Serialized Fields

prompt

 String prompt

Since:
1.4


messageType

 int messageType

Since:
1.4


optionType

 int optionType

Since:
1.4


defaultOption

 int defaultOption

Since:
1.4


options

 String[] options

Since:
1.4


selection

 int selection

Since:
1.4

Class javax.security.auth.callback.LanguageCallback extends Object implements Serializable

Serialized Fields

locale

 Locale locale

Since:
1.4

Class javax.security.auth.callback.NameCallback extends Object implements Serializable

Serialized Fields

prompt

 String prompt

Since:
1.4


defaultName

 String defaultName

Since:
1.4


inputName

 String inputName

Since:
1.4

Class javax.security.auth.callback.PasswordCallback extends Object implements Serializable

Serialized Fields

prompt

 String prompt

Since:
1.4


echoOn

 boolean echoOn

Since:
1.4


inputPassword

 char[] inputPassword

Since:
1.4

Class javax.security.auth.callback.TextInputCallback extends Object implements Serializable

Serialized Fields

prompt

 String prompt

Since:
1.4


defaultText

 String defaultText

Since:
1.4


inputText

 String inputText

Since:
1.4

Class javax.security.auth.callback.TextOutputCallback extends Object implements Serializable

Serialized Fields

messageType

 int messageType

Since:
1.4


message

 String message

Since:
1.4

Class javax.security.auth.callback.UnsupportedCallbackException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

callback

 Callback callback

Package javax.security.auth.login

Class javax.security.auth.login.AccountExpiredException extends LoginException implements Serializable

serialVersionUID: -6064064890162661560L

Class javax.security.auth.login.CredentialExpiredException extends LoginException implements Serializable

serialVersionUID: -5344739593859737937L

Class javax.security.auth.login.FailedLoginException extends LoginException implements Serializable

serialVersionUID: 802556922354616286L

Class javax.security.auth.login.LoginException extends GeneralSecurityException implements Serializable

serialVersionUID: -4679091624035232488L

Package javax.security.auth.x500

Class javax.security.auth.x500.X500Principal extends Object implements Serializable

serialVersionUID: -500463348111345721L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream out)
            throws IOException


readObject

private void readObject(ObjectInputStream in)
            throws IOException,
                   NotActiveException,
                   ClassNotFoundException

Serialized Fields

sep

 int sep

Package javax.security.cert

Class javax.security.cert.CertificateEncodingException extends CertificateException implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.security.cert.CertificateException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.security.cert.CertificateExpiredException extends CertificateException implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.security.cert.CertificateNotYetValidException extends CertificateException implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.security.cert.CertificateParsingException extends CertificateException implements Serializable

serialVersionUID: -3387516993124229948L

Package javax.security.sasl

Class javax.security.sasl.AuthenticationException extends SaslException implements Serializable

serialVersionUID: 7818375828146090155L

Class javax.security.sasl.RealmCallback extends TextInputCallback implements Serializable

Class javax.security.sasl.RealmChoiceCallback extends ChoiceCallback implements Serializable

Class javax.security.sasl.SaslException extends IOException implements Serializable

serialVersionUID: 7818375828146090155L

Serialized Fields

_exception

 Throwable _exception

The possibly null root cause exception.

Package javax.sql

Class javax.sql.ConnectionEvent extends EventObject implements Serializable

serialVersionUID: -4843217645290030002L

Serialized Fields

ex

 SQLException ex

Class javax.sql.RowSetEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Package javax.swing

Class javax.swing.AbstractAction extends Object implements Serializable

serialVersionUID: -6803159439231523484L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws ClassNotFoundException,
                   IOException
readObject

Parameters:
stream - the stream to read from

Throws:
ClassNotFoundException - TODO
IOException - if an error occurs


writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
writeObject

Parameters:
stream - the stream to write to

Throws:
IOException - if an error occurs

Serialized Fields

enabled

 boolean enabled
A flag that indicates whether or not the action is enabled.


changeSupport

 SwingPropertyChangeSupport changeSupport
Provides support for property change event notification.

Class javax.swing.AbstractButton extends JComponent implements Serializable

serialVersionUID: -937921345538462020L

Serialized Fields

default_icon

 Icon default_icon
The icon displayed by default.


pressed_icon

 Icon pressed_icon
The icon displayed when the button is pressed.


disabeldIcon

 Icon disabeldIcon
The icon displayed when the button is disabled.


selectedIcon

 Icon selectedIcon
The icon displayed when the button is selected.


disabledSelectedIcon

 Icon disabledSelectedIcon
The icon displayed when the button is selected but disabled.


rolloverIcon

 Icon rolloverIcon
The icon displayed when the button is rolled over.


rolloverSelectedIcon

 Icon rolloverSelectedIcon
The icon displayed when the button is selected and rolled over.


current_icon

 Icon current_icon
The icon currently displayed.


text

 String text
The text displayed in the button.


iconTextGap

 int iconTextGap
The gap between icon and text, if both icon and text are non-null.


verticalAlignment

 int verticalAlignment
The vertical alignment of the button's text and icon.


horizontalAlignment

 int horizontalAlignment
The horizontal alignment of the button's text and icon.


horizontalTextPosition

 int horizontalTextPosition
The horizontal position of the button's text relative to its icon.


verticalTextPosition

 int verticalTextPosition
The vertical position of the button's text relative to its icon.


borderPainted

 boolean borderPainted
Whether or not the button paints its border.


focusPainted

 boolean focusPainted
Whether or not the button paints its focus state.


contentAreaFilled

 boolean contentAreaFilled
Whether or not the button fills its content area.


rollOverEnabled

 boolean rollOverEnabled
Whether rollover is enabled.


action

 Action action
The action taken when the button is clicked.


model

 ButtonModel model
The button's current state.


margin

 Insets margin
The margin between the button's border and its label.


mnemonicIndex

 int mnemonicIndex
A hint to the look and feel class, suggesting which character in the button's label should be underlined when drawing the label.


actionListener

 ActionListener actionListener
Listener the button uses to receive ActionEvents from its model.


itemListener

 ItemListener itemListener
Listener the button uses to receive ItemEvents from its model.


changeListener

 ChangeListener changeListener
Listener the button uses to receive ChangeEvents from its model.


multiClickThreshhold

 long multiClickThreshhold
The time in miliseconds in which clicks get coalesced into a single ActionEvent.


actionPropertyChangeListener

 PropertyChangeListener actionPropertyChangeListener
Listener the button uses to receive PropertyChangeEvents from its Action.


changeEvent

 ChangeEvent changeEvent
ChangeEvent that is fired to button's ChangeEventListeners

Class javax.swing.AbstractButton.AccessibleAbstractButton extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -5673062525319836790L

Class javax.swing.AbstractButton.ButtonChangeListener extends Object implements Serializable

serialVersionUID: 1471056094226600578L

Class javax.swing.AbstractCellEditor extends Object implements Serializable

serialVersionUID: -1048006551406220959L

Serialized Fields

listenerList

 EventListenerList listenerList
Our Swing event listeners.

Class javax.swing.AbstractListModel extends Object implements Serializable

serialVersionUID: -3285184064379168730L

Serialized Fields

listenerList

 EventListenerList listenerList
List of ListDataListeners called for each change to the list.

Class javax.swing.ActionMap extends Object implements Serializable

serialVersionUID: -6277518704513986346L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
writeObject

Parameters:
stream - the stream to write to

Throws:
IOException - If an error occurs


readObject

private void readObject(ObjectInputStream stream)
            throws ClassNotFoundException,
                   IOException
readObject

Parameters:
stream - the stream to read from

Throws:
ClassNotFoundException - If the serialized class cannot be found
IOException - If an error occurs

Serialized Fields

actionMap

 Map actionMap
actionMap


parent

 ActionMap parent
parent

Class javax.swing.Box extends JComponent implements Serializable

serialVersionUID: 1525417495883046342L

Class javax.swing.Box.Filler extends JComponent implements Serializable

serialVersionUID: -1204263191910183998L

Serialized Fields

accessibleContext

 AccessibleContext accessibleContext
Accessibility support is currently missing.

Class javax.swing.BoxLayout extends Object implements Serializable

serialVersionUID: -2474455742719112368L

Serialized Fields

container

 Container container


way

 int way

Class javax.swing.ButtonGroup extends Object implements Serializable

serialVersionUID: 4259076101881721375L

Serialized Fields

buttons

 Vector buttons
The buttons added to this button group.


sel

 ButtonModel sel
The currently selected button model.

Class javax.swing.CellRendererPane extends Container implements Serializable

serialVersionUID: -7642183829532984273L

Serialized Fields

accessibleContext

 AccessibleContext accessibleContext
accessibleContext

Class javax.swing.CellRendererPane.AccessibleCellRendererPane extends Container.AccessibleAWTContainer implements Serializable

serialVersionUID: -8981090083147391074L

Class javax.swing.ComponentInputMap extends InputMap implements Serializable

serialVersionUID: -5429059542008604257L

Serialized Fields

component

 JComponent component
The component to notify.

Class javax.swing.DefaultBoundedRangeModel extends Object implements Serializable

serialVersionUID: 5034068491295259790L

Serialized Fields

listenerList

 EventListenerList listenerList
The list of the currently registered EventListeners.


value

 int value
The current value of the range model, which is always between DefaultBoundedRangeModel and (DefaultBoundedRangeModel - DefaultBoundedRangeModel). In a scroll bar visualization of a BoundedRangeModel, the value is displayed as the position of the thumb.


extent

 int extent
The current extent of the range model, which is a number greater than or equal to zero. In a scroll bar visualization of a BoundedRangeModel, the extent is displayed as the size of the thumb.


minimum

 int minimum
The current minimum value of the range model, which is always less than or equal to DefaultBoundedRangeModel.


maximum

 int maximum
The current maximum value of the range model, which is always greater than or equal to DefaultBoundedRangeModel.


isAdjusting

 boolean isAdjusting
A property that indicates whether the value of this BoundedRangeModel is going to change in the immediate future.

Class javax.swing.DefaultButtonModel extends Object implements Serializable

serialVersionUID: -5342609566534980231L

Serialized Fields

stateMask

 int stateMask
Represents the "state properties" (armed, enabled, pressed, rollover and selected) by a bitwise combination of integer constants.


listenerList

 EventListenerList listenerList
List of ItemListeners, ChangeListeners, and ActionListeners registered on this model.


changeEvent

 ChangeEvent changeEvent
The single ChangeEvent this model (re)uses to call its ChangeListeners.


group

 ButtonGroup group
The group this model belongs to. Only one button in a group may be selected at any given time.


mnemonic

 int mnemonic
The key code (one of KeyEvent VK_) used to press this button via a keyboard interface.


actionCommand

 String actionCommand
The string used as the "command" property of any ActionEvent this model sends.

Class javax.swing.DefaultCellEditor extends AbstractCellEditor implements Serializable

serialVersionUID: 3564035141373880027L

Serialized Fields

editorComponent

 JComponent editorComponent
editorComponent


delegate

 DefaultCellEditor.EditorDelegate delegate
delegate


clickCountToStart

 int clickCountToStart
clickCountToStart

Class javax.swing.DefaultCellEditor.EditorDelegate extends Object implements Serializable

serialVersionUID: -1420007406015481933L

Serialized Fields

value

 Object value
value

Class javax.swing.DefaultComboBoxModel extends AbstractListModel implements Serializable

serialVersionUID: 6698657703676921904L

Serialized Fields

list

 Vector list
List containing items in the combo box


selectedItem

 Object selectedItem
Currently selected item in the combo box list

Class javax.swing.DefaultDesktopManager extends Object implements Serializable

serialVersionUID: 4657624909838017887L

Serialized Fields

currentDragMode

 int currentDragMode
The method of dragging used by the JDesktopPane that parents the JInternalFrame that is being dragged.

Class javax.swing.DefaultListCellRenderer extends JLabel implements Serializable

serialVersionUID: 7708947179685189462L

Class javax.swing.DefaultListCellRenderer.UIResource extends DefaultListCellRenderer implements Serializable

serialVersionUID: 7708947179685189462L

Class javax.swing.DefaultListModel extends AbstractListModel implements Serializable

serialVersionUID: 2315945659722172272L

Serialized Fields

elements

 Vector elements
The vector of elements in this list model.

Class javax.swing.DefaultListSelectionModel extends Object implements Serializable

serialVersionUID: -5718799865110415860L

Serialized Fields

listenerList

 EventListenerList listenerList
The list of ListSelectionListeners subscribed to this selection model.


selectionMode

 int selectionMode
The current list selection mode. Must be one of the numeric constants SINGLE_SELECTION, SINGLE_INTERVAL_SELECTION or MULTIPLE_INTERVAL_SELECTION from ListSelectionModel. The default value is MULTIPLE_INTERVAL_SELECTION.


leadSelectionIndex

 int leadSelectionIndex
The index of the "lead" of the most recent selection. The lead is the second argument in any call to setSelectionInterval(int,int), addSelectionInterval(int,int) or removeSelectionInterval(int,int). Generally the lead refers to the most recent position a user dragged their mouse over.


anchorSelectionIndex

 int anchorSelectionIndex
The index of the "anchor" of the most recent selection. The anchor is the first argument in any call to setSelectionInterval(int,int), addSelectionInterval(int,int) or removeSelectionInterval(int,int). Generally the anchor refers to the first recent position a user clicks when they begin to drag their mouse over a list.

See Also:
DefaultListSelectionModel.getAnchorSelectionIndex(), DefaultListSelectionModel.setAnchorSelectionIndex(int)


leadAnchorNotificationEnabled

 boolean leadAnchorNotificationEnabled
controls the range of indices provided in any ListSelectionEvent fired by the selectionModel. Let [A,L] be the range of indices between anchorSelectionIndex and leadSelectionIndex inclusive, and let [i0,i1] be the range of indices changed in a given call which generates a ListSelectionEvent. Then when this property is true, the ListSelectionEvent contains the range [A,L] union [i0,i1]; when false it will contain only [i0,i1]. The default is true.

See Also:
DefaultListSelectionModel.isLeadAnchorNotificationEnabled(), DefaultListSelectionModel.setLeadAnchorNotificationEnabled(boolean)


valueIsAdjusting

 boolean valueIsAdjusting
Whether the selection is currently "adjusting". Any ListSelectionEvent events constructed in response to changes in this list selection model will have their ListSelectionEvent field set to this value.

See Also:
DefaultListSelectionModel.getValueIsAdjusting(), DefaultListSelectionModel.setValueIsAdjusting(boolean)


sel

 BitSet sel
The current set of "intervals", represented simply by a BitSet. A set bit indicates a selected index, whereas a cleared bit indicates a non-selected index.


oldSel

 Object oldSel
A variable to store the previous value of sel. Used to make sure we only fireValueChanged when the BitSet actually does change.


setLeadCalledFromAdd

 boolean setLeadCalledFromAdd
Whether this call of setLeadSelectionInterval was called locally from addSelectionInterval

Class javax.swing.DefaultSingleSelectionModel extends Object implements Serializable

serialVersionUID: 3676229404753786004L

Serialized Fields

listenerList

 EventListenerList listenerList
listenerList


index

 int index
index

Class javax.swing.ImageIcon extends Object implements Serializable

serialVersionUID: 532615968316031794L

Serialized Fields

image

 Image image


description

 String description


observer

 ImageObserver observer


loadStatus

 int loadStatus
The image loading status.


accessibleContext

 AccessibleContext accessibleContext
The AccessibleContext of this ImageIcon.

Class javax.swing.ImageIcon.AccessibleImageIcon extends AccessibleContext implements Serializable

serialVersionUID: 2113430526551336564L

Class javax.swing.InputMap extends Object implements Serializable

serialVersionUID: -5429059542008604257L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
writeObject

Parameters:
stream - the stream to write to

Throws:
IOException - If an error occurs


readObject

private void readObject(ObjectInputStream stream)
            throws ClassNotFoundException,
                   IOException
readObject

Parameters:
stream - the stream to read from

Throws:
ClassNotFoundException - If the serialized class cannot be found
IOException - If an error occurs

Serialized Fields

inputMap

 Map inputMap
inputMap


parent

 InputMap parent
parent

Class javax.swing.JApplet extends Applet implements Serializable

serialVersionUID: 7269359214497372587L

Serialized Fields

rootPane

 JRootPane rootPane


rootPaneCheckingEnabled

 boolean rootPaneCheckingEnabled


initStageDone

 boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container

Class javax.swing.JButton extends AbstractButton implements Serializable

serialVersionUID: -1907255238954382202L

Serialized Fields

def

 boolean def


is_def

 boolean is_def

Class javax.swing.JCheckBox extends JToggleButton implements Serializable

serialVersionUID: -5246739313864538930L

Serialized Fields

borderPaintedFlat

 boolean borderPaintedFlat

Class javax.swing.JCheckBoxMenuItem extends JMenuItem implements Serializable

serialVersionUID: -6676402307973384715L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
Serialize this Container:
  1. Write to the stream the default serializable fields.
  2. Write the list of serializable ContainerListeners as optional data.
  3. Write this Container's FocusTraversalPolicy as optional data.

Parameters:

Throws:
IOException - if the stream fails

Serialized Fields

state

 boolean state
Indicates whether this menu item is checked.


selectedObjects

 Object[] selectedObjects
This array contains text of this menu item if this menu item is in checked state and null it is not.

Class javax.swing.JCheckBoxMenuItem.AccessibleJCheckBoxMenuItem extends JMenuItem.AccessibleJMenuItem implements Serializable

serialVersionUID: 1079958073579370777L

Class javax.swing.JColorChooser extends JComponent implements Serializable

serialVersionUID: 9168066781620640889L

Serialized Fields

selectionModel

 ColorSelectionModel selectionModel
The model used with the JColorChooser.


previewPanel

 JComponent previewPanel
The preview panel associated with the JColorChooser.


chooserPanels

 AbstractColorChooserPanel[] chooserPanels
The set of AbstractColorChooserPanels associated with the JColorChooser.


dragEnabled

 boolean dragEnabled
A Drag and Drop property.


accessibleContext

 AccessibleContext accessibleContext
accessibleContext

Class javax.swing.JColorChooser.AccessibleJColorChooser extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -2038297864782299082L

Class javax.swing.JComboBox extends JComponent implements Serializable

serialVersionUID: 5654585963292734470L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
Serialize this Container:
  1. Write to the stream the default serializable fields.
  2. Write the list of serializable ContainerListeners as optional data.
  3. Write this Container's FocusTraversalPolicy as optional data.

Parameters:

Throws:
IOException - if the stream fails

Serialized Fields

dataModel

 ComboBoxModel dataModel
Data model used by JComboBox to keep track of its list data and currently selected element in the list.


renderer

 ListCellRenderer renderer
Renderer renders(paints) every object in the combo box list in its associated list cell. This ListCellRenderer is used only when this JComboBox is uneditable.


editor

 ComboBoxEditor editor
Editor that is responsible for editing an object in a combo box list.


maximumRowCount

 int maximumRowCount
Number of rows that will be visible in the JComboBox's popup.


isEditable

 boolean isEditable
This field indicates if textfield of this JComboBox is editable or not.


selectedItemReminder

 Object selectedItemReminder
This field is reference to the current selection of the combo box.


keySelectionManager

 JComboBox.KeySelectionManager keySelectionManager
keySelectionManager


actionCommand

 String actionCommand
This actionCommand is used in ActionEvent that is fired to JComboBox's ActionListeneres.


lightWeightPopupEnabled

 boolean lightWeightPopupEnabled
This property indicates if heavyweight popup or lightweight popup will be used to diplay JComboBox's elements.


action

 Action action
The action taken when new item is selected in the JComboBox


prototypeDisplayValue

 Object prototypeDisplayValue
since 1.4 If this field is set then comboBox's display area for the selected item will be set by default to this value.

Class javax.swing.JComboBox.AccessibleJComboBox extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 8217828307256675666L

Class javax.swing.JComponent extends Container implements Serializable

serialVersionUID: -7908749299918704233L

Serialized Fields

accessibleContext

 AccessibleContext accessibleContext
Accessibility support is currently missing.


preferredSize

 Dimension preferredSize
An explicit value for the component's preferred size; if not set by a user, this is calculated on the fly by delegating to the ComponentUI.getPreferredSize method on the ui property.


minimumSize

 Dimension minimumSize
An explicit value for the component's minimum size; if not set by a user, this is calculated on the fly by delegating to the ComponentUI.getMinimumSize method on the ui property.


maximumSize

 Dimension maximumSize
An explicit value for the component's maximum size; if not set by a user, this is calculated on the fly by delegating to the ComponentUI.getMaximumSize method on the ui property.


alignmentX

 float alignmentX
A value between 0.0 and 1.0 indicating the preferred horizontal alignment of the component, relative to its siblings. The values JComponent, JComponent, and JComponent can also be used, as synonyms for 0.0, 0.5, and 1.0, respectively. Not all layout managers use this property.

See Also:
JComponent.getAlignmentX(), JComponent.setAlignmentX(float), OverlayLayout, BoxLayout


alignmentY

 float alignmentY
A value between 0.0 and 1.0 indicating the preferred vertical alignment of the component, relative to its siblings. The values JComponent, JComponent, and JComponent can also be used, as synonyms for 0.0, 0.5, and 1.0, respectively. Not all layout managers use this property.

See Also:
JComponent.getAlignmentY(), JComponent.setAlignmentY(float), OverlayLayout, BoxLayout


border

 Border border
The border painted around this component.

See Also:
JComponent.paintBorder(Graphics)


toolTipText

 String toolTipText
The text to show in the tooltip associated with this component.

See Also:
JComponent.setToolTipText(String), getToolTipText


doubleBuffered

 boolean doubleBuffered
Whether to double buffer this component when painting. This flag should generally be false, except for top level components such as JFrame or JApplet.

All children of a double buffered component are painted into the double buffer automatically, so only the top widget in a window needs to be double buffered.

See Also:
JComponent.setDoubleBuffered(boolean), JComponent.isDoubleBuffered(), JComponent, JComponent.paint(Graphics)


debugGraphicsOptions

 int debugGraphicsOptions
A set of flags indicating which debugging graphics facilities should be enabled on this component. The values should be a combination of DebugGraphics.NONE_OPTION, DebugGraphics.LOG_OPTION, DebugGraphics.FLASH_OPTION, or DebugGraphics.BUFFERED_OPTION.

See Also:
setDebugGraphicsOptions, getDebugGraphicsOptions, DebugGraphics, getComponentGraphics


opaque

 boolean opaque
This property controls two independent behaviors simultaneously.

First, it controls whether to fill the background of this widget when painting its body. This affects calls to paintComponent(Graphics), which in turn calls ComponentUI.update(Graphics,JComponent) on the component's ui property. If the component is opaque during this call, the background will be filled before calling ComponentUI.paint(Graphics,JComponent). This happens merely as a convenience; you may fill the component's background yourself too, but there is no need to do so if you will be filling with the same color.

Second, it the opaque property informs swing's repaint system whether it will be necessary to paint the components "underneath" this component, in Z-order. If the component is opaque, it is considered to completely occlude components "underneath" it, so they will not be repainted along with the opaque component.

The default value for this property is false, but most components will want to set it to true when installing UI defaults in ComponentUI.installUI(JComponent).

See Also:
JComponent.setOpaque(boolean), JComponent.isOpaque(), JComponent.paintComponent(Graphics)


ui

 ComponentUI ui
The user interface delegate for this component. Event delivery and repainting of the component are usually delegated to this object.

See Also:
JComponent.setUI(ComponentUI), JComponent, JComponent.updateUI()


requestFocusEnabled

 boolean requestFocusEnabled
A hint to the focus system that this component should or should not get focus. If this is false, swing will not try to request focus on this component; if true, swing might try to request focus, but the request might fail. Thus it is only a hint guiding swing's behavior.

See Also:
requestFocus, JComponent.isRequestFocusEnabled(), JComponent.setRequestFocusEnabled(boolean)


autoscrolls

 boolean autoscrolls
Flag indicating behavior of this component when the mouse is dragged outside the component and the mouse stops moving. If true, synthetic mouse events will be delivered on regular timed intervals, continuing off in the direction the mouse exited the component, until the mouse is released or re-enters the component.

See Also:
setAutoscrolls, getAutoscrolls


listenerList

 EventListenerList listenerList
Listeners for events other than PropertyChangeEvent are handled by this listener list. PropertyChangeEvents are handled in JComponent.


changeSupport

 SwingPropertyChangeSupport changeSupport
Support for PropertyChangeEvent events. This is constructed lazily when the component gets its first PropertyChangeListener subscription; until then it's an empty slot.


clientProperties

 Hashtable clientProperties
Storage for "client properties", which are key/value pairs associated with this component by a "client", such as a user application or a layout manager. This is lazily constructed when the component gets its first client property.


inputMap_whenFocused

 InputMap inputMap_whenFocused


inputMap_whenAncestorOfFocused

 InputMap inputMap_whenAncestorOfFocused


inputMap_whenInFocusedWindow

 InputMap inputMap_whenInFocusedWindow


actionMap

 ActionMap actionMap


verifyInputWhenFocusTarget

 boolean verifyInputWhenFocusTarget

Since:
1.3


inputVerifier

 InputVerifier inputVerifier


transferHandler

 TransferHandler transferHandler

Class javax.swing.JComponent.AccessibleJComponent extends Container.AccessibleAWTContainer implements Serializable

serialVersionUID: -7047089700479897799L

Serialized Fields

accessibleContainerHandler

 ContainerListener accessibleContainerHandler


accessibleFocusHandler

 FocusListener accessibleFocusHandler

Class javax.swing.JDesktopPane extends JLayeredPane implements Serializable

serialVersionUID: 766333777224038726L

Class javax.swing.JDesktopPane.AccessibleJDesktopPane extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 6079388927946077570L

Class javax.swing.JDialog extends Dialog implements Serializable

serialVersionUID: -864070866424508218L

Serialized Fields

accessibleContext

 AccessibleContext accessibleContext
DOCUMENT ME!


rootPane

 JRootPane rootPane
The single RootPane in the Dialog.


rootPaneCheckingEnabled

 boolean rootPaneCheckingEnabled
Whether checking is enabled on the RootPane.


close_action

 int close_action
The default action taken when closed.


initStageDone

 boolean initStageDone
Whether we're in the init stage or not. If so, adds and layouts are for top-level, otherwise they're for the content pane

Class javax.swing.JEditorPane extends JTextComponent implements Serializable

serialVersionUID: 3140472492599046285L

Serialized Fields

page

 URL page


editorKit

 EditorKit editorKit


focus_root

 boolean focus_root

Class javax.swing.JFileChooser extends JComponent implements Serializable

serialVersionUID: 3162921138695327837L

Serialized Fields

accessibleContext

 AccessibleContext accessibleContext
DOCUMENT ME!


fsv

 FileSystemView fsv
DOCUMENT ME!


accessory

 JComponent accessory
DOCUMENT ME!


approveButtonMnemonic

 int approveButtonMnemonic
DOCUMENT ME!


approveButtonText

 String approveButtonText
DOCUMENT ME!


approveButtonToolTipText

 String approveButtonToolTipText
DOCUMENT ME!


choosableFilters

 ArrayList choosableFilters
DOCUMENT ME!


isAcceptAll

 boolean isAcceptAll
DOCUMENT ME!


dialogTitle

 String dialogTitle
DOCUMENT ME!


dialogType

 int dialogType
DOCUMENT ME!


retval

 int retval
DOCUMENT ME!


multiSelection

 boolean multiSelection
DOCUMENT ME!


fileHiding

 boolean fileHiding
DOCUMENT ME!


fileSelectionMode

 int fileSelectionMode
DOCUMENT ME!


fv

 FileView fv
DOCUMENT ME!


controlButtonsShown

 boolean controlButtonsShown
DOCUMENT ME!


currentDir

 File currentDir
DOCUMENT ME!


currentFilter

 FileFilter currentFilter
DOCUMENT ME!


selectedFiles

 File[] selectedFiles
DOCUMENT ME!


selectedFile

 File selectedFile
DOCUMENT ME!

Class javax.swing.JFormattedTextField extends JTextField implements Serializable

serialVersionUID: 5464657870110180632L

Serialized Fields

value

 Object value


focusLostBehavior

 int focusLostBehavior


formatterFactory

 JFormattedTextField.AbstractFormatterFactory formatterFactory


editValid

 boolean editValid

Class javax.swing.JFormattedTextField.AbstractFormatter extends Object implements Serializable

serialVersionUID: -5193212041738979680L

Serialized Fields

textField

 JFormattedTextField textField

Class javax.swing.JFrame extends Frame implements Serializable

serialVersionUID: -3362141868504252139L

Serialized Fields

close_action

 int close_action


accessibleContext

 AccessibleContext accessibleContext
The accessible context associated with this component. This is only set by subclasses.

Since:
1.2

the accessibility context

See Also:
Component.getAccessibleContext()


rootPane

 JRootPane rootPane


rootPaneCheckingEnabled

 boolean rootPaneCheckingEnabled


initStageDone

 boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container.

Class javax.swing.JInternalFrame extends JComponent implements Serializable

serialVersionUID: -5425177187760785402L

Serialized Fields

closable

 boolean closable
Whether the JInternalFrame is closable.


iconable

 boolean iconable
Whether the JInternalFrame can be iconified.


isClosed

 boolean isClosed
Whether the JInternalFrame is closed.


isIcon

 boolean isIcon
Whether the JInternalFrame has been iconified.


isMaximum

 boolean isMaximum
Whether the JInternalFrame has been maximized.


isSelected

 boolean isSelected
Whether the JInternalFrame is the active frame.


maximizable

 boolean maximizable
Whether the JInternalFrame can be maximized.


rootPaneCheckingEnabled

 boolean rootPaneCheckingEnabled
Whether the JInternalFrame has rootPaneChecking enabled.


initStageDone

 boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container.


resizable

 boolean resizable
Whether the JInternalFrame is resizable.


desktopIcon

 JInternalFrame.JDesktopIcon desktopIcon
The JDesktopIcon that represents the JInternalFrame while it is iconified.


frameIcon

 Icon frameIcon
The icon used in the JMenuBar in the TitlePane.


rootPane

 JRootPane rootPane
The rootPane of the JInternalFrame.


title

 String title
The title on the TitlePane of the JInternalFrame.

Class javax.swing.JInternalFrame.AccessibleJInternalFrame extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 5931936924175476797L

Class javax.swing.JInternalFrame.JDesktopIcon extends JComponent implements Serializable

serialVersionUID: 4672973344731387687L

Serialized Fields

frame

 JInternalFrame frame
The JInternalFrame this DesktopIcon represents.

Class javax.swing.JInternalFrame.JDesktopIcon.AccessibleJDesktopIcon extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 5035560458941637802L

Class javax.swing.JLabel extends JComponent implements Serializable

serialVersionUID: 5496508283662221534L

Serialized Fields

labelFor

 Component labelFor
The Component the label will give focus to when its mnemonic is activated.

Class javax.swing.JLayeredPane extends JComponent implements Serializable

serialVersionUID: 5534920399324590459L

Serialized Fields

layers

 TreeMap layers


componentToLayer

 Hashtable componentToLayer

Class javax.swing.JList extends JComponent implements Serializable

serialVersionUID: 4406629526391098046L

Serialized Fields

dragEnabled

 boolean dragEnabled
This property indicates whether "drag and drop" functions are enabled on the list.


cellRenderer

 ListCellRenderer cellRenderer
This property provides a strategy for rendering cells in the list.


fixedCellWidth

 int fixedCellWidth
This property indicates an fixed width to assign to all cells in the list. If its value is -1, no width has been assigned. This value can be set explicitly, or implicitly by setting the JList property.


fixedCellHeight

 int fixedCellHeight
This property indicates an fixed height to assign to all cells in the list. If its value is -1, no height has been assigned. This value can be set explicitly, or implicitly by setting the JList property.


layoutOrientation

 int layoutOrientation
This property holds the current layout orientation of the list, which is one of the integer constants VERTICAL, VERTICAL_WRAP, or HORIZONTAL_WRAP.


model

 ListModel model
This property holds the data elements displayed by the list.


prototypeCellValue

 Object prototypeCellValue
This property holds a reference to a "prototype" data value -- typically a String -- which is used to calculate the JList and JList properties, using the JList property to acquire a component to render the prototype.

It is important that you not set this value to a component. It has to be a data value such as the objects you would find in the list's model. Setting it to a component will have undefined (and undesirable) affects.


selectionBackground

 Color selectionBackground
This property specifies a foreground color for the selected cells in the list. When ListCellRenderer.getListCellRendererComponent is called with a selected cell object, the component returned will have its "foreground" set to this color.


selectionForeground

 Color selectionForeground
This property specifies a background color for the selected cells in the list. When ListCellRenderer.getListCellRendererComponent is called with a selected cell object, the component returned will have its "background" property set to this color.


selectionModel

 ListSelectionModel selectionModel
This property holds a description of which data elements in the JList property should be considered "selected", when displaying and interacting with the list.


valueIsAdjusting

 boolean valueIsAdjusting
This property indicates that the list's selection is currently "adjusting" -- perhaps due to a user actively dragging the mouse over multiple list elements -- and is therefore likely to change again in the near future. A ListSelectionListener might choose to delay updating its view of the list's selection until this property is false, meaning that the adjustment has completed.


visibleRowCount

 int visibleRowCount
This property indicates a preference for the number of rows displayed in the list, and will scale the JList property accordingly. The actual number of displayed rows, when the list is placed in a real Viewport or other component, may be greater or less than this number.


listListener

 javax.swing.JList.ListListener listListener
Shared ListListener instance, subscribed to both the current JList and JList properties of the list.

Class javax.swing.JMenu extends JMenuItem implements Serializable

serialVersionUID: 4227225638931828014L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
Serialize this Container:
  1. Write to the stream the default serializable fields.
  2. Write the list of serializable ContainerListeners as optional data.
  3. Write this Container's FocusTraversalPolicy as optional data.

Parameters:

Throws:
IOException - if the stream fails

Serialized Fields

popupMenu

 JPopupMenu popupMenu
A Popup menu associated with this menu, which pops up when menu is selected


menuEvent

 MenuEvent menuEvent
Whenever menu is selected or deselected the MenuEvent is fired to menu's registered listeners.


delay

 int delay


popupListener

 JMenu.WinListener popupListener


menuLocation

 Point menuLocation
Location at which popup menu associated with this menu will be displayed

Class javax.swing.JMenu.AccessibleJMenu extends JMenuItem.AccessibleJMenuItem implements Serializable

serialVersionUID: -8131864021059524309L

Class javax.swing.JMenu.WinListener extends WindowAdapter implements Serializable

serialVersionUID: -6415815570638474823L

Serialized Fields

popupMenu

 JPopupMenu popupMenu

Class javax.swing.JMenuBar extends JComponent implements Serializable

serialVersionUID: -8191026883931977036L

Serialized Fields

borderPainted

 boolean borderPainted


margin

 Insets margin

Class javax.swing.JMenuItem extends AbstractButton implements Serializable

serialVersionUID: -1681004643499461044L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException
Deserialize this Container:
  1. Read from the stream the default serializable fields.
  2. Read a list of serializable ContainerListeners as optional data. If the list is null, no listeners will be registered.
  3. Read this Container's FocusTraversalPolicy as optional data. If this is null, then this Container will use a DefaultFocusTraversalPolicy.

Parameters:

Throws:
ClassNotFoundException - if deserialization fails
IOException - if the stream fails


writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
Serialize this Container:
  1. Write to the stream the default serializable fields.
  2. Write the list of serializable ContainerListeners as optional data.
  3. Write this Container's FocusTraversalPolicy as optional data.

Parameters:

Throws:
IOException - if the stream fails

Serialized Fields

accelerator

 KeyStroke accelerator
Combination of keyboard keys that can be used to activate this menu item

Class javax.swing.JMenuItem.AccessibleJMenuItem extends AbstractButton.AccessibleAbstractButton implements Serializable

serialVersionUID: 6748924232082076534L

Class javax.swing.JOptionPane extends JComponent implements Serializable

serialVersionUID: 5231143276678566796L

Serialized Fields

icon

 Icon icon
The icon displayed in the dialog/internal frame.


initialSelectionValue

 Object initialSelectionValue
The initial selected value in the input component.


initialValue

 Object initialValue
The object that is initially selected for options.


inputValue

 Object inputValue
The value the user inputs.


message

 Object message
The message displayed in the dialog/internal frame.


messageType

 int messageType
The type of message displayed.


options

 Object[] options
The options (usually buttons) aligned at the bottom for the user to select.


optionType

 int optionType
The type of options to display.


selectionValues

 Object[] selectionValues
The input values the user can select.


value

 Object value
The value returned by selecting an option.


wantsInput

 boolean wantsInput
Whether the Dialog/InternalFrame needs input.

Class javax.swing.JOptionPane.AccessibleJOptionPane extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 686071432213084821L

Class javax.swing.JPanel extends JComponent implements Serializable

serialVersionUID: -7908749299918704233L

Class javax.swing.JPasswordField extends JTextField implements Serializable

serialVersionUID: 353853209832607592L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
writeObject

Parameters:
stream - the stream to write to

Throws:
IOException - if an error occurs

Serialized Fields

echoChar

 char echoChar
echoChar. Default is 0.

Class javax.swing.JPasswordField.AccessibleJPasswordField extends JTextField.AccessibleJTextField implements Serializable

serialVersionUID: -8477039424200681086L

Class javax.swing.JPopupMenu extends JComponent implements Serializable

serialVersionUID: -8336996630009646009L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException
Deserialize this Container:
  1. Read from the stream the default serializable fields.
  2. Read a list of serializable ContainerListeners as optional data. If the list is null, no listeners will be registered.
  3. Read this Container's FocusTraversalPolicy as optional data. If this is null, then this Container will use a DefaultFocusTraversalPolicy.

Parameters:

Throws:
ClassNotFoundException - if deserialization fails
IOException - if the stream fails


writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
Serialize this Container:
  1. Write to the stream the default serializable fields.
  2. Write the list of serializable ContainerListeners as optional data.
  3. Write this Container's FocusTraversalPolicy as optional data.

Parameters:

Throws:
IOException - if the stream fails

Serialized Fields

borderPainted

 boolean borderPainted


label

 String label


margin

 Insets margin


lightWeightPopupEnabled

 boolean lightWeightPopupEnabled
Indicates whether ligthWeight container can be used to display popup menu. This flag is the same as DefaultLightWeightPopupEnabled, but setting this flag can change popup menu after creation of the object


selectionModel

 SingleSelectionModel selectionModel
SelectionModel that keeps track of menu selection.


popupLocation

 Point popupLocation


visible

 boolean visible
True when the object is visible (although it is only showing if all ancestors are likewise visible). For component, this defaults to true.

true if visible

See Also:
Component.isVisible(), Component.setVisible(boolean)

Class javax.swing.JPopupMenu.AccessibleJPopupMenu extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 7423261328879849768L

Class javax.swing.JPopupMenu.Separator extends JSeparator implements Serializable

serialVersionUID: 125301223445282357L

Class javax.swing.JProgressBar extends JComponent implements Serializable

serialVersionUID: 1980046021813598781L

Serialized Fields

orientation

 int orientation
The orientation of the ProgressBar


paintBorder

 boolean paintBorder
Whether borders should be painted.


model

 BoundedRangeModel model
The model describing this ProgressBar.


progressString

 String progressString
The string that is displayed by the ProgressBar.


paintString

 boolean paintString
Whether the string should be painted.


changeListener

 ChangeListener changeListener
The ChangeListener that listens to the model.

Class javax.swing.JProgressBar.AccessibleJProgressBar extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -2938130009392721813L

Class javax.swing.JRadioButton extends JToggleButton implements Serializable

serialVersionUID: 7751949583255506856L

Class javax.swing.JRadioButton.AccessibleJRadioButton extends JToggleButton.AccessibleJToggleButton implements Serializable

serialVersionUID: 4850967637026120674L

Class javax.swing.JRadioButtonMenuItem extends JMenuItem implements Serializable

serialVersionUID: 8482658191548521743L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
Serialize this Container:
  1. Write to the stream the default serializable fields.
  2. Write the list of serializable ContainerListeners as optional data.
  3. Write this Container's FocusTraversalPolicy as optional data.

Parameters:

Throws:
IOException - if the stream fails

Class javax.swing.JRadioButtonMenuItem.AccessibleJRadioButtonMenuItem extends JMenuItem.AccessibleJMenuItem implements Serializable

serialVersionUID: 4381471510145292179L

Class javax.swing.JRootPane extends JComponent implements Serializable

serialVersionUID: 8690748000348575668L

Serialized Fields

glassPane

 Component glassPane
DOCUMENT ME!


layeredPane

 JLayeredPane layeredPane
DOCUMENT ME!


menuBar

 JMenuBar menuBar
DOCUMENT ME!


contentPane

 Container contentPane
DOCUMENT ME!


defaultButton

 JButton defaultButton


windowDecorationStyle

 int windowDecorationStyle

Since:
1.4

Class javax.swing.JRootPane.RootLayout extends Object implements Serializable

serialVersionUID: -4100116998559815027L

Class javax.swing.JScrollBar extends JComponent implements Serializable

serialVersionUID: -8195169869225066566L

Serialized Fields

blockIncrement

 int blockIncrement
How much the thumb moves when moving in a block.


model

 BoundedRangeModel model
The model that holds the scroll bar's data.


orientation

 int orientation
The orientation of the scroll bar.


unitIncrement

 int unitIncrement
How much the thumb moves when moving in a unit.

Class javax.swing.JScrollBar.AccessibleJScrollBar extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -7758162392045586663L

Class javax.swing.JScrollPane extends JComponent implements Serializable

serialVersionUID: 5203525440012340014L

Serialized Fields

columnHeader

 JViewport columnHeader


rowHeader

 JViewport rowHeader


lowerLeft

 Component lowerLeft


lowerRight

 Component lowerRight


upperLeft

 Component upperLeft


upperRight

 Component upperRight


horizontalScrollBar

 JScrollBar horizontalScrollBar


horizontalScrollBarPolicy

 int horizontalScrollBarPolicy


verticalScrollBar

 JScrollBar verticalScrollBar


verticalScrollBarPolicy

 int verticalScrollBarPolicy


viewport

 JViewport viewport


viewportBorder

 Border viewportBorder


wheelScrollingEnabled

 boolean wheelScrollingEnabled


scrollListener

 ChangeListener scrollListener

Class javax.swing.JScrollPane.ScrollBar extends JScrollBar implements Serializable

serialVersionUID: -42032395320987283L

Class javax.swing.JSeparator extends JComponent implements Serializable

serialVersionUID: 125301223445282357L

Class javax.swing.JSeparator.AccessibleJSeparator extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 916332890553201095L

Class javax.swing.JSlider extends JComponent implements Serializable

serialVersionUID: -1441275936141218479L

Serialized Fields

sliderModel

 BoundedRangeModel sliderModel
The model used to describe the slider.


majorTickSpacing

 int majorTickSpacing
The space between major ticks.


minorTickSpacing

 int minorTickSpacing
The space between minor ticks.


snapToTicks

 boolean snapToTicks
Whether the slider snaps its values to ticks.


orientation

 int orientation
The orientation of the slider.


changeListener

 ChangeListener changeListener
The ChangeListener that listens to the model.

Class javax.swing.JSlider.AccessibleJSlider extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -6301740148041106789L

Class javax.swing.JSpinner extends JComponent implements Serializable

serialVersionUID: 3412663575706551720L

Serialized Fields

model

 SpinnerModel model
DOCUMENT ME!


editor

 JComponent editor
DOCUMENT ME!


listener

 ChangeListener listener
DOCUMENT ME!

Class javax.swing.JSpinner.DateEditor extends JSpinner.DefaultEditor implements Serializable

serialVersionUID: -4279356973770397815L

Serialized Fields

dateFormat

 SimpleDateFormat dateFormat
The DateFormat instance used to format the date.

Class javax.swing.JSpinner.DefaultEditor extends JPanel implements Serializable

serialVersionUID: -5317788736173368172L

Serialized Fields

spinner

 JSpinner spinner


ftf

 JFormattedTextField ftf
The JFormattedTextField that backs the editor.

Class javax.swing.JSpinner.NumberEditor extends JSpinner.DefaultEditor implements Serializable

serialVersionUID: 3791956183098282942L

Class javax.swing.JSplitPane extends JComponent implements Serializable

serialVersionUID: -5634142046175988380L

Serialized Fields

continuousLayout

 boolean continuousLayout
Whether the JSplitPane uses continuous layout.


oneTouchExpandable

 boolean oneTouchExpandable
Whether the JSplitPane uses one touch expandable buttons.


dividerSize

 int dividerSize
The size of the divider.


lastDividerLocation

 int lastDividerLocation
The last location of the divider given by the UI.


orientation

 int orientation
The orientation of the JSplitPane.


leftComponent

 Component leftComponent
The component on the top or left.


rightComponent

 Component rightComponent
The component on the right or bottom.

Class javax.swing.JSplitPane.AccessibleJSplitPane extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -1788116871416305366L

Class javax.swing.JTabbedPane extends JComponent implements Serializable

serialVersionUID: 1614381073220130939L

Serialized Fields

changeEvent

 ChangeEvent changeEvent
The changeEvent used to fire changes to listeners.


changeListener

 ChangeListener changeListener
The listener that listens to the model.


model

 SingleSelectionModel model
The model that describes this JTabbedPane.


tabPlacement

 int tabPlacement
The current tabPlacement of the TabbedPane.

Class javax.swing.JTabbedPane.AccessibleJTabbedPane extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 7610530885966830483L

Class javax.swing.JTabbedPane.ModelListener extends Object implements Serializable

serialVersionUID: 497359819958114132L

Class javax.swing.JTable extends JComponent implements Serializable

serialVersionUID: 3876025080382781659L

Serialized Fields

defaultEditorsByColumnClass

 Hashtable defaultEditorsByColumnClass
A table mapping Class objects to TableCellEditor objects. This table is consulted by the FIXME


defaultRenderersByColumnClass

 Hashtable defaultRenderersByColumnClass
A table mapping Class objects to TableCellEditor objects. This table is consulted by the FIXME


editingColumn

 int editingColumn
The column that is edited, -1 if the table is not edited currently.


editingRow

 int editingRow
The row that is edited, -1 if the table is not edited currently.


autoCreateColumnsFromModel

 boolean autoCreateColumnsFromModel
Whether or not the table should automatically compute a matching TableColumnModel and assign it to the columnModel property when the dataModel property is changed.

See Also:
JTable.setModel(TableModel), createColumnsFromModel(), JTable.setColumnModel(TableColumnModel), JTable.setAutoCreateColumnsFromModel(boolean), JTable.getAutoCreateColumnsFromModel()


autoResizeMode

 int autoResizeMode
A numeric code specifying the resizing behavior of the table. Must be one of AUTO_RESIZE_ALL_COLUMNS (the default), AUTO_RESIZE_LAST_COLUMN, AUTO_RESIZE_NEXT_COLUMN, AUTO_RESIZE_SUBSEQUENT_COLUMNS, or AUTO_RESIZE_OFF.

See Also:
JTable.doLayout(), JTable.setAutoResizeMode(int), JTable.getAutoResizeMode()


rowHeight

 int rowHeight
The height in pixels of any row of the table. All rows in a table are of uniform height. This differs from column width, which varies on a per-column basis, and is stored in the individual columns of the columnModel.

See Also:
JTable.getRowHeight(), JTable.setRowHeight(int), TableColumn.getWidth(), TableColumn.setWidth(int)


rowMargin

 int rowMargin
The height in pixels of the gap left between any two rows of the table.

See Also:
JTable.setRowMargin(int), JTable.getRowHeight(), JTable.getIntercellSpacing(), JTable.setIntercellSpacing(Dimension), TableColumnModel.getColumnMargin(), TableColumnModel.setColumnMargin(int)


rowSelectionAllowed

 boolean rowSelectionAllowed
Whether or not the table should allow row selection. If the table allows both row and column selection, it is said to allow "cell selection". Previous versions of the JDK supported cell selection as an independent concept, but it is now represented solely in terms of simultaneous row and column selection.

See Also:
TableColumnModel.getColumnSelectionAllowed(), JTable.setRowSelectionAllowed(boolean), JTable.getRowSelectionAllowed(), JTable.getCellSelectionEnabled(), JTable.setCellSelectionEnabled(boolean)


cellSelectionEnabled

 boolean cellSelectionEnabled

Deprecated. Use rowSelectionAllowed, getColumnSelectionAllowed(), or the combined methods getCellSelectionEnabled() and setCellSelectionEnabled(boolean).


dataModel

 TableModel dataModel
The model for data stored in the table. Confusingly, the published API requires that this field be called dataModel, despite its property name. The table listens to its model as a TableModelListener.

See Also:
JTable.tableChanged(TableModelEvent), TableModel.addTableModelListener(TableModelListener)


columnModel

 TableColumnModel columnModel
A model of various aspects of the columns of the table, not including the data stored in them. The TableColumnModel is principally concerned with holding a set of TableColumn objects, each of which describes the display parameters of a column and the numeric index of the column from the data model which the column is presenting.

The TableColumnModel also contains a ListSelectionModel which indicates which columns are currently selected. This selection model works in combination with the selectionModel of the table itself to specify a table selection: a combination of row and column selections.

Most application programmers do not need to work with this property at all: setting autoCreateColumnsFromModel will construct the columnModel automatically, and the table acts as a facade for most of the interesting properties of the columnModel anyways.

See Also:
JTable.setColumnModel(TableColumnModel), JTable.getColumnModel()


selectionModel

 ListSelectionModel selectionModel
A model of the rows of this table which are currently selected. This model is used in combination with the column selection model held as a member of the columnModel property, to represent the rows and columns (or both: cells) of the table which are currently selected.

See Also:
JTable.rowSelectionAllowed, JTable.setSelectionModel(ListSelectionModel), JTable.getSelectionModel(), TableColumnModel.getSelectionModel(), ListSelectionModel.addListSelectionListener(ListSelectionListener)


accessibleContext

 AccessibleContext accessibleContext
The accessibleContext property.


cellEditor

 TableCellEditor cellEditor
The current cell editor.


dragEnabled

 boolean dragEnabled
Whether or not drag-and-drop is enabled on this table.

See Also:
setDragEnabled(), JTable.getDragEnabled()


gridColor

 Color gridColor
The color to paint the grid lines of the table, when either showHorizontalLines or showVerticalLines is set.

See Also:
JTable.setGridColor(Color), JTable.getGridColor()


preferredViewportSize

 Dimension preferredViewportSize
The size this table would prefer its viewport assume, if it is contained in a JScrollPane.

See Also:
JTable.setPreferredScrollableViewportSize(Dimension), JTable.getPreferredScrollableViewportSize()


selectionBackground

 Color selectionBackground
The color to paint the background of selected cells. Fires a property change event with name JTable when its value changes.

See Also:
JTable.setSelectionBackground(Color), JTable.getSelectionBackground()


selectionForeground

 Color selectionForeground
The color to paint the foreground of selected cells. Fires a property change event with name JTable when its value changes.

See Also:
JTable.setSelectionForeground(Color), JTable.getSelectionForeground()


showHorizontalLines

 boolean showHorizontalLines
The showHorizontalLines property.


showVerticalLines

 boolean showVerticalLines
The showVerticalLines property.


tableHeader

 JTableHeader tableHeader
The tableHeader property.

Class javax.swing.JTextArea extends JTextComponent implements Serializable

serialVersionUID: -6141680179310439825L

Serialized Fields

rows

 int rows
The number of rows used by the component.


columns

 int columns
The number of columns used by the component.


lineWrap

 boolean lineWrap
Whether line wrapping is enabled or not.


tabSize

 int tabSize
The number of characters equal to a tab within the text.


wrapStyleWord

 boolean wrapStyleWord

Class javax.swing.JTextField extends JTextComponent implements Serializable

serialVersionUID: 353853209832607592L

Serialized Fields

columns

 int columns


align

 int align


scrollOffset

 int scrollOffset


action

 Action action

Since:
1.3


actionCommand

 String actionCommand

Since:
1.3


actionPropertyChangeListener

 PropertyChangeListener actionPropertyChangeListener

Class javax.swing.JTextField.AccessibleJTextField extends JTextComponent.AccessibleJTextComponent implements Serializable

serialVersionUID: 8255147276740453036L

Class javax.swing.JTextPane extends JEditorPane implements Serializable

serialVersionUID: 3140472492599046285L

Class javax.swing.JToggleButton extends AbstractButton implements Serializable

serialVersionUID: -3128248873429850443L

Class javax.swing.JToggleButton.AccessibleJToggleButton extends AbstractButton.AccessibleAbstractButton implements Serializable

serialVersionUID: -8652952712161229225L

Class javax.swing.JToggleButton.ToggleButtonModel extends DefaultButtonModel implements Serializable

serialVersionUID: -1589950750899943974L

Class javax.swing.JToolBar extends JComponent implements Serializable

serialVersionUID: -1269915519555129643L

Serialized Fields

orientation

 int orientation
The orientation of the JToolBar.

Class javax.swing.JToolBar.AccessibleJToolBar extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -5516888265903814215L

Class javax.swing.JToolBar.Separator extends JSeparator implements Serializable

serialVersionUID: -1656745644823105219L

Class javax.swing.JToolTip extends JComponent implements Serializable

serialVersionUID: -1138929898906751643L

Serialized Fields

text

 String text
The text to display in the JToolTip.


component

 JComponent component
The JComponent this JToolTip is used for.

Class javax.swing.JToolTip.AccessibleJToolTip extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -6222548177795408476L

Class javax.swing.JTree extends JComponent implements Serializable

serialVersionUID: 7559816092864483649L

Serialized Fields

dragEnabled

 boolean dragEnabled


expandsSelectedPaths

 boolean expandsSelectedPaths


anchorSelectionPath

 TreePath anchorSelectionPath


leadSelectionPath

 TreePath leadSelectionPath


nodeStates

 Hashtable nodeStates


editable

 boolean editable


invokesStopCellEditing

 boolean invokesStopCellEditing


largeModel

 boolean largeModel


rootVisible

 boolean rootVisible


rowHeight

 int rowHeight


scrollsOnExpand

 boolean scrollsOnExpand


showsRootHandles

 boolean showsRootHandles


toggleClickCount

 int toggleClickCount


visibleRowCount

 int visibleRowCount


selectionRedirector

 JTree.TreeSelectionRedirector selectionRedirector
Redirects TreeSelectionEvents so that the source is this JTree.

Class javax.swing.JTree.DynamicUtilTreeNode extends DefaultMutableTreeNode implements Serializable

serialVersionUID: -4298474751201349152L

Serialized Fields

childValue

 Object childValue


loadedChildren

 boolean loadedChildren


hasChildren

 boolean hasChildren
Currently not set or used by this class. It might be set and used in later versions of this class.

Class javax.swing.JTree.EmptySelectionModel extends DefaultTreeSelectionModel implements Serializable

serialVersionUID: -5815023306225701477L

Class javax.swing.JTree.TreeSelectionRedirector extends Object implements Serializable

serialVersionUID: -3505069663646241664L

Class javax.swing.JViewport extends JComponent implements Serializable

serialVersionUID: -6925142919680527970L

Serialized Fields

changeEvent

 ChangeEvent changeEvent


scrollMode

 int scrollMode


scrollUnderway

 boolean scrollUnderway


isViewSizeSet

 boolean isViewSizeSet


extentSize

 Dimension extentSize
The width and height of the Viewport's area in terms of view coordinates. Typically this will be the same as the width and height of the viewport's bounds, unless the viewport transforms units of width and height, which it may do, for example if it magnifies or rotates its view.

See Also:
toViewCoordinates


viewSize

 Dimension viewSize
The width and height of the view in its own coordinate space.


lastPaintPosition

 Point lastPaintPosition


viewListener

 JViewport.ViewListener viewListener
The ViewListener instance.

Class javax.swing.JViewport.ViewListener extends ComponentAdapter implements Serializable

serialVersionUID: -2812489404285958070L

Class javax.swing.JWindow extends Window implements Serializable

serialVersionUID: 5420698392125238833L

Serialized Fields

rootPane

 JRootPane rootPane


rootPaneCheckingEnabled

 boolean rootPaneCheckingEnabled


accessibleContext

 AccessibleContext accessibleContext
The accessible context associated with this component. This is only set by subclasses.

Since:
1.2

the accessibility context

See Also:
Component.getAccessibleContext()


initStageDone

 boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container.

Class javax.swing.KeyStroke extends AWTKeyStroke implements Serializable

serialVersionUID: -9060180771037902530L

Class javax.swing.LayoutFocusTraversalPolicy extends SortingFocusTraversalPolicy implements Serializable

serialVersionUID: 4312146927238881442L

Class javax.swing.OverlayLayout extends Object implements Serializable

serialVersionUID: 18082829169631543L

Serialized Fields

target

 Container target
target


xChildren

 SizeRequirements[] xChildren
xChildren


yChildren

 SizeRequirements[] yChildren
yChildren


xTotal

 SizeRequirements xTotal
xTotal


yTotal

 SizeRequirements yTotal
yTotal

Class javax.swing.ScrollPaneLayout extends Object implements Serializable

serialVersionUID: -4480022884523193743L

Serialized Fields

viewport

 JViewport viewport


vsb

 JScrollBar vsb


hsb

 JScrollBar hsb


rowHead

 JViewport rowHead


colHead

 JViewport colHead


lowerLeft

 Component lowerLeft


lowerRight

 Component lowerRight


upperLeft

 Component upperLeft


upperRight

 Component upperRight


vsbPolicy

 int vsbPolicy


hsbPolicy

 int hsbPolicy

Class javax.swing.ScrollPaneLayout.UIResource extends ScrollPaneLayout implements Serializable

serialVersionUID: -4480022884523193743L

Class javax.swing.SizeRequirements extends Object implements Serializable

serialVersionUID: 9217749429906736553L

Serialized Fields

minimum

 int minimum
The minimum reasonable width or height of a component.


preferred

 int preferred
The preferred width or height of a component.


maximum

 int maximum
The maximum reasonable width or height of a component.


alignment

 float alignment
The horizontal or vertical alignment of a component.

Class javax.swing.SpinnerDateModel extends AbstractSpinnerModel implements Serializable

serialVersionUID: -4802518107105940612L

Serialized Fields

date

 Calendar date


start

 Comparable start


end

 Comparable end


calendarField

 int calendarField

Class javax.swing.SpinnerListModel extends AbstractSpinnerModel implements Serializable

serialVersionUID: 3358804052191994516L

Serialized Fields

list

 List list
The backing list for this model.

Class javax.swing.SpinnerNumberModel extends AbstractSpinnerModel implements Serializable

serialVersionUID: 7279176385485777821L

Serialized Fields

value

 Number value
DOCUMENT ME!


minimum

 Comparable minimum
DOCUMENT ME!


maximum

 Comparable maximum
DOCUMENT ME!


stepSize

 Number stepSize
DOCUMENT ME!

Class javax.swing.Timer extends Object implements Serializable

serialVersionUID: -1116180831621385484L

Serialized Fields

drainer

 Runnable drainer
The encloding class, used with SwingUtilities.invokeLater(Runnable) to invoke the drainEvents().


listenerList

 EventListenerList listenerList
A field to store all listeners who are listening to this timer.


coalesce

 boolean coalesce
true if the timer coalesces events.


repeats

 boolean repeats
true if the timer is firing repetetive events.


running

 boolean running
true if the timer is currently active, firing events as scheduled.


delay

 int delay
The delay between subsequent repetetive events.


initialDelay

 int initialDelay
The initial delay before the first event.


ticks

 int ticks
The number of events that have been already fired by this timer. This is used as a numeric identifier for the next event that would be fired.


waker

 javax.swing.Timer.Waker waker
Stores the thread that posts events to the queue at required time intervals.


queue

 long queue
This object manages a "queue" of virtual actionEvents, maintained as a simple long counter. When the timer expires, a new event is queued, and a dispatcher object is pushed into the system event queue. When the system thread runs the dispatcher, it will fire as many ActionEvents as have been queued, unless the timer is set to coalescing mode, in which case it will fire only one ActionEvent.


queueLock

 Object queueLock
synchronized(queueLock) replaces synchronized(queue) that is not supported by this language.

Class javax.swing.TransferHandler extends Object implements Serializable

serialVersionUID: -967749805571669910L

Serialized Fields

sourceActions

 int sourceActions


visualRepresentation

 Icon visualRepresentation

Class javax.swing.UIDefaults extends Hashtable implements Serializable

serialVersionUID: 7341222528856548117L

Serialized Fields

bundles

 LinkedList bundles
Our ResourceBundles.


defaultLocale

 Locale defaultLocale
The default locale.


propertyChangeSupport

 PropertyChangeSupport propertyChangeSupport
We use this for firing PropertyChangeEvents.

Class javax.swing.UIManager extends Object implements Serializable

serialVersionUID: -5547433830339189365L

Class javax.swing.UnsupportedLookAndFeelException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.swing.ViewportLayout extends Object implements Serializable

serialVersionUID: -788225906076097229L

Package javax.swing.border

Class javax.swing.border.AbstractBorder extends Object implements Serializable

serialVersionUID: -545885975315191844L

Class javax.swing.border.BevelBorder extends AbstractBorder implements Serializable

serialVersionUID: -1034942243356299676L

Serialized Fields

bevelType

 int bevelType
The type of this BevelBorder, which is either RAISED or LOWERED.


highlightOuter

 Color highlightOuter
The outer highlight color, or null to indicate that the color shall be derived from the background of the component whose border is being painted.


highlightInner

 Color highlightInner
The inner highlight color, or null to indicate that the color shall be derived from the background of the component whose border is being painted.


shadowOuter

 Color shadowOuter
The outer shadow color, or null to indicate that the color shall be derived from the background of the component whose border is being painted.


shadowInner

 Color shadowInner
The inner shadow color, or null to indicate that the color shall be derived from the background of the component whose border is being painted.

Class javax.swing.border.CompoundBorder extends AbstractBorder implements Serializable

serialVersionUID: 9054540377030555103L

Serialized Fields

insideBorder

 Border insideBorder
The inside border, which is painted between the bordered Component and the outside border. It is valid for insideBorder to be null.


outsideBorder

 Border outsideBorder
The outside border, which is painted outside both the bordered Component and the inside border. It is valid for outsideBorder to be null.

Class javax.swing.border.EmptyBorder extends AbstractBorder implements Serializable

serialVersionUID: -8116076291731988694L

Serialized Fields

left

 int left
The number of pixels required at the left edge.


right

 int right
The number of pixels required at the right edge.


top

 int top
The number of pixels required at the top edge.


bottom

 int bottom
The number of pixels required at the bottom edge.

Class javax.swing.border.EtchedBorder extends AbstractBorder implements Serializable

serialVersionUID: 4001244046866360638L

Serialized Fields

etchType

 int etchType
The type of this EtchedBorder, which is either RAISED or LOWERED.


highlight

 Color highlight
The highlight color, or null to indicate that the color shall be derived from the background of the enclosed component.


shadow

 Color shadow
The shadow color, or null to indicate that the color shall be derived from the background of the enclosed component.

Class javax.swing.border.LineBorder extends AbstractBorder implements Serializable

serialVersionUID: -787563427772288970L

Serialized Fields

thickness

 int thickness
The width of the line in pixels.


lineColor

 Color lineColor
The color of the line.


roundedCorners

 boolean roundedCorners
Indicates whether the line is drawn with rounded corners (true) or not ((false).

Class javax.swing.border.MatteBorder extends EmptyBorder implements Serializable

serialVersionUID: 4422248989617298224L

Serialized Fields

color

 Color color
The color that is used for filling the border, or null if the border is filled with repetitions of a tile icon.

See Also:
MatteBorder.tileIcon


tileIcon

 Icon tileIcon
The icon is used for filling the border with a tile, or null if the border is filled with a solid color.

See Also:
MatteBorder.color

Class javax.swing.border.SoftBevelBorder extends BevelBorder implements Serializable

serialVersionUID: 5248789787305979975L

Class javax.swing.border.TitledBorder extends AbstractBorder implements Serializable

serialVersionUID: 8012999415147721601L

Serialized Fields

title

 String title
The title, or null to display no title.


border

 Border border
The border underneath the title. If this value is null, the border will be retrieved from the UIManager’s defaults table using the key TitledBorder.border.


titlePosition

 int titlePosition
The vertical position of the title text relative to the border, which is one of ABOVE_TOP, TOP, BELOW_TOP, ABOVE_BOTTOM, BOTTOM, BELOW_BOTTOM, or DEFAULT_POSITION.


titleJustification

 int titleJustification
The horizontal alignment of the title text in relation to the border, which is one of LEFT, CENTER, RIGHT, LEADING, TRAILING, or DEFAULT_JUSTIFICATION.


titleFont

 Font titleFont
The font for displaying the title text. If this value is null, the font will be retrieved from the UIManager’s defaults table using the key TitledBorder.font.


titleColor

 Color titleColor
The color for displaying the title text. If this value is null, the color will be retrieved from the UIManager’s defaults table using the key TitledBorder.titleColor.

Package javax.swing.colorchooser

Class javax.swing.colorchooser.AbstractColorChooserPanel extends JPanel implements Serializable

serialVersionUID: -977469671210173863L

Serialized Fields

chooser

 JColorChooser chooser
The chooser associated with this panel.

Class javax.swing.colorchooser.DefaultColorSelectionModel extends Object implements Serializable

serialVersionUID: -8117143602864778804L

Serialized Fields

selectedColor

 Color selectedColor
The currently selected color.


listenerList

 EventListenerList listenerList
The list of listeners.

Package javax.swing.event

Class javax.swing.event.AncestorEvent extends AWTEvent implements Serializable

serialVersionUID: -8079801679695605002L

Serialized Fields

sourceComponent

 JComponent sourceComponent


ancestor

 Container ancestor


ancestorParent

 Container ancestorParent

Class javax.swing.event.CaretEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Class javax.swing.event.ChangeEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Class javax.swing.event.EventListenerList extends Object implements Serializable

serialVersionUID: -5677132037850737084L

Class javax.swing.event.HyperlinkEvent extends EventObject implements Serializable

serialVersionUID: -2054640811732867012L

Serialized Fields

type

 HyperlinkEvent.EventType type


url

 URL url


description

 String description


element

 Element element

Class javax.swing.event.InternalFrameEvent extends AWTEvent implements Serializable

serialVersionUID: -5204823611874873183L

Class javax.swing.event.ListDataEvent extends EventObject implements Serializable

serialVersionUID: 2510353260071004774L

Serialized Fields

type

 int type


index0

 int index0


index1

 int index1

Class javax.swing.event.ListSelectionEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

firstIndex

 int firstIndex
firstIndex


lastIndex

 int lastIndex
lastIndex


isAdjusting

 boolean isAdjusting
isAdjusting

Class javax.swing.event.MenuDragMouseEvent extends MouseEvent implements Serializable

serialVersionUID: -991214153494842848L

Serialized Fields

path

 MenuElement[] path
path


manager

 MenuSelectionManager manager
manager

Class javax.swing.event.MenuEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Class javax.swing.event.MenuKeyEvent extends KeyEvent implements Serializable

serialVersionUID: -2352130953028126954L

Serialized Fields

path

 MenuElement[] path
path


manager

 MenuSelectionManager manager
manager

Class javax.swing.event.PopupMenuEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Class javax.swing.event.SwingPropertyChangeSupport extends PropertyChangeSupport implements Serializable

serialVersionUID: 7162625831330845068L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
writeObject

Parameters:
stream - TODO

Throws:
IOException - TODO


readObject

private void readObject(ObjectInputStream stream)
            throws ClassNotFoundException,
                   IOException
readObject

Parameters:
stream - TODO

Throws:
ClassNotFoundException - TODO
IOException - TODO

Serialized Fields

propertyListeners

 Hashtable propertyListeners
propertyListeners


source

 Object source
source

Class javax.swing.event.TableColumnModelEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

fromIndex

 int fromIndex
fromIndex


toIndex

 int toIndex
toIndex

Class javax.swing.event.TableModelEvent extends EventObject implements Serializable

serialVersionUID: -7849342674552212824L

Serialized Fields

column

 int column
The column in the table model that the event relates to.


firstRow

 int firstRow
The first row in the table model that the event relates to.


lastRow

 int lastRow
The last row in the table model that the event relates to.


type

 int type
The event type (one of UPDATE, INSERT, DELETE).

Class javax.swing.event.TreeExpansionEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

path

 TreePath path
path

Class javax.swing.event.TreeModelEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

childIndices

 int[] childIndices
childIndices


children

 Object[] children
children


path

 TreePath path
path

Class javax.swing.event.TreeSelectionEvent extends EventObject implements Serializable

serialVersionUID: 5516075349620653480L

Serialized Fields

paths

 TreePath[] paths
paths


areNew

 boolean[] areNew
areNew


oldLeadSelectionPath

 TreePath oldLeadSelectionPath
oldLeadSelectionPath


newLeadSelectionPath

 TreePath newLeadSelectionPath
newLeadSelectionPath

Class javax.swing.event.UndoableEditEvent extends EventObject implements Serializable

serialVersionUID: 4418044561759134484L

Serialized Fields

edit

 UndoableEdit edit
edit

Package javax.swing.plaf

Class javax.swing.plaf.ActionMapUIResource extends ActionMap implements Serializable

serialVersionUID: -6277518704513986346L

Class javax.swing.plaf.BorderUIResource extends Object implements Serializable

serialVersionUID: -3440553684010079691L

Serialized Fields

delegate

 Border delegate
The wrapped border.

Class javax.swing.plaf.BorderUIResource.BevelBorderUIResource extends BevelBorder implements Serializable

serialVersionUID: -1275542891108351642L

Class javax.swing.plaf.BorderUIResource.CompoundBorderUIResource extends CompoundBorder implements Serializable

serialVersionUID: 7550017084975167341L

Class javax.swing.plaf.BorderUIResource.EmptyBorderUIResource extends EmptyBorder implements Serializable

serialVersionUID: -4914187529340071708L

Class javax.swing.plaf.BorderUIResource.EtchedBorderUIResource extends EtchedBorder implements Serializable

serialVersionUID: -8186391754165296656L

Class javax.swing.plaf.BorderUIResource.LineBorderUIResource extends LineBorder implements Serializable

serialVersionUID: -6171232338180172310L

Class javax.swing.plaf.BorderUIResource.MatteBorderUIResource extends MatteBorder implements Serializable

serialVersionUID: -8107923147541851122L

Class javax.swing.plaf.BorderUIResource.TitledBorderUIResource extends TitledBorder implements Serializable

serialVersionUID: 7667113547406407427L

Class javax.swing.plaf.ColorUIResource extends Color implements Serializable

serialVersionUID: 118526816881161077L

Class javax.swing.plaf.ComponentInputMapUIResource extends ComponentInputMap implements Serializable

serialVersionUID: -5429059542008604257L

Class javax.swing.plaf.DimensionUIResource extends Dimension implements Serializable

serialVersionUID: 4723952579491349524L

Class javax.swing.plaf.FontUIResource extends Font implements Serializable

serialVersionUID: -4206021311591459213L

Class javax.swing.plaf.IconUIResource extends Object implements Serializable

serialVersionUID: 3327049506004830542L

Serialized Fields

delegate

 Icon delegate
The icon that is wrapped by this IconUIResource.

Class javax.swing.plaf.InputMapUIResource extends InputMap implements Serializable

serialVersionUID: -5429059542008604257L

Class javax.swing.plaf.InsetsUIResource extends Insets implements Serializable

serialVersionUID: 5622110143266315421L

Package javax.swing.plaf.basic

Class javax.swing.plaf.basic.BasicArrowButton extends JButton implements Serializable

serialVersionUID: -1907255238954382202L

Serialized Fields

direction

 int direction
The direction to point in.

Class javax.swing.plaf.basic.BasicBorders.ButtonBorder extends AbstractBorder implements Serializable

serialVersionUID: -157053874580739687L

Serialized Fields

shadow

 Color shadow
The color for drawing the shaded parts of the border.

See Also:
BasicGraphicsUtils.drawBezel(Graphics,int,int,int,int,boolean,boolean,Color,Color,Color,Color)


darkShadow

 Color darkShadow
The color for drawing the dark shaded parts of the border.

See Also:
BasicGraphicsUtils.drawBezel(Graphics,int,int,int,int,boolean,boolean,Color,Color,Color,Color)


highlight

 Color highlight
The color for drawing the highlighted parts of the border.

See Also:
BasicGraphicsUtils.drawBezel(Graphics,int,int,int,int,boolean,boolean,Color,Color,Color,Color)


lightHighlight

 Color lightHighlight
The color for drawing the bright highlighted parts of the border.

See Also:
BasicGraphicsUtils.drawBezel(Graphics,int,int,int,int,boolean,boolean,Color,Color,Color,Color)

Class javax.swing.plaf.basic.BasicBorders.FieldBorder extends AbstractBorder implements Serializable

serialVersionUID: 949220756998454908L

Serialized Fields

shadow

 Color shadow
The color for drawing the outer half of the top and left edges.


darkShadow

 Color darkShadow
The color for drawing the inner half of the top and left edges.


highlight

 Color highlight
The color for drawing the inner half of the bottom and right edges.


lightHighlight

 Color lightHighlight
The color for drawing the outer half of the bottom and right edges.

Class javax.swing.plaf.basic.BasicBorders.MarginBorder extends AbstractBorder implements Serializable

serialVersionUID: -3035848353448896090L

Class javax.swing.plaf.basic.BasicBorders.MenuBarBorder extends AbstractBorder implements Serializable

serialVersionUID: -6909056571935227506L

Serialized Fields

shadow

 Color shadow
The shadow color, which is used for the upper line of the two-pixel thick bottom edge.


highlight

 Color highlight
The highlight color, which is used for the lower line of the two-pixel thick bottom edge.

Class javax.swing.plaf.basic.BasicBorders.RadioButtonBorder extends BasicBorders.ButtonBorder implements Serializable

serialVersionUID: 1596945751743747369L

Class javax.swing.plaf.basic.BasicBorders.RolloverButtonBorder extends BasicBorders.ButtonBorder implements Serializable

serialVersionUID: 1976364864896996846L

Class javax.swing.plaf.basic.BasicBorders.ToggleButtonBorder extends BasicBorders.ButtonBorder implements Serializable

serialVersionUID: -3528666548001058394L

Class javax.swing.plaf.basic.BasicComboBoxRenderer extends JLabel implements Serializable

serialVersionUID: 5496508283662221534L

Class javax.swing.plaf.basic.BasicComboBoxRenderer.UIResource extends BasicComboBoxRenderer implements Serializable

serialVersionUID: 5496508283662221534L

Class javax.swing.plaf.basic.BasicComboPopup extends JPopupMenu implements Serializable

serialVersionUID: -8336996630009646009L

Serialized Fields

autoscrollTimer

 Timer autoscrollTimer


comboBox

 JComboBox comboBox
ComboBox associated with this popup


hasEntered

 boolean hasEntered
FIXME: Need to document


isAutoScrolling

 boolean isAutoScrolling
Indicates whether the scroll bar located in popup menu with comboBox's list of items is currently autoscrolling. This happens when mouse event originated in the combo box and is dragged outside of its bounds


itemListener

 ItemListener itemListener
ItemListener listening to the selection changes in the combo box


keyListener

 KeyListener keyListener
This listener is not used


list

 JList list
JList which is used to display item is the combo box


listDataListener

 ListDataListener listDataListener
This listener is not used


listMouseListener

 MouseListener listMouseListener
MouseListener listening to mouse events occuring in the combo box's list.


listMouseMotionListener

 MouseMotionListener listMouseMotionListener
MouseMotionListener listening to mouse motion events occuring in the combo box's list


listSelectionListener

 ListSelectionListener listSelectionListener
This listener is not used


mouseListener

 MouseListener mouseListener
MouseListener listening to mouse events occuring in the combo box


mouseMotionListener

 MouseMotionListener mouseMotionListener
MouseMotionListener listening to mouse motion events occuring in the combo box


propertyChangeListener

 PropertyChangeListener propertyChangeListener
PropertyChangeListener listening to changes occuring in the bound properties of the combo box


scrollDirection

 int scrollDirection
Indicates auto scrolling direction


scroller

 JScrollPane scroller
JScrollPane that contains list portion of the combo box


valueIsAdjusting

 boolean valueIsAdjusting
This field is not used

Class javax.swing.plaf.basic.BasicDesktopPaneUI.CloseAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicDesktopPaneUI.MaximizeAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicDesktopPaneUI.MinimizeAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicDesktopPaneUI.NavigateAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicDesktopPaneUI.OpenAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicDirectoryModel extends AbstractListModel implements Serializable

serialVersionUID: -3285184064379168730L

Serialized Fields

contents

 Vector contents
DOCUMENT ME!


directories

 int directories
DOCUMENT ME!


listingMode

 int listingMode
DOCUMENT ME!


filechooser

 JFileChooser filechooser
DOCUMENT ME!


comparator

 Comparator comparator
DOCUMENT ME!

Class javax.swing.plaf.basic.BasicFileChooserUI.ApproveSelectionAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicFileChooserUI.CancelSelectionAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicFileChooserUI.CBLabelRenderer extends JLabel implements Serializable

serialVersionUID: 5496508283662221534L

Class javax.swing.plaf.basic.BasicFileChooserUI.ChangeToParentDirectoryAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicFileChooserUI.GoHomeAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicFileChooserUI.NewFolderAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicFileChooserUI.UpdateAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicIconFactory extends Object implements Serializable

serialVersionUID: 5605588811185324383L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane extends JComponent implements Serializable

serialVersionUID: -7908749299918704233L

Serialized Fields

closeAction

 Action closeAction
The action associated with closing the JInternalFrame.


iconifyAction

 Action iconifyAction
The action associated with iconifying the JInternalFrame.


maximizeAction

 Action maximizeAction
The action associated with maximizing the JInternalFrame.


moveAction

 Action moveAction
The action associated with moving the JInternalFrame.


restoreAction

 Action restoreAction
The action associated with restoring the JInternalFrame.


sizeAction

 Action sizeAction
The action associated with resizing the JInternalFrame.


closeButton

 JButton closeButton
The button that closes the JInternalFrame.


iconButton

 JButton iconButton
The button that iconifies the JInternalFrame.


maxButton

 JButton maxButton
The button that maximizes the JInternalFrame.


activeBGColor

 Color activeBGColor
Active background color.


activeFGColor

 Color activeFGColor
Active foreground color.


inactiveBGColor

 Color inactiveBGColor
Inactive background color.


inactiveFGColor

 Color inactiveFGColor
Inactive foreground color.


minIcon

 Icon minIcon
The icon displayed in the restore button.


maxIcon

 Icon maxIcon
The icon displayed in the maximize button.


iconIcon

 Icon iconIcon
The icon displayed in the iconify button.


frame

 JInternalFrame frame
The JInternalFrame that this TitlePane is used in.


menuBar

 JMenuBar menuBar
The JMenuBar that is located at the top left of the Title Pane.


windowMenu

 JMenu windowMenu
The JMenu inside the menuBar.


notSelectedTextColor

 Color notSelectedTextColor
The text color of the TitlePane when the JInternalFrame is not selected.


notSelectedTitleColor

 Color notSelectedTitleColor
The background color of the TitlePane when the JInternalFrame is not selected.


selectedTextColor

 Color selectedTextColor
The text color of the titlePane when the JInternalFrame is selected.


selectedTitleColor

 Color selectedTitleColor
The background color of the TitlePane when the JInternalFrame is selected.


propertyChangeListener

 PropertyChangeListener propertyChangeListener
The Property Change listener that listens to the JInternalFrame.

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.CloseAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.IconifyAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.MaximizeAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.MoveAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.RestoreAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.SizeAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.SystemMenuBar extends JMenuBar implements Serializable

serialVersionUID: -8191026883931977036L

Class javax.swing.plaf.basic.BasicLookAndFeel extends LookAndFeel implements Serializable

serialVersionUID: -6096995660290287879L

Class javax.swing.plaf.basic.BasicSplitPaneDivider extends Container implements Serializable

serialVersionUID: 1463404307042803342L

Serialized Fields

dragger

 BasicSplitPaneDivider.DragController dragger
An object that performs the tasks associated with an ongoing drag operation, or null if the user is currently not dragging the divider.


splitPaneUI

 BasicSplitPaneUI splitPaneUI
The delegate object that is responsible for the UI of the JSplitPane that contains this divider.


dividerSize

 int dividerSize
The thickness of the divider in pixels.


hiddenDivider

 Component hiddenDivider
A divider that is used for layout purposes.


splitPane

 JSplitPane splitPane
The JSplitPane containing this divider.


mouseHandler

 BasicSplitPaneDivider.MouseHandler mouseHandler
The listener for handling mouse events from both the divider and the containing JSplitPane.

The reason for also handling MouseEvents from the containing JSplitPane is that users should be able to start a drag gesture from inside the JSplitPane, but slightly outisde the divider.


orientation

 int orientation
The current orientation of the containing JSplitPane, which is either JSplitPane.HORIZONTAL_SPLIT or JSplitPane.VERTICAL_SPLIT.


leftButton

 JButton leftButton
The button for showing and hiding the left (or top) component of the JSplitPane.


rightButton

 JButton rightButton
The button for showing and hiding the right (or bottom) component of the JSplitPane.


border

 Border border
The border of this divider. Typically, this will be an instance of javax.swing.plaf.basic.BasicBorders.SplitPaneDividerBorder.

See Also:
BasicSplitPaneDivider.getBorder(), BasicSplitPaneDivider.setBorder(Border)

Class javax.swing.plaf.basic.BasicTextUI.BasicCaret extends DefaultCaret implements Serializable

serialVersionUID: 228155774675466193L

Class javax.swing.plaf.basic.BasicToolBarUI.DragWindow extends Window implements Serializable

serialVersionUID: 4497834738069338734L

Serialized Fields

borderColor

 Color borderColor
The current border color. It changes depending on whether the JToolBar is over a place that allows it to dock.


offset

 Point offset
The between the mouse and the top left corner of the window.

Class javax.swing.plaf.basic.BasicTreeUI.TreeCancelEditingAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicTreeUI.TreeHomeAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

direction

 int direction
direction is either home or end

Class javax.swing.plaf.basic.BasicTreeUI.TreeIncrementAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

direction

 int direction
Specifies the direction to adjust the selection by.

Class javax.swing.plaf.basic.BasicTreeUI.TreePageAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

direction

 int direction
Specifies the direction to adjust the selection by.

Class javax.swing.plaf.basic.BasicTreeUI.TreeToggleAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.plaf.basic.BasicTreeUI.TreeTraverseAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

direction

 int direction
Determines direction to traverse, 1 means expand, -1 means collapse.

Class javax.swing.plaf.basic.DefaultMenuLayout extends BoxLayout implements Serializable

serialVersionUID: -2474455742719112368L

Package javax.swing.plaf.metal

Class javax.swing.plaf.metal.MetalBorders.MetalButtonBorder extends AbstractBorder implements Serializable

serialVersionUID: -545885975315191844L

Class javax.swing.plaf.metal.MetalBorders.PopupMenuBorder extends AbstractBorder implements Serializable

serialVersionUID: -545885975315191844L

Class javax.swing.plaf.metal.MetalBorders.ScrollPaneBorder extends AbstractBorder implements Serializable

serialVersionUID: -545885975315191844L

Class javax.swing.plaf.metal.MetalIconFactory extends Object implements Serializable

Class javax.swing.plaf.metal.MetalIconFactory.FileIcon16 extends Object implements Serializable

Class javax.swing.plaf.metal.MetalIconFactory.FolderIcon16 extends Object implements Serializable

Class javax.swing.plaf.metal.MetalIconFactory.TreeControlIcon extends Object implements Serializable

Serialized Fields

isLight

 boolean isLight
???.


collapsed

 boolean collapsed
A flag that controls whether or not the icon is collapsed.

Class javax.swing.plaf.metal.MetalIconFactory.TreeFolderIcon extends MetalIconFactory.FolderIcon16 implements Serializable

Class javax.swing.plaf.metal.MetalIconFactory.TreeLeafIcon extends MetalIconFactory.FileIcon16 implements Serializable

Class javax.swing.plaf.metal.MetalLookAndFeel extends BasicLookAndFeel implements Serializable

serialVersionUID: 6680646159193457980L

Serialized Fields

LAF_defaults

 UIDefaults LAF_defaults
The look and feel defaults.

Package javax.swing.table

Class javax.swing.table.AbstractTableModel extends Object implements Serializable

serialVersionUID: -5798593159423650347L

Serialized Fields

listenerList

 EventListenerList listenerList
Storage for the listeners registered with this model.

Class javax.swing.table.DefaultTableCellRenderer extends JLabel implements Serializable

serialVersionUID: 7878911414715528324L

Class javax.swing.table.DefaultTableCellRenderer.UIResource extends DefaultTableCellRenderer implements Serializable

serialVersionUID: 7878911414715528324L

Class javax.swing.table.DefaultTableColumnModel extends Object implements Serializable

serialVersionUID: 6580012493508960512L

Serialized Fields

tableColumns

 Vector tableColumns
Columns that this model keeps track of.


selectionModel

 ListSelectionModel selectionModel
Selection Model that keeps track of columns selection


columnMargin

 int columnMargin
Space between two columns. By default it is set to 1


listenerList

 EventListenerList listenerList
listenerList keeps track of all listeners registered with this model


columnSelectionAllowed

 boolean columnSelectionAllowed
Indicates whether columns can be selected


totalColumnWidth

 int totalColumnWidth
Total width of all the columns in this model

Class javax.swing.table.DefaultTableModel extends AbstractTableModel implements Serializable

serialVersionUID: 6680042567037222321L

Serialized Fields

dataVector

 Vector dataVector
Storage for the rows in the table (each row is itself a Vector).


columnIdentifiers

 Vector columnIdentifiers
Storage for the column identifiers.

Class javax.swing.table.JTableHeader extends JComponent implements Serializable

serialVersionUID: 5144633983372967710L

Serialized Fields

accessibleContext

 AccessibleContext accessibleContext
The accessibleContext property.


columnModel

 TableColumnModel columnModel
The columnModel property.


draggedColumn

 TableColumn draggedColumn
The draggedColumn property.


draggedDistance

 int draggedDistance
The draggedDistance property.


opaque

 boolean opaque
The opaque property.


reorderingAllowed

 boolean reorderingAllowed
The reorderingAllowed property.


resizingAllowed

 boolean resizingAllowed
The resizingAllowed property.


resizingColumn

 TableColumn resizingColumn
The resizingColumn property.


table

 JTable table
The table property.


updateTableInRealTime

 boolean updateTableInRealTime
The updateTableInRealTime property.


cellRenderer

 TableCellRenderer cellRenderer

Class javax.swing.table.JTableHeader.AccessibleJTableHeader extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: -7047089700479897799L

Class javax.swing.table.TableColumn extends Object implements Serializable

serialVersionUID: -6113660025878112608L

Serialized Fields

modelIndex

 int modelIndex
The index of the corresponding column in the table model.


identifier

 Object identifier
The identifier for the column.


width

 int width
The width.


minWidth

 int minWidth
The minimum width.


preferredWidth

 int preferredWidth
The preferred width.


maxWidth

 int maxWidth
The maximum width.


headerRenderer

 TableCellRenderer headerRenderer
headerRenderer


headerValue

 Object headerValue
The header value.


cellRenderer

 TableCellRenderer cellRenderer
cellRenderer


cellEditor

 TableCellEditor cellEditor
cellEditor


isResizable

 boolean isResizable
isResizable


changeSupport

 SwingPropertyChangeSupport changeSupport
changeSupport

Package javax.swing.text

Class javax.swing.text.AbstractDocument extends Object implements Serializable

serialVersionUID: -116069779446114664L

Serialized Fields

content

 AbstractDocument.Content content


context

 AbstractDocument.AttributeContext context


documentFilter

 DocumentFilter documentFilter


properties

 Dictionary properties
The documents properties.


listenerList

 EventListenerList listenerList

Class javax.swing.text.AbstractDocument.AbstractElement extends Object implements Serializable

serialVersionUID: 1265312733007397733L

Serialized Fields

count

 int count


offset

 int offset


attributes

 AttributeSet attributes


element_parent

 Element element_parent


tree_parent

 TreeNode tree_parent


tree_children

 Vector tree_children

Class javax.swing.text.AbstractDocument.BranchElement extends AbstractDocument.AbstractElement implements Serializable

serialVersionUID: -8595176318868717313L

Serialized Fields

children

 Element[] children

Class javax.swing.text.AbstractDocument.DefaultDocumentEvent extends CompoundEdit implements Serializable

serialVersionUID: -7406103236022413522L

Serialized Fields

offset

 int offset


length

 int length


type

 DocumentEvent.EventType type

Class javax.swing.text.AbstractDocument.ElementEdit extends AbstractUndoableEdit implements Serializable

serialVersionUID: -1216620962142928304L

Serialized Fields

elem

 Element elem


index

 int index


removed

 Element[] removed


added

 Element[] added

Class javax.swing.text.AbstractDocument.LeafElement extends AbstractDocument.AbstractElement implements Serializable

serialVersionUID: 5115368706941283802L

Serialized Fields

start

 int start


end

 int end

Class javax.swing.text.BadLocationException extends Exception implements Serializable

serialVersionUID: -7712259886815656766L

Serialized Fields

offset

 int offset

Class javax.swing.text.ChangedCharSetException extends IOException implements Serializable

serialVersionUID: 9119851554465432389L

Serialized Fields

m_charSetSpec

 String m_charSetSpec
The char set specification.


m_charSetKey

 boolean m_charSetKey
The char set key.

Class javax.swing.text.DateFormatter extends InternationalFormatter implements Serializable

serialVersionUID: 5423279572591848797L

Class javax.swing.text.DefaultCaret extends Rectangle implements Serializable

serialVersionUID: 228155774675466193L

Serialized Fields

changeEvent

 ChangeEvent changeEvent


listenerList

 EventListenerList listenerList


textComponent

 JTextComponent textComponent


selectionVisible

 boolean selectionVisible


blinkRate

 int blinkRate


dot

 int dot


mark

 int mark


magicCaretPosition

 Point magicCaretPosition


visible

 boolean visible


highlightEntry

 Object highlightEntry

Class javax.swing.text.DefaultEditorKit extends EditorKit implements Serializable

serialVersionUID: 9017245433028523428L

Class javax.swing.text.DefaultEditorKit.BeepAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultEditorKit.CopyAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultEditorKit.CutAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultEditorKit.DefaultKeyTypedAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultEditorKit.InsertBreakAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultEditorKit.InsertContentAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultEditorKit.InsertTabAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultEditorKit.PasteAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.DefaultFormatter extends JFormattedTextField.AbstractFormatter implements Serializable

serialVersionUID: -7369196326612908900L

Serialized Fields

commitsOnValidEdit

 boolean commitsOnValidEdit
Indicates if the value should be committed after every valid modification of the Document.


overwriteMode

 boolean overwriteMode
If true newly inserted characters overwrite existing values, otherwise insertion is done the normal way.


allowsInvalid

 boolean allowsInvalid
If true invalid edits are allowed for a limited time.


valueClass

 Class valueClass
The class that is used for values.

Class javax.swing.text.DefaultStyledDocument extends AbstractDocument implements Serializable

serialVersionUID: -116069779446114664L

Serialized Fields

buffer

 DefaultStyledDocument.ElementBuffer buffer

Class javax.swing.text.DefaultStyledDocument.ElementBuffer extends Object implements Serializable

Serialized Fields

root

 Element root

Class javax.swing.text.EditorKit extends Object implements Serializable

serialVersionUID: -5044124649345887822L

Class javax.swing.text.GapContent extends Object implements Serializable

serialVersionUID: 8374645204155842629L

Serialized Fields

buffer

 char[] buffer
The text buffer.


gapStart

 int gapStart
The index of the first character of the gap.


gapEnd

 int gapEnd
The index of the character after the last character of the gap.

Class javax.swing.text.InternationalFormatter extends DefaultFormatter implements Serializable

serialVersionUID: 6941977820906408656L

Serialized Fields

format

 Format format
The format that handles value to string conversion.


minimum

 Comparable minimum
The minimal permissable value.


maximum

 Comparable maximum
The maximal permissable value.

Class javax.swing.text.JTextComponent extends JComponent implements Serializable

serialVersionUID: -8796518220218978795L

Serialized Fields

keymap

 Keymap keymap


focusAccelerator

 char focusAccelerator


navigationFilter

 NavigationFilter navigationFilter


caretBlinkTimer

 javax.swing.text.JTextComponent.CaretBlinkTimer caretBlinkTimer


doc

 Document doc


caret

 Caret caret


editable

 boolean editable


highlighter

 Highlighter highlighter


caretColor

 Color caretColor


disabledTextColor

 Color disabledTextColor


selectedTextColor

 Color selectedTextColor


selectionColor

 Color selectionColor


margin

 Insets margin


dragEnabled

 boolean dragEnabled

Class javax.swing.text.JTextComponent.AccessibleJTextComponent extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 7664188944091413696L

Class javax.swing.text.PlainDocument extends AbstractDocument implements Serializable

serialVersionUID: 4758290289196893664L

Serialized Fields

rootElement

 AbstractDocument.BranchElement rootElement


tabSize

 int tabSize

Class javax.swing.text.SimpleAttributeSet extends Object implements Serializable

Serialized Fields

tab

 Hashtable tab

Class javax.swing.text.StringContent extends Object implements Serializable

Serialized Fields

content

 char[] content


count

 int count


positions

 Vector positions

Class javax.swing.text.StyleContext extends Object implements Serializable

Serialized Fields

defaultStyle

 StyleContext.NamedStyle defaultStyle
The default style for this style context.


listenerList

 EventListenerList listenerList


styleTable

 Hashtable styleTable

Class javax.swing.text.StyleContext.NamedStyle extends Object implements Serializable

Serialized Fields

changeEvent

 ChangeEvent changeEvent


listenerList

 EventListenerList listenerList


attributes

 AttributeSet attributes


name

 String name

Class javax.swing.text.StyledEditorKit extends DefaultEditorKit implements Serializable

serialVersionUID: 7002391892985555948L

Serialized Fields

currentRun

 Element currentRun
currentRun


currentParagraph

 Element currentParagraph
currentParagraph


inputAttributes

 MutableAttributeSet inputAttributes
inputAttributes

Class javax.swing.text.StyledEditorKit.AlignmentAction extends StyledEditorKit.StyledTextAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

a

 int a
a

Class javax.swing.text.StyledEditorKit.BoldAction extends StyledEditorKit.StyledTextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.StyledEditorKit.FontFamilyAction extends StyledEditorKit.StyledTextAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

family

 String family
family

Class javax.swing.text.StyledEditorKit.FontSizeAction extends StyledEditorKit.StyledTextAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

size

 int size
size

Class javax.swing.text.StyledEditorKit.ForegroundAction extends StyledEditorKit.StyledTextAction implements Serializable

serialVersionUID: -6803159439231523484L

Serialized Fields

fg

 Color fg
fg

Class javax.swing.text.StyledEditorKit.ItalicAction extends StyledEditorKit.StyledTextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.StyledEditorKit.StyledTextAction extends TextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.StyledEditorKit.UnderlineAction extends StyledEditorKit.StyledTextAction implements Serializable

serialVersionUID: -6803159439231523484L

Class javax.swing.text.TabSet extends Object implements Serializable

Serialized Fields

tabs

 TabStop[] tabs

Class javax.swing.text.TabStop extends Object implements Serializable

Serialized Fields

pos

 float pos


align

 int align


leader

 int leader

Class javax.swing.text.TextAction extends AbstractAction implements Serializable

serialVersionUID: -6803159439231523484L

Package javax.swing.text.html

Class javax.swing.text.html.HTML.Attribute extends Object implements Serializable

Serialized Fields

name

 String name

Class javax.swing.text.html.HTML.Tag extends Object implements Serializable

Serialized Fields

name

 String name


flags

 int flags

Class javax.swing.text.html.HTML.UnknownTag extends HTML.Tag implements Serializable

serialVersionUID: -1534369342247250625L

Class javax.swing.text.html.HTMLDocument extends DefaultStyledDocument implements Serializable

serialVersionUID: -116069779446114664L

Class javax.swing.text.html.HTMLEditorKit extends StyledEditorKit implements Serializable

serialVersionUID: 8751997116710384592L

Class javax.swing.text.html.HTMLFrameHyperlinkEvent extends HyperlinkEvent implements Serializable

serialVersionUID: -2054640811732867012L

Serialized Fields

target_frame

 String target_frame

Package javax.swing.text.html.parser

Class javax.swing.text.html.parser.AttributeList extends Object implements Serializable

serialVersionUID: -1361214058742015233L

Serialized Fields

next

 AttributeList next
The value of ( = pointer to ) the next attribute in the linked list, storing all attributes of some Element. Contains null for the last attribute.


name

 String name
The name of the attribute. The attribute names are case insensitive.


value

 String value
The default value of this attribute. Equals to null if no default value is specified.


values

 Vector values
The explicit set of the allowed values of this attribute. Equals to null, if this parameter was not specified. Values, defined in DTD, are case insensitive.


modifier

 int modifier
The modifier of this attribute. This field contains one of the following DTD constants:
  • REQUIRED if the attribute value is always required,
  • IMPLIED if the user agent must supply the default value itself,
  • FIXED if the attribute value is fixed to some value and cannot be changed.
  • DEFAULT if the attribute default value has been supplied.
  • CURRENT the value that at any point in the document is the last value supplied for that element. A value is required to be supplied for the first* occurrence of an element
  • CONREF specifies the IDREF value of the reference to content in another location of the document. The element with this attribute is empty, the content from that another location must be used instead.


type

 int type
The type of the attribute. The possible values of this field (NUMBER, NAME, ID, CDATA and so on) are defined in DTDConstants.

Class javax.swing.text.html.parser.ContentModel extends Object implements Serializable

serialVersionUID: -1130825523866321257L

Serialized Fields

next

 ContentModel next
The next content model model ( = pointer to the next element of the linked list) for the binary expression (',','&' or '|'). Null for the last element in the list.


content

 Object content
The document content, containing either Element or the enclosed content model (that would be in the parentheses in BNF expression).


type

 int type
Specifies the BNF operation between this node and the node, stored in the field next (or for this node, if it is an unary operation.

Class javax.swing.text.html.parser.Element extends Object implements Serializable

serialVersionUID: -6717939384601675586L

Serialized Fields

atts

 AttributeList atts
The element attributes.


exclusions

 BitSet exclusions
Contains refernces to elements that must NOT occur inside this element, at any level of hierarchy.


inclusions

 BitSet inclusions
Contains refernces to elements that must CAN occur inside this element, at any level of hierarchy.


content

 ContentModel content
The content model, defining elements, entities and DTD text that may/may not occur inside this element.


data

 Object data
A field to store additional user data for this Element.


name

 String name
The element name.


oEnd

 boolean oEnd
True is this element need not to have the closing tag, false otherwise. The HTML 4.0 definition specifies that some elements (like <hr>are not required to have the end tags.


oStart

 boolean oStart
True is this element need not to have the starting tag, false otherwise. The HTML 4.0 definition specifies that some elements (like <head> or <body>) are not required to have the start tags.


index

 int index
This field contains the unique integer identifier of this Element, used to refer the element (more exactly, the element flag) in inclusions and exclusions bit set.


type

 int type
The element type, containing value, defined in DTDConstants. In this implementation, the element type can be CDATA, RCDATA, EMPTY or ANY.

Class javax.swing.text.html.parser.Entity extends Object implements Serializable

Serialized Fields

name

 String name
The entity name.


data

 char[] data
The entity data


type

 int type
The entity type.


sdata

 String sdata
String representation of the entity data.

Class javax.swing.text.html.parser.ParserDelegator extends HTMLEditorKit.Parser implements Serializable

serialVersionUID: -1276686502624777206L

Serialized Fields

callBack

 HTMLEditorKit.ParserCallback callBack
The callback. This is package-private to avoid an accessor method.


gnu

 javax.swing.text.html.parser.ParserDelegator.gnuParser gnu
The reference to the working class of HTML parser that is actually used to parse the document. This is package-private to avoid an accessor method.

Package javax.swing.text.rtf

Class javax.swing.text.rtf.RTFEditorKit extends StyledEditorKit implements Serializable

serialVersionUID: 7002391892985555948L

Package javax.swing.tree

Class javax.swing.tree.DefaultMutableTreeNode extends Object implements Serializable

serialVersionUID: -4298474751201349152L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
            throws IOException
writeObject

Parameters:
stream - the output stream

Throws:
IOException - If an error occurs


readObject

private void readObject(ObjectInputStream stream)
            throws IOException,
                   ClassNotFoundException
readObject

Parameters:
stream - the input stream

Throws:
IOException - If an error occurs
ClassNotFoundException - TODO

Serialized Fields

parent

 MutableTreeNode parent
parent


children

 Vector children
children


allowsChildren

 boolean allowsChildren
allowsChildren

Class javax.swing.tree.DefaultTreeCellEditor.DefaultTextField extends JTextField implements Serializable

serialVersionUID: 353853209832607592L

Serialized Fields

border

 Border border
border

Class javax.swing.tree.DefaultTreeCellEditor.EditorContainer extends Container implements Serializable

serialVersionUID: 4613797578919906343L

Class javax.swing.tree.DefaultTreeCellRenderer extends JLabel implements Serializable

serialVersionUID: 5496508283662221534L

Serialized Fields

selected

 boolean selected
selected


hasFocus

 boolean hasFocus
hasFocus


drawsFocusBorderAroundIcon

 boolean drawsFocusBorderAroundIcon
drawsFocusBorderAroundIcon


textSelectionColor

 Color textSelectionColor
textSelectionColor


textNonSelectionColor

 Color textNonSelectionColor
textNonSelectionColor


backgroundSelectionColor

 Color backgroundSelectionColor
backgroundSelectionColor


backgroundNonSelectionColor

 Color backgroundNonSelectionColor
backgroundNonSelectionColor


borderSelectionColor

 Color borderSelectionColor
borderSelectionColor

Class javax.swing.tree.DefaultTreeModel extends Object implements Serializable

serialVersionUID: -2621068368932566998L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream value0)
            throws IOException
writeObject

Parameters:
value0 - TODO

Throws:
IOException - TODO


readObject

private void readObject(ObjectInputStream value0)
            throws IOException,
                   ClassNotFoundException
readObject

Parameters:
value0 - TODO

Throws:
IOException - TODO
ClassNotFoundException - TODO

Serialized Fields

root

 TreeNode root
root


listenerList

 EventListenerList listenerList
listenerList


asksAllowsChildren

 boolean asksAllowsChildren
asksAllowsChildren

Class javax.swing.tree.DefaultTreeSelectionModel extends Object implements Serializable

serialVersionUID: 3288129636638950196L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream value0)
            throws IOException
writeObject

Parameters:
value0 - TODO

Throws:
IOException - TODO


readObject

private void readObject(ObjectInputStream value0)
            throws IOException,
                   ClassNotFoundException
readObject

Parameters:
value0 - TODO

Throws:
IOException - TODO
ClassNotFoundException - TODO

Serialized Fields

changeSupport

 SwingPropertyChangeSupport changeSupport
Our Swing property change support.


selection

 TreePath[] selection
The current selection.


listenerList

 EventListenerList listenerList
Our TreeSelectionListeners.


listSelectionModel

 DefaultListSelectionModel listSelectionModel
The current listSelectionModel.


selectionMode

 int selectionMode
The current selection mode.


leadPath

 TreePath leadPath
The path that has been added last.


leadIndex

 int leadIndex
The index of the last added path.


leadRow

 int leadRow
The row of the last added path according to the RowMapper.

Class javax.swing.tree.ExpandVetoException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

event

 TreeExpansionEvent event
event

Class javax.swing.tree.TreePath extends Object implements Serializable

serialVersionUID: 4380036194768077479L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream value0)
            throws IOException
writeObject

Parameters:
value0 - TODO

Throws:
IOException - TODO


readObject

private void readObject(ObjectInputStream value0)
            throws IOException,
                   ClassNotFoundException
readObject

Parameters:
value0 - TODO

Throws:
IOException - TODO
ClassNotFoundException - TODO

Serialized Fields

path

 Object[] path
path

Package javax.swing.undo

Class javax.swing.undo.AbstractUndoableEdit extends Object implements Serializable

serialVersionUID: 580150227676302096L

Serialized Fields

hasBeenDone

 boolean hasBeenDone
Indicates whether this editing action has been executed. A value of true means that the action was performed, or that a redo operation was successful. A value of false means that the action has not yet performed, or that an undo operation was successful.


alive

 boolean alive
Indicates whether this editing action is still alive. The value is set to true by the constructor, and to false by the die() method.

Class javax.swing.undo.CannotRedoException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Class javax.swing.undo.CannotUndoException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Class javax.swing.undo.CompoundEdit extends AbstractUndoableEdit implements Serializable

serialVersionUID: -6512679249930119683L

Serialized Fields

edits

 Vector edits
The UndoableEdits being combined into a compound editing action.


inProgress

 boolean inProgress
Indicates whether the creation of this CompoundEdit is still in progress. Initially, the value of this flag is true. The end() method changes the flag to false.

Class javax.swing.undo.StateEdit extends AbstractUndoableEdit implements Serializable

serialVersionUID: 580150227676302096L

Serialized Fields

object

 StateEditable object
The object which is being edited by this StateEdit.


preState

 Hashtable preState
The state of object at the time of constructing this StateEdit.


postState

 Hashtable postState
The state of object at the time when end() was called.


undoRedoName

 String undoRedoName
A human-readable name for this edit action.

Class javax.swing.undo.UndoManager extends CompoundEdit implements Serializable

serialVersionUID: -2077529998244066750L

Serialized Fields

indexOfNextAdd

 int indexOfNextAdd
An index into the inherited UndoManager Vector that indicates at which position newly added editing actions would get inserted.

Normally, the value of indexOfNextAdd equals the number of UndoableEdits stored by this UndoManager, i.e. edits.size(). For each call to undo(), indexOfNextAdd is decremented by one. For each call to redo(), it is incremented again.


limit

 int limit
The maximum number of UndoableEdits stored by this UndoManager.

Package javax.transaction

Class javax.transaction.HeuristicCommitException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.transaction.HeuristicMixedException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.transaction.HeuristicRollbackException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.transaction.InvalidTransactionException extends RemoteException implements Serializable

serialVersionUID: -5148567311918794206L

Class javax.transaction.NotSupportedException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.transaction.RollbackException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.transaction.SystemException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

errorCode

 int errorCode

Class javax.transaction.TransactionRequiredException extends RemoteException implements Serializable

serialVersionUID: -5148567311918794206L

Class javax.transaction.TransactionRolledbackException extends RemoteException implements Serializable

serialVersionUID: -5148567311918794206L

Package javax.transaction.xa

Class javax.transaction.xa.XAException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

errorCode

 int errorCode

Package javax.xml.datatype

Class javax.xml.datatype.DatatypeConfigurationException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Package javax.xml.parsers

Class javax.xml.parsers.FactoryConfigurationError extends Error implements Serializable

serialVersionUID: 4980196508277280342L

Serialized Fields

exception

 Exception exception
The underlying cause of this exception, if any.

Class javax.xml.parsers.ParserConfigurationException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Package javax.xml.transform

Class javax.xml.transform.TransformerConfigurationException extends TransformerException implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

locator

 SourceLocator locator

Class javax.xml.transform.TransformerException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

locator

 SourceLocator locator


cause

 Throwable cause

Class javax.xml.transform.TransformerFactoryConfigurationError extends Error implements Serializable

serialVersionUID: 4980196508277280342L

Serialized Fields

exception

 Exception exception

Package javax.xml.xpath

Class javax.xml.xpath.XPathException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

cause

 Throwable cause
The cause of the throwable, including null for an unknown or non-chained cause. This may only be set once; so the field is set to this until initialized.

Since:
1.4

the cause, or null if unknown, or this if not yet set

Class javax.xml.xpath.XPathExpressionException extends XPathException implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.xml.xpath.XPathFactoryConfigurationException extends XPathException implements Serializable

serialVersionUID: -3387516993124229948L

Class javax.xml.xpath.XPathFunctionException extends XPathExpressionException implements Serializable

serialVersionUID: -3387516993124229948L

Package org.ietf.jgss

Class org.ietf.jgss.GSSException extends Exception implements Serializable

serialVersionUID: -2706218945227726672L

Serialized Fields

major

 int major


minor

 int minor


minorString

 String minorString


messages

 ResourceBundle messages

Package org.omg.CORBA

Class org.omg.CORBA.Any extends Object implements Serializable

serialVersionUID: 1217179597823814463L

Class org.omg.CORBA.BAD_CONTEXT extends SystemException implements Serializable

serialVersionUID: -5025677944847478264L

Class org.omg.CORBA.BAD_INV_ORDER extends SystemException implements Serializable

serialVersionUID: 7273325995832240406L

Class org.omg.CORBA.BAD_OPERATION extends SystemException implements Serializable

serialVersionUID: 1654621651720499682L

Class org.omg.CORBA.BAD_PARAM extends SystemException implements Serializable

serialVersionUID: 1917109334939470379L

Class org.omg.CORBA.BAD_TYPECODE extends SystemException implements Serializable

serialVersionUID: 6193364410915696901L

Class org.omg.CORBA.Bounds extends UserException implements Serializable

serialVersionUID: -6594940734566091244L

Class org.omg.CORBA.CompletionStatus extends Object implements Serializable

serialVersionUID: -9047319660881406859L

Serialized Fields

_value

 int _value

Class org.omg.CORBA.COMM_FAILURE extends SystemException implements Serializable

serialVersionUID: 294856734784364267L

Class org.omg.CORBA.DATA_CONVERSION extends SystemException implements Serializable

serialVersionUID: 1874869932271600956L

Class org.omg.CORBA.DefinitionKind extends Object implements Serializable

serialVersionUID: -8601167576704143376L

Serialized Fields

kind

 int kind
The defintion code of the current instance of the definition kind.

Class org.omg.CORBA.DomainManager extends Object implements Serializable

Class org.omg.CORBA.FREE_MEM extends SystemException implements Serializable

serialVersionUID: -1333559476995791982L

Class org.omg.CORBA.IDLEntity extends Object implements Serializable

Class org.omg.CORBA.IDLType extends Object implements Serializable

Class org.omg.CORBA.IMP_LIMIT extends SystemException implements Serializable

serialVersionUID: -8086463494577448422L

Class org.omg.CORBA.INITIALIZE extends SystemException implements Serializable

serialVersionUID: -3753094599663690309L

Class org.omg.CORBA.INTERNAL extends SystemException implements Serializable

serialVersionUID: 3771336866139357605L

Class org.omg.CORBA.INTF_REPOS extends SystemException implements Serializable

serialVersionUID: 722572694720671863L

Class org.omg.CORBA.INVALID_TRANSACTION extends SystemException implements Serializable

serialVersionUID: -4265126403821571697L

Class org.omg.CORBA.INV_FLAG extends SystemException implements Serializable

serialVersionUID: -4863924749863817671L

Class org.omg.CORBA.INV_IDENT extends SystemException implements Serializable

serialVersionUID: 4399295047946553530L

Class org.omg.CORBA.INV_OBJREF extends SystemException implements Serializable

serialVersionUID: -7238811948257685034L

Class org.omg.CORBA.INV_POLICY extends SystemException implements Serializable

serialVersionUID: -7823113107689030975L

Class org.omg.CORBA.IRObject extends Object implements Serializable

Class org.omg.CORBA.MARSHAL extends SystemException implements Serializable

serialVersionUID: 7416408250336395546L

Class org.omg.CORBA.NameValuePair extends Object implements Serializable

serialVersionUID: 7000741877654946223L

Serialized Fields

value

 Any value
The value of the structure record.


id

 String id
The name of the structure record.

Class org.omg.CORBA.NO_IMPLEMENT extends SystemException implements Serializable

serialVersionUID: 3519190655657192112L

Class org.omg.CORBA.NO_MEMORY extends SystemException implements Serializable

serialVersionUID: -4591569617929689285L

Class org.omg.CORBA.NO_PERMISSION extends SystemException implements Serializable

serialVersionUID: -1533969523582458479L

Class org.omg.CORBA.NO_RESOURCES extends SystemException implements Serializable

serialVersionUID: 8129246118235803597L

Class org.omg.CORBA.NO_RESPONSE extends SystemException implements Serializable

serialVersionUID: 1971973765161647047L

Class org.omg.CORBA.OBJECT_NOT_EXIST extends SystemException implements Serializable

serialVersionUID: 7226958015420512389L

Class org.omg.CORBA.OBJ_ADAPTER extends SystemException implements Serializable

serialVersionUID: -1516541344234786928L

Class org.omg.CORBA.ParameterMode extends Object implements Serializable

serialVersionUID: 1521598391932998229L

Serialized Fields

value

 int value
The value of this parameter mode instance.

Class org.omg.CORBA.PERSIST_STORE extends SystemException implements Serializable

serialVersionUID: -6835478548864681965L

Class org.omg.CORBA.Policy extends Object implements Serializable

Class org.omg.CORBA.PolicyError extends UserException implements Serializable

serialVersionUID: -9196809779974700103L

Serialized Fields

reason

 short reason

Class org.omg.CORBA.SetOverrideType extends Object implements Serializable

serialVersionUID: -2761857189425106972L

Serialized Fields

_value

 int _value

Class org.omg.CORBA.StructMember extends Object implements Serializable

serialVersionUID: 2762280796480753206L

Serialized Fields

type_def

 IDLType type_def
The IDL type of the structure member.


name

 String name
The name of the structure member.


type

 TypeCode type
The typecode of the structure member.

Class org.omg.CORBA.SystemException extends RuntimeException implements Serializable

serialVersionUID: -8486391734674855519L

Serialized Fields

completed

 CompletionStatus completed
The status of the operation that have thrown this exception.


minor

 int minor
The additional exception error code ("minor").

Class org.omg.CORBA.TRANSACTION_REQUIRED extends SystemException implements Serializable

serialVersionUID: -1900254548742148576L

Class org.omg.CORBA.TRANSACTION_ROLLEDBACK extends SystemException implements Serializable

serialVersionUID: -343903462439281571L

Class org.omg.CORBA.TRANSIENT extends SystemException implements Serializable

serialVersionUID: 8168539547719791425L

Class org.omg.CORBA.TypeCode extends Object implements Serializable

serialVersionUID: -6521025782489515676L

Class org.omg.CORBA.UnionMember extends Object implements Serializable

serialVersionUID: 5506049694216071974L

Serialized Fields

label

 Any label
The label of the union member.


type_def

 IDLType type_def
The IDL type of the union member.


name

 String name
The name of the union member.


type

 TypeCode type
The typecode of the union member.

Class org.omg.CORBA.UnknownUserException extends UserException implements Serializable

serialVersionUID: 3106202258203879281L

Serialized Fields

except

 Any except
The Any, holding the actual exception, that has been thrown by the server.

Class org.omg.CORBA.UNKNOWN extends SystemException implements Serializable

serialVersionUID: -3556426185741898205L

Class org.omg.CORBA.UserException extends Exception implements Serializable

serialVersionUID: -6594940734566091244L

Class org.omg.CORBA.ValueMember extends Object implements Serializable

serialVersionUID: -2507594168537449114L

Serialized Fields

type_def

 IDLType type_def
The typedef that represents the IDL type of the value member.


defined_in

 String defined_in
The repository ID of the value for that this member is defined


id

 String id
The repository ID of this value member itself.


name

 String name
The name of the value member.


version

 String version
The version of the value in which this member is defined.


type

 TypeCode type
The type of of this value member.


access

 short access
The type of access (public, private) of this value member. This field can be equal to either PUBLIC_MEMBER.value or PRIVATE_MEMBER.value.

Class org.omg.CORBA.WrongTransaction extends UserException implements Serializable

serialVersionUID: -6594940734566091244L

Class org.omg.CORBA._IDLTypeStub extends ObjectImpl implements Serializable

serialVersionUID: 9150293942452453626L

Class org.omg.CORBA._PolicyStub extends ObjectImpl implements Serializable

serialVersionUID: 2453656196708903849L

Package org.omg.CORBA.DynAnyPackage

Class org.omg.CORBA.DynAnyPackage.Invalid extends UserException implements Serializable

serialVersionUID: -8258194490767575588L

Class org.omg.CORBA.DynAnyPackage.InvalidSeq extends UserException implements Serializable

serialVersionUID: -5678460771857763522L

Class org.omg.CORBA.DynAnyPackage.InvalidValue extends UserException implements Serializable

serialVersionUID: -4741963043279146697L

Class org.omg.CORBA.DynAnyPackage.TypeMismatch extends UserException implements Serializable

serialVersionUID: 2763424591181102501L

Package org.omg.CORBA.ORBPackage

Class org.omg.CORBA.ORBPackage.InconsistentTypeCode extends UserException implements Serializable

serialVersionUID: -4393472660722667060L

Class org.omg.CORBA.ORBPackage.InvalidName extends UserException implements Serializable

serialVersionUID: 6635923991559230168L

Package org.omg.CORBA.TypeCodePackage

Class org.omg.CORBA.TypeCodePackage.BadKind extends UserException implements Serializable

serialVersionUID: 1030443154456771956L

Class org.omg.CORBA.TypeCodePackage.Bounds extends UserException implements Serializable

serialVersionUID: -5418177951071152101L

Package org.omg.CORBA.portable

Class org.omg.CORBA.portable.ApplicationException extends Exception implements Serializable

serialVersionUID: -2088103024111528125L

Serialized Fields

m_input

 InputStream m_input
The input from where the exception parameters can be read.


m_id

 String m_id
The CORBA repository Id of the exception.

Class org.omg.CORBA.portable.IDLEntity extends Object implements Serializable

Class org.omg.CORBA.portable.IndirectionException extends SystemException implements Serializable

serialVersionUID: -1923858944380721643L

Serialized Fields

offset

 int offset
The stream offset, indicating, where the error has occured.

Class org.omg.CORBA.portable.RemarshalException extends Exception implements Serializable

serialVersionUID: -7025491253080954918L

Class org.omg.CORBA.portable.StreamableValue extends Object implements Serializable

Class org.omg.CORBA.portable.UnknownException extends SystemException implements Serializable

serialVersionUID: 1725238280802233450L

Serialized Fields

originalEx

 Throwable originalEx
The original exception.

Package org.omg.CosNaming

Class org.omg.CosNaming.BindingIterator extends Object implements Serializable

Package org.omg.CosNaming.NamingContextExtPackage

Class org.omg.CosNaming.NamingContextExtPackage.InvalidAddress extends UserException implements Serializable

serialVersionUID: -3775583235364760385L

Package org.omg.CosNaming.NamingContextPackage

Class org.omg.CosNaming.NamingContextPackage.AlreadyBound extends UserException implements Serializable

serialVersionUID: -5456929050527586560L

Class org.omg.CosNaming.NamingContextPackage.CannotProceed extends UserException implements Serializable

serialVersionUID: -8627405252527310782L

Serialized Fields

cxt

 NamingContext cxt
The relevant naming contex.


rest_of_name

 NameComponent[] rest_of_name
Contains the remainder of the non working name.

Class org.omg.CosNaming.NamingContextPackage.InvalidName extends UserException implements Serializable

serialVersionUID: 786404864997961704L

Class org.omg.CosNaming.NamingContextPackage.NotEmpty extends UserException implements Serializable

serialVersionUID: 7120362687417045881L

Class org.omg.CosNaming.NamingContextPackage.NotFound extends UserException implements Serializable

serialVersionUID: -7539098836265502514L

Serialized Fields

why

 NotFoundReason why
The reason, explaining, why the binding cannot be found. This might be either the missing node or the wrong binding type.


rest_of_name

 NameComponent[] rest_of_name
Contains the remainder of the non working name.

Package org.omg.Dynamic

Class org.omg.Dynamic.Parameter extends Object implements Serializable

serialVersionUID: 892191606993734699L

Serialized Fields

argument

 Any argument
The Any, holding the value of the parameter.


mode

 ParameterMode mode
The mode of the parameter. Specifies if the parameter is used to pass the value to the method, to return the value from the method or for both of these purposes.

Package org.omg.DynamicAny.DynAnyFactoryPackage

Class org.omg.DynamicAny.DynAnyFactoryPackage.InconsistentTypeCode extends UserException implements Serializable

serialVersionUID: 3679785322052655944L

Package org.omg.DynamicAny.DynAnyPackage

Class org.omg.DynamicAny.DynAnyPackage.InvalidValue extends UserException implements Serializable

serialVersionUID: 4928947584617628504L

Class org.omg.DynamicAny.DynAnyPackage.TypeMismatch extends UserException implements Serializable

serialVersionUID: -6393641830493471034L

Package org.omg.IOP

Class org.omg.IOP.Encoding extends Object implements Serializable

serialVersionUID: -1489257079856841992L

Serialized Fields

format

 short format
The format of encoding. For instance, ENCODING_CDR_ENCAPS.value.


major_version

 byte major_version
The major version number of this encoding format.


minor_version

 byte minor_version
The minor version number of this encoding format.

Class org.omg.IOP.IOR extends Object implements Serializable

serialVersionUID: 1901439890645554948L

Serialized Fields

profiles

 TaggedProfile[] profiles
The profiles, associated with this IOR reference. The possible profiles are listed in TaggedProfile description.


type_id

 String type_id
The object repository Id.

Class org.omg.IOP.ServiceContext extends Object implements Serializable

serialVersionUID: -2232391417465261379L

Serialized Fields

context_id

 int context_id
The context id (for instance, 0x1 for code sets context). At the moment of writing, the OMG defines 16 standard values and provides rules to register the vendor specific context ids. The range 0-4095 is reserved for the future standard OMG contexts.


context_data

 byte[] context_data
The context_data.

Class org.omg.IOP.TaggedComponent extends Object implements Serializable

serialVersionUID: -2084695346022761692L

Serialized Fields

tag

 int tag
The integer tag identifier, for instance, TAG_CODE_SETS.value.


component_data

 byte[] component_data
The tag component data.

Class org.omg.IOP.TaggedProfile extends Object implements Serializable

serialVersionUID: -461232684387903343L

Serialized Fields

tag

 int tag
The integer tag identifier, typically one of TAG_INTERNET_IOP.value or TAG_MULTIPLE_COMPONENTS.value.


profile_data

 byte[] profile_data
The profile_data, represented here in the form of the array of bytes.

Package org.omg.IOP.CodecFactoryPackage

Class org.omg.IOP.CodecFactoryPackage.UnknownEncoding extends UserException implements Serializable

serialVersionUID: 1613955753212049966L

Package org.omg.IOP.CodecPackage

Class org.omg.IOP.CodecPackage.FormatMismatch extends UserException implements Serializable

serialVersionUID: 5818121867618342320L

Class org.omg.IOP.CodecPackage.InvalidTypeForEncoding extends UserException implements Serializable

serialVersionUID: 7951932210684443970L

Class org.omg.IOP.CodecPackage.TypeMismatch extends UserException implements Serializable

serialVersionUID: -3544092104480759035L

Package org.omg.PortableInterceptor.ORBInitInfoPackage

Class org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName extends UserException implements Serializable

serialVersionUID: 7748239257677851130L

Serialized Fields

name

 String name
The name field.

Class org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidName extends UserException implements Serializable

serialVersionUID: -4599417794753377115L

Package org.omg.PortableServer

Class org.omg.PortableServer.IdAssignmentPolicyValue extends Object implements Serializable

serialVersionUID: 2024380631469554382L

Serialized Fields

_value

 int _value
The value field for the current instance.

Class org.omg.PortableServer.IdUniquenessPolicyValue extends Object implements Serializable

serialVersionUID: 2698951826884611346L

Serialized Fields

_value

 int _value
The value field for the current instance.

Class org.omg.PortableServer.ImplicitActivationPolicyValue extends Object implements Serializable

serialVersionUID: 3826572456602949295L

Serialized Fields

_value

 int _value
The value field for the current instance.

Class org.omg.PortableServer.LifespanPolicyValue extends Object implements Serializable

serialVersionUID: 6604562925399671611L

Serialized Fields

_value

 int _value
The value field for the current instance.

Class org.omg.PortableServer.RequestProcessingPolicyValue extends Object implements Serializable

serialVersionUID: 7646563512329907695L

Serialized Fields

_value

 int _value
The value field for the current instance.

Class org.omg.PortableServer.ServantRetentionPolicyValue extends Object implements Serializable

serialVersionUID: -7476100336036943822L

Serialized Fields

_value

 int _value
The value field for the current instance.

Package org.omg.PortableServer.CurrentPackage

Class org.omg.PortableServer.CurrentPackage.NoContext extends UserException implements Serializable

serialVersionUID: 4345975812295650198L

Package org.omg.PortableServer.POAManagerPackage

Class org.omg.PortableServer.POAManagerPackage.AdapterInactive extends UserException implements Serializable

serialVersionUID: 6945182851085567131L

Class org.omg.PortableServer.POAManagerPackage.State extends Object implements Serializable

serialVersionUID: -2451866258678193271L

Serialized Fields

_value

 int _value
The value field for the current instance.

Package org.omg.PortableServer.POAPackage

Class org.omg.PortableServer.POAPackage.AdapterAlreadyExists extends UserException implements Serializable

serialVersionUID: -2678288222917790041L

Class org.omg.PortableServer.POAPackage.AdapterNonExistent extends UserException implements Serializable

serialVersionUID: -9166706041988650696L

Class org.omg.PortableServer.POAPackage.InvalidPolicy extends UserException implements Serializable

serialVersionUID: 3204212102282117205L

Serialized Fields

index

 short index
The index in the policies parameter value of the first offending policy object.

Class org.omg.PortableServer.POAPackage.NoServant extends UserException implements Serializable

serialVersionUID: -5893773687270266061L

Class org.omg.PortableServer.POAPackage.ObjectAlreadyActive extends UserException implements Serializable

serialVersionUID: -2919308871345098101L

Class org.omg.PortableServer.POAPackage.ObjectNotActive extends UserException implements Serializable

serialVersionUID: 2269559915073532416L

Class org.omg.PortableServer.POAPackage.ServantAlreadyActive extends UserException implements Serializable

serialVersionUID: 780130793809887260L

Class org.omg.PortableServer.POAPackage.ServantNotActive extends UserException implements Serializable

serialVersionUID: -7806868032412803953L

Class org.omg.PortableServer.POAPackage.WrongAdapter extends UserException implements Serializable

serialVersionUID: 7505320179916389200L

Class org.omg.PortableServer.POAPackage.WrongPolicy extends UserException implements Serializable

serialVersionUID: 1949765652955335195L

Package org.omg.SendingContext

Class org.omg.SendingContext.RunTime extends Object implements Serializable

Package org.omg.stub.java.rmi

Class org.omg.stub.java.rmi._Remote_Stub extends Stub implements Serializable

serialVersionUID: -1967190271952680697L

Package org.w3c.dom

Class org.w3c.dom.DOMException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Serialized Fields

code

 short code

Package org.w3c.dom.events

Class org.w3c.dom.events.EventException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Serialized Fields

code

 short code

Package org.w3c.dom.ls

Class org.w3c.dom.ls.LSException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Serialized Fields

code

 short code

Package org.w3c.dom.ranges

Class org.w3c.dom.ranges.RangeException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Serialized Fields

code

 short code

Package org.w3c.dom.xpath

Class org.w3c.dom.xpath.XPathException extends RuntimeException implements Serializable

serialVersionUID: -7034897190745766939L

Serialized Fields

code

 short code

Package org.xml.sax

Class org.xml.sax.SAXException extends Exception implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

exception

 Exception exception

The embedded exception if tunnelling, or null.

Class org.xml.sax.SAXNotRecognizedException extends SAXException implements Serializable

serialVersionUID: -3387516993124229948L

Class org.xml.sax.SAXNotSupportedException extends SAXException implements Serializable

serialVersionUID: -3387516993124229948L

Class org.xml.sax.SAXParseException extends SAXException implements Serializable

serialVersionUID: -3387516993124229948L

Serialized Fields

publicId

 String publicId

The public identifier, or null.

See Also:
SAXParseException.getPublicId()


systemId

 String systemId

The system identifier, or null.

See Also:
SAXParseException.getSystemId()


lineNumber

 int lineNumber

The line number, or -1.

See Also:
SAXParseException.getLineNumber()


columnNumber

 int columnNumber

The column number, or -1.

See Also:
SAXParseException.getColumnNumber()