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.

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.

the accessibleContext for this
Since:
1.2

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.

isFocusManagerEvent

boolean isFocusManagerEvent
Indicates if this event is dispatched by the KeyboardFocusManager.

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.

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: -5932203980244017102L

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<K,V> 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: -1122642964303476L

Class java.awt.Choice extends Component implements Serializable

serialVersionUID: -4075310674757313071L

Serialized Fields

pItems

Vector<T> 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
ItemListener chain

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.

the rgb components of the value
Since:
1.2
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.

the original color space components of the color
Since:
1.2
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.

the alpha component of this color
Since:
1.2
See Also:
Color.getRGBComponents(float[]), Color.getComponents(float[])

cs

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

the color space for this color
Since:
1.2
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.

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.

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).

true to ignore repaints
Since:
1.4
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.

the drop target, or null
Since:
1.2
See Also:
Component.getDropTarget(), Component.setDropTarget(DropTarget)

popups

Vector<T> 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.name, 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 Component.isFocusTraversable() method has been overridden.

Since:
1.4

focusTraversalKeys

Set<E>[] 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

minSizeSet

boolean minSizeSet
Flag indicating whether the minimum size for the component has been set by a call to Component.setMinimumSize(Dimension) with a non-null value.


maxSize

Dimension maxSize
The maximum size for the component.

See Also:
Component.setMaximumSize(Dimension)

maxSizeSet

boolean maxSizeSet
A flag indicating whether the maximum size for the component has been set by a call to Component.setMaximumSize(Dimension) with a non-null value.


prefSize

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

ignore

prefSizeSet

boolean prefSizeSet
Flag indicating whether the preferred size for the component has been set by a call to Component.setPreferredSize(Dimension) with a non-null value.


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.

the property change listeners
Since:
1.2
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.

the accessibility context
Since:
1.2
See Also:
Component.getAccessibleContext()

numHierarchyListeners

int numHierarchyListeners
The number of hierarchy listeners of this container plus all of its children. This is needed for efficient handling of HierarchyEvents. These must be propagated to all child components with HierarchyListeners attached. To avoid traversal of the whole subtree, we keep track of the number of HierarchyListeners here and only walk the paths that actually have listeners.


numHierarchyBoundsListeners

int numHierarchyBoundsListeners

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.

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.

Throws:
IOException - if the stream fails
Serialized Fields

ncomponents

int ncomponents

component

Component[] component

layoutMgr

LayoutManager layoutMgr

focusCycleRoot

boolean focusCycleRoot
Since:
1.4

focusTraversalPolicyProvider

boolean focusTraversalPolicyProvider
Indicates if this container provides a focus traversal policy.

Since:
1.5

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: 8876966522510157497L

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: 4837230331833941201L

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

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws IOException,
                        ClassNotFoundException
Reads the normal fields from the stream and then constructs the peer from the style and size through getPeerFromToolkit().

Throws:
IOException
ClassNotFoundException
Serialized Fields

name

String name
The logical name of this font.

Since:
1.0

size

int size
The size of this font in points, rounded.

Since:
1.0

pointSize

float pointSize
The size of this font in points.

Since:
1.0

style

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

Since:
1.0

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<T> 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: -6172960752956030250L

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<K,V> comptable

internalcomptable

Hashtable<K,V> 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<T> 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: 7924617370136012829L

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

serialVersionUID: 4412022926028300317L

Serialized Fields

parent

List parent

indexInParent

int indexInParent

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<T> 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: 5228160894980069094L

Class java.awt.MenuBar extends MenuComponent implements Serializable

serialVersionUID: -4930327919388951260L

Serialized Fields

helpMenu

Menu helpMenu
The menu used for providing help information

menus

Vector<T> 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(java.awt.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: -217847831945965825L

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.

keyName

String keyName

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: -4282044795947239955L

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: 6100703663886637L

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: 3472827823632144419L

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: 3631432373506317811L

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: 6219164359235943158L

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

alwaysOnTop

boolean alwaysOnTop
Since:
1.5

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

serialVersionUID: 4215068635060671780L


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

Throws:
IOException
ClassNotFoundException
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

readObject

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

Throws:
IOException
ClassNotFoundException

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.

Throws:
IOException

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.

Throws:
ObjectStreamException

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

readExternal

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

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

writeExternal

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

Throws:
IOException - If an error occurs.

Class java.awt.datatransfer.FlavorEvent extends EventObject implements Serializable

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

events

List<E> events

dgr

DragGestureRecognizer dgr

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

serialVersionUID: 8996673345831063337L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException
Serialized Fields

dragSource

DragSource dragSource

component

Component component

sourceActions

int sourceActions

events

ArrayList<E> events

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

serialVersionUID: 6236096958971414066L

Serialized Fields

peer

DragSourceContextPeer peer

context

DragSourceContext context

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

peer

DropTargetPeer peer

dropTargetContext

DropTargetContext dropTargetContext

dropTargetListener

DropTargetListener dropTargetListener

autoscroller

DropTarget.DropTargetAutoScroller autoscroller

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: 2821229066521922993L

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


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.

the timestamp of the event
Since:
1.4
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 AdjustmentEvent.UNIT_INCREMENT, AdjustmentEvent.UNIT_DECREMENT, AdjustmentEvent.BLOCK_INCREMENT, AdjustmentEvent.BLOCK_DECREMENT, or AdjustmentEvent.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.

true if this is not the last adjustment
Since:
1.4
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.

the component with the opposite focus event, or null
Since:
1.4
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 old-style 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 old style
See Also:
InputEvent.getModifiers(), MouseEvent

modifiersEx

int modifiersEx
The new-style 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.getModifiersEx(), 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.

Serial Data:
default, except for updating when
Throws:
IOException - if deserialization fails
ClassNotFoundException - if deserialization fails
Serialized Fields

when

long when
The timestamp when this event was created.

the timestamp
Since:
1.4

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

throwable

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


when

long when
The timestamp when this event was created.

the timestamp
Since:
1.4
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 ItemEvent.SELECTED or ItemEvent.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.

Serial Data:
default, except that the modifiers are converted to new style
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
The keyboard location of the key. One of KeyEvent.KEY_LOCATION_UNKNOWN, KeyEvent.KEY_LOCATION_STANDARD, KeyEvent.KEY_LOCATION_LEFT, KeyEvent.KEY_LOCATION_RIGHT, or KeyEvent.KEY_LOCATION_NUMPAD.

the key location
Since:
1.4
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.

Serial Data:
default, except that the modifiers are converted to new style
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()

absX

int absX
The screen position of that mouse event, X coordinate.


absY

int absY
The screen position of that mouse event, Y coordinate.


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 MouseEvent.NOBUTTON, MouseEvent.BUTTON1, MouseEvent.BUTTON2, or MouseEvent.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 MouseWheelEvent.WHEEL_UNIT_SCROLL and MouseWheelEvent.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.

the opposite window, or null
Since:
1.4
See Also:
WindowEvent.getOppositeWindow()

oldState

int oldState
The former state of the window.

bitmask of the old window state
Since:
1.4

newState

int newState
The present state of the window.

bitmask of the new window state
Since:
1.4

Package java.awt.font

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

serialVersionUID: -8022764705923730308L

Serialized Fields

key

int key
The default initial context for this shaper, specified as an integer from 0 to 18.


mask

int mask
The target ranges handled by this shaper. If the shaper is not contextual, the high bit of this field will be set.

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.

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.

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

Class java.awt.geom.Path2D.Double extends java.awt.geom.Path2D implements Serializable

serialVersionUID: 1826762518450014216L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException

Class java.awt.geom.Path2D.Float extends java.awt.geom.Path2D implements Serializable

serialVersionUID: 6990832515060788886L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException

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<T> sources

parameters

Vector<T> 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.IndexedPropertyChangeEvent extends PropertyChangeEvent implements Serializable

serialVersionUID: -320227448495806870L

Serialized Fields

index

int index
Index of the item that was changed.

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

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.

Serial Data:
this reads in a null-terminated list of serializable global property change listeners (the listeners for a named property are written out as the global listeners of the children, when the children hashtable is saved)
Throws:
IOException - if reading the stream fails
ClassNotFoundException - if deserialization fails

writeObject

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

Serial Data:
this writes out a null-terminated list of serializable global property change listeners (the listeners for a named property are written out as the global listeners of the children, when the children hashtable is saved)
Throws:
IOException - if anything goes wrong
Serialized Fields

children

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

the map of property names to named listener managers
Since:
1.2

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

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.

Serial Data:
this reads in a null-terminated list of serializable global vetoable change listeners (the listeners for a named property are written out as the global listeners of the children, when the children hashtable is saved)
Throws:
IOException - if reading the stream fails
ClassNotFoundException - if deserialization fails

writeObject

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

Serial Data:
this writes out a null-terminated list of serializable global vetoable change listeners (the listeners for a named property are written out as the global listeners of the children, when the children hashtable is saved)
Throws:
IOException - if anything goes wrong
Serialized Fields

children

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

the map of property names to named listener managers
Since:
1.2

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: 3499346510334590959L

Serialized Fields

children

Collection<E> children
The children that were added or removed.

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

serialVersionUID: -5333985775656400778L

Serialized Fields

serviceClass

Class<T> serviceClass
The Class representing the service which is now available.

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

serialVersionUID: -1295543154724961754L

Serialized Fields

serviceClass

Class<T> 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: -3263851306889194873L

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

serialVersionUID: 861278251667444782L

Serialized Fields

serviceProvider

BeanContextServiceProvider serviceProvider

serviceClass

Class<T> serviceClass

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

serialVersionUID: -4879613978649577204L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws ClassNotFoundException,
                        IOException
Deserializes a stored bean context. Hook methods are provided to allow subclasses to perform their own deserialization after the default deserialization but prior to the deserialization of the children. Note that BeanContextSupport.readChildren(ObjectInputStream) is only called if there is no distinct peer. If there is, the peer is expected to call the method instead.

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

writeObject

private void writeObject(ObjectOutputStream s)
                  throws ClassNotFoundException,
                         IOException
Serializes a bean context. Hook methods are provided to allow subclasses to perform their own serialization after the default serialization but prior to serialization of the children. Note that BeanContextSupport.writeChildren(ObjectOutputStream) is only called if there is no distinct peer. If there is, the peer is expected to call the method instead.

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

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

serialVersionUID: -5815286101609939109L

Serialized Fields

targetChild

Object targetChild

peer

Object peer

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.File extends Object implements Serializable

serialVersionUID: 301077366599181567L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream oos)
                  throws IOException
Throws:
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.IOError extends Error implements Serializable

serialVersionUID: 67100927991680413L

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

hierarchy

ObjectStreamClass[] hierarchy
Cache for hierarchy() result.


superClass

ObjectStreamClass superClass

clazz

Class<T> 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<T> firstNonSerializableParentConstructor

constructor

Constructor<T> constructor

isProxyClass

boolean isProxyClass

fieldsSet

boolean fieldsSet

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

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).

the exception cause
Since:
1.2

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.Enum extends Object implements Serializable

serialVersionUID: -4300926546619394005L

Serialized Fields

name

String name
The name of this enum constant.


ordinal

int ordinal
The number of this enum constant. Each constant is given a number which matches the order in which it was declared, starting with zero.

Class java.lang.EnumConstantNotPresentException extends RuntimeException implements Serializable

serialVersionUID: -6046998521960521108L

Serialized Fields

enumType

Class<T> enumType
The enum's type. Note that the name is fixed by the serialization spec.


constantName

String constantName
The name of the missing enum constant. Note that the name is fixed by the serialization spec.

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

data

Object data
This is the object that holds the characters that make up the String. It might be a char[], or it could be String. It could even be `this'. The actual characters can't be located using pure Java code.

See Also:
String.boffset

boffset

int boffset
This is a byte offset of the actual characters from the start of the character-holding object. Don't use this field in Java code.


count

int count
Holds the number of characters in value. 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).

Class java.lang.StringBuffer extends java.lang.AbstractStringBuffer implements Serializable

serialVersionUID: 3388685877147921107L

Serialized Fields

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 java.lang.AbstractStringBuffer implements Serializable

serialVersionUID: 4383685877147921099L

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.

the cause, or null if unknown, or this if not yet set
Since:
1.4

stackTrace

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

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

Class java.lang.TypeNotPresentException extends RuntimeException implements Serializable

serialVersionUID: -5101214195716534496L

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: -4256701562333669892L

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.

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

Serialized Fields

annotationType

Class<T> annotationType
The class representing the type of annotation from which an element was found to be missing.

the type of the annotation from which an element was missing.

elementName

String elementName
The name of the missing element.

the name of the missing element.

Package java.lang.instrument

Class java.lang.instrument.IllegalClassFormatException extends Exception implements Serializable

serialVersionUID: -3841736710924794009L

Class java.lang.instrument.UnmodifiableClassException extends Exception implements Serializable

serialVersionUID: 1716652643585309178L


Package java.lang.management

Class java.lang.management.ManagementPermission extends BasicPermission implements Serializable

serialVersionUID: 1897496590799378737L


Package java.lang.reflect

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

serialVersionUID: 6709919147137911034L

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.MalformedParameterizedTypeException extends RuntimeException implements Serializable

serialVersionUID: -5696557788586220964L

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.getCause(), 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

precision

int precision

Class java.math.BigInteger extends Number implements Serializable

serialVersionUID: -8287574255936472291L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException,
                         ClassNotFoundException
Throws:
IOException
ClassNotFoundException
Serialized Fields

bitCount

int bitCount

bitLength

int bitLength

lowestSetBit

int lowestSetBit

magnitude

byte[] magnitude

signum

int signum

Class java.math.MathContext extends Object implements Serializable

serialVersionUID: 5579720004786848255L

Serialized Fields

precision

int precision

roundMode

RoundingMode roundMode

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.HttpRetryException extends IOException implements Serializable

Serialized Fields

responseCode

int responseCode

location

String location

Class java.net.Inet4Address extends InetAddress implements Serializable

serialVersionUID: 3286316764910316507L

Serialization Methods

writeReplace

private Object writeReplace()
                     throws ObjectStreamException
Inet4Address objects are serialized as InetAddress objects.

Throws:
ObjectStreamException

Class java.net.Inet6Address extends InetAddress implements Serializable

serialVersionUID: 6880410070516793377L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Required for 1.5-compatible serialization.

Throws:
IOException
ClassNotFoundException
Since:
1.5

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Required for 1.5-compatible serialization.

Throws:
IOException
Since:
1.5
Serialized Fields

ipaddress

byte[] ipaddress
Needed for serialization


scope_id

int scope_id
The scope ID, if any.

 
Since:
1.5

scope_id_set

boolean scope_id_set
The scope ID, if any.

 
Since:
1.5

scope_ifname_set

boolean scope_ifname_set
Whether ifname is set or not.

 
Since:
1.5

ifname

String ifname
Name of the network interface, used only by the serialization methods

 
Since:
1.5

Class java.net.InetAddress extends Object implements Serializable

serialVersionUID: 3286316764910316507L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream oos)
                  throws IOException
Throws:
IOException

readResolve

private Object readResolve()
                    throws ObjectStreamException
Inet4Address objects are serialized as InetAddress objects. This deserializes them back into Inet4Address objects.

Throws:
ObjectStreamException
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
Needed for serialization.

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

Serialization Methods

readObject

private void readObject(ObjectInputStream input)
                 throws IOException,
                        ClassNotFoundException
Deserializes a SocketPermission object from an 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 SocketPermission object to an output stream.

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

actions

String actions
The actions for which we have permission. This field is present to make the serialized form correct and should not be used by anything other than writeObject: everything else should use actionmask.

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
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream os)
                  throws IOException
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
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream oos)
                  throws IOException
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: -5484897634319144535L

Class java.nio.BufferUnderflowException extends RuntimeException implements Serializable

serialVersionUID: -1713313658691622206L

Class java.nio.InvalidMarkException extends IllegalStateException implements Serializable

serialVersionUID: 1698329710438510774L

Class java.nio.ReadOnlyBufferException extends UnsupportedOperationException implements Serializable

serialVersionUID: -1210063976496234090L


Package java.nio.channels

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

serialVersionUID: -7331895245053773357L

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

serialVersionUID: 6891178312432313966L

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

serialVersionUID: -8438032138028814268L

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

serialVersionUID: -4488191543534286750L

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

serialVersionUID: 882777185433553857L

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

serialVersionUID: 6466297122317847835L

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

serialVersionUID: 2008393366501760879L

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

serialVersionUID: 7104080643653532383L

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

serialVersionUID: -3335774961855590474L

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

serialVersionUID: -8406323347253320987L

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

serialVersionUID: -8296561183633134743L

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

serialVersionUID: -3200915679294993514L

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

serialVersionUID: -7071230488279011621L

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

serialVersionUID: 4640999303950202242L

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

serialVersionUID: 4697316551909513464L

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

serialVersionUID: 2047812138163068433L

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

serialVersionUID: 6136959093620794148L

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

serialVersionUID: -2964323842829700493L


Package java.nio.charset

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

serialVersionUID: 8421532232154627783L

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

serialVersionUID: -1151412348057794301L

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: -3438823399834806194L

Serialized Fields

inputLength

int inputLength

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

serialVersionUID: -7026962371537706123L

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

Serialized Fields

id

ActivationID id
The object activation id.

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
The group id.


classname

String classname
The class name.


location

String location
The code location URL.


data

MarshalledObject<T> data
The object specific intitalization data.


restart

boolean restart
The start mode.

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

Serialized Fields

groupId

ActivationGroupID groupId
The groups identifier.


monitor

ActivationMonitor monitor
The groups activation monitor.


incarnation

long incarnation
The groups incarnation number.

Class java.rmi.activation.ActivationGroup_Stub extends RemoteStub implements Serializable

serialVersionUID: 2L

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

serialVersionUID: -4936225423168276595L

Serialized Fields

className

String className
The group class name or null for the default group class implementation.


location

String location
The group class download location URL (codebase), ignored by the default implementation.


data

MarshalledObject<T> data
The group initialization data.


env

ActivationGroupDesc.CommandEnvironment env
The path to the group jre and the parameters of this jre, may be null for the default jre.


props

Properties props
The properties that override the system properties.

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

serialVersionUID: 6165754737887770191L

Serialized Fields

command

String command
The path to the java executable (or null for using default jre).


options

String[] options
The extra parameters (may be empty array but never null).

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

serialVersionUID: -1648432278909740833L

Serialized Fields

system

ActivationSystem system
The associated activation system.


uid

UID uid
The object identifier, making the ID unique.

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

serialVersionUID: -4608673054848209235L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Read the object from the input stream.

Throws:
IOException - if thrown by the stream
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException,
                         ClassNotFoundException
Write the object to the output stream.

Throws:
IOException - if thrown by the stream
ClassNotFoundException

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
The IP address of the local host.


uid

UID uid
The UID of this VMID.


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
The object Id (either well-known value or the value of the incrementing object counter.


space

UID space
The object unique identifier, generated individually for each object.

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

serialVersionUID: -3215090123894869218L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Read the remote object from the input stream. Expects the class name without package first. Then the method creates and assigns the RemoteObject.ref an instance of this class and calls its .readExternal method. The standard packageless class names are UnicastRef, UnicastRef2, UnicastServerRef, UnicastServerRef2, ActivatableRef or ActivatableServerRef.

Throws:
IOException - if the IO exception occurs
ClassNotFoundException - if the class with the given name is not present in the package gnu.java.rmi.server (for the case of the GNU Classpath.

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException,
                         ClassNotFoundException
Write the remote object to the output stream. This method first calls RemoteRef.getRefClass(ObjectOutput) on the RemoteObject.ref to get the class name without package, writes this name and then calls the ref.writeObject to write the data. The standard packageless class names are UnicastRef, UnicastRef2, UnicastServerRef, UnicastServerRef2, ActivatableRef or ActivatableServerRef. The empty string with the subsequently following serialized ref instance be written if the ref.getRefClass returns null.

Throws:
IOException - if one occurs during writing
ClassNotFoundException - never in this implementation (specified as part of the API standard)
UnmarshalException - if the remote reference of this remote object is null.

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

serialVersionUID: 2L

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

count

short count
The UID number in the UID creation sequence.


unique

int unique
Always gets the uniqueNr value.


time

long time
The time stamp, when the UID was created.

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

serialVersionUID: 4974527148936298033L

Serialized Fields

port

int port
The port, on that the created remote object becomes available, zero meaning the anonymous port.


csf

RMIClientSocketFactory csf
The client socket factory for producing client sockets, used by this object.


ssf

RMIServerSocketFactory ssf
The server socket factory for producing server sockets, used by this object.


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.AuthProvider extends Provider implements Serializable

Class java.security.BasicPermission extends Permission implements Serializable

serialVersionUID: 6279438298436773498L

Class java.security.CodeSigner extends Object implements Serializable

serialVersionUID: 6819288105193937581L

Serialized Fields

signerCertPath

CertPath signerCertPath

timestamp

java.security.Timestamp timestamp

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.

Serial Data:
this reads the location, then expects an int indicating the number of certificates. Each certificate is a String type followed by an int encoding length, then a byte[] encoding
Throws:
IOException - if reading fails
ClassNotFoundException - if deserialization fails

writeObject

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

Serial Data:
this writes the location, then writes an int indicating the number of certificates. Each certificate is a String type followed by an int encoding length, then a byte[] encoding
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.

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
Deprecated. 

scope

IdentityScope scope
Deprecated. 

publicKey

PublicKey publicKey
Deprecated. 

info

String info
Deprecated. 

certificates

Vector<T> certificates
Deprecated. 

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.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.KeyRep extends Object implements Serializable

serialVersionUID: -4757683898830641853L

Serialization Methods

readResolve

protected Object readResolve()
                      throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

type

java.security.KeyRep.Type type

algorithm

String algorithm

format

String format

encoded

byte[] encoded

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<K,V> 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

algorithm

String algorithm

isSeeded

boolean isSeeded

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.

Throws:
IOException
ClassNotFoundException
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
Deprecated. 

Class java.security.Timestamp extends Object implements Serializable

serialVersionUID: -5502683707821851294L

Serialized Fields

timestamp

Date timestamp

signerCertPath

CertPath signerCertPath

Class java.security.UnrecoverableEntryException extends GeneralSecurityException implements Serializable

serialVersionUID: -4527142945246286535L

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: -3585440601605666277L

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Returns a replacement for this certificate to be serialized. This method returns the equivalent to the following for this class:
new CertificateRep(getType(), getEncoded());

This thusly replaces the certificate with its name and its encoded form, which can be deserialized later with the CertificateFactory implementation for this certificate's type.

Throws:
ObjectStreamException - If the replacement could not be created.
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.

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

Serialization Methods

writeReplace

protected Object writeReplace()
                       throws ObjectStreamException
Serializes the path in its encoded form, to ensure reserialization with the appropriate factory object without worrying about list implementation. The result will always be an instance of CertPath.CertPathRep.

Throws:
ObjectStreamException - if the replacement creation fails
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.

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.interfaces

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.SQLClientInfoException extends SQLException implements Serializable

serialVersionUID: -4319604256824655880L

Serialized Fields

failedProperties

Map<K,V> failedProperties

Class java.sql.SQLDataException extends java.sql.SQLNonTransientException implements Serializable

serialVersionUID: -6889123282670549800L

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.SQLFeatureNotSupportedException extends java.sql.SQLNonTransientException implements Serializable

serialVersionUID: -1026510870282316051L

Class java.sql.SQLIntegrityConstraintViolationException extends java.sql.SQLNonTransientException implements Serializable

serialVersionUID: 8033405298774849169L

Class java.sql.SQLInvalidAuthorizationSpecException extends java.sql.SQLNonTransientException implements Serializable

serialVersionUID: -64105250450891498L

Class java.sql.SQLNonTransientConnectionException extends java.sql.SQLNonTransientException implements Serializable

serialVersionUID: -5852318857474782892L

Class java.sql.SQLNonTransientException extends SQLException implements Serializable

serialVersionUID: -9104382843534716547L

Class java.sql.SQLPermission extends BasicPermission implements Serializable

Class java.sql.SQLRecoverableException extends SQLException implements Serializable

serialVersionUID: -4144386502923131579L

Class java.sql.SQLSyntaxErrorException extends java.sql.SQLNonTransientException implements Serializable

serialVersionUID: -1843832610477496053L

Class java.sql.SQLTimeoutException extends java.sql.SQLTransientException implements Serializable

serialVersionUID: -4487171280562520262L

Class java.sql.SQLTransactionRollbackException extends java.sql.SQLTransientException implements Serializable

serialVersionUID: 5246680841170837229L

Class java.sql.SQLTransientConnectionException extends java.sql.SQLTransientException implements Serializable

serialVersionUID: -2520155553543391200L

Class java.sql.SQLTransientException extends SQLException implements Serializable

serialVersionUID: -9042733978262274539L

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
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.

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

name

String name
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: 7218322306649953788L

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
Throws:
InvalidObjectException - If the object being deserialized cannot be resolved.
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

runtimeZoneStrings

String[][] runtimeZoneStrings
The timezone strings supplied by the runtime.


zoneStrings

String[][] zoneStrings
Custom timezone strings supplied by #setZoneStrings().

Class java.text.DecimalFormat extends NumberFormat implements Serializable

serialVersionUID: 864413376551465018L

Serialized Fields

parseBigDecimal

boolean parseBigDecimal
Defines if parse should return a BigDecimal or not.


useCurrencySeparator

boolean useCurrencySeparator
Defines if we have to use the monetary decimal separator or the decimal separator while formatting numbers.


decimalSeparatorAlwaysShown

boolean decimalSeparatorAlwaysShown
Defines if the decimal separator is always shown or not.


showDecimalSeparator

boolean showDecimalSeparator
Defines if the decimal separator has to be shown. This is different then decimalSeparatorAlwaysShown, as it defines if the format string contains a decimal separator or no.


groupingSeparatorInPattern

boolean groupingSeparatorInPattern
This field is used to determine if the grouping separator is included in the format string or not. This is only needed to match the behaviour of the RI.


groupingSize

byte groupingSize
Defines the size of grouping groups when grouping is used.


minExponentDigits

byte minExponentDigits
This is an internal parameter used to keep track of the number of digits the form the exponent, when exponential notation is used. It is used with exponentRound


exponentRound

int exponentRound
This field is used to set the exponent in the engineering notation.


multiplier

int multiplier
Multiplier used in percent style formats.


negativePatternMultiplier

int negativePatternMultiplier
Multiplier used in percent style formats.


negativePrefix

String negativePrefix
The negative prefix.


negativeSuffix

String negativeSuffix
The negative suffix.


positivePrefix

String positivePrefix
The positive prefix.


positiveSuffix

String positiveSuffix
The positive suffix.


symbols

DecimalFormatSymbols symbols
Decimal Format Symbols for the given locale.


useExponentialNotation

boolean useExponentialNotation
Determine if we have to use exponential notation or not.


maxIntegerDigitsExponent

int maxIntegerDigitsExponent
Defines the maximum number of integer digits to show when we use the exponential notation.


hasNegativePrefix

boolean hasNegativePrefix
Defines if the format string has a negative prefix or not.


hasFractionalPattern

boolean hasFractionalPattern
Defines if the format string has a fractional pattern or not.


attributes

ArrayList<E> attributes
Stores a list of attributes for use by formatToCharacterIterator.

Class java.text.DecimalFormatSymbols extends Object implements Serializable

serialVersionUID: 5772796243397350300L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
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.

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

Class java.text.NumberFormat extends Format implements Serializable

serialVersionUID: -2308460125733713944L

Serialization Methods

readObject

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

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
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.

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.

Throws:
IOException - if an I/O error occurs.
ClassNotFoundException - if the class of the serialized data could not be found.
InvalidObjectException - if the pattern is invalid.
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:
SimpleDateFormat.get2DigitYearStart(), SimpleDateFormat.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:
SimpleDateFormat.applyPattern(String), SimpleDateFormat.applyLocalizedPattern(String), SimpleDateFormat.toPattern(), SimpleDateFormat.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.AbstractMap.SimpleEntry extends Object implements Serializable

serialVersionUID: -8499721149061103585L

Serialized Fields

key

Object key
The key. Package visible for direct manipulation.


value

Object value
The value. Package visible for direct manipulation.

Class java.util.AbstractMap.SimpleImmutableEntry extends Object implements Serializable

serialVersionUID: 7138329143949025153L

Serialized Fields

key

Object key

value

Object value

Class java.util.ArrayDeque extends AbstractCollection<E> implements Serializable

serialVersionUID: 2340985798034038923L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException

Class java.util.ArrayList extends AbstractList<E> implements Serializable

serialVersionUID: 8683452581122892189L

Serialization Methods

readObject

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

Serial Data:
the size field (int), the length of the backing array (int), followed by its elements (Objects) in proper order.
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.

Serial Data:
the size field (int), the length of the backing array (int), followed by its elements (Objects) in proper order.
Throws:
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

readObject

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

Throws:
IOException
ClassNotFoundException

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.

Throws:
IOException
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.

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.

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.

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

Class java.util.DuplicateFormatFlagsException extends IllegalFormatException implements Serializable

serialVersionUID: 18890531L

Serialized Fields

flags

String flags
The flags which contain a duplicate.

the flags containing a duplicate.

Class java.util.EmptyStackException extends RuntimeException implements Serializable

serialVersionUID: 5084686378493302095L

Class java.util.EnumMap extends AbstractMap<K extends Enum<K>,V> implements Serializable

serialVersionUID: 458661240069192865L

Serialized Fields

store

Object[] store

cardinality

int cardinality

enumClass

Class<T> enumClass

Class java.util.EnumSet extends AbstractSet<T extends Enum<T>> implements Serializable

serialVersionUID: 4782406773684236311L

Serialized Fields

store

BitSet store
The store which maintains the bits used to represent the enumeration constants.


cardinality

int cardinality
The cardinality of the set (the current number of bits set).


enumClass

Class<T> enumClass
The enumeration used by this set.

Class java.util.EventObject extends Object implements Serializable

serialVersionUID: 5516075349620653480L

Class java.util.FormatFlagsConversionMismatchException extends IllegalFormatException implements Serializable

serialVersionUID: 19120414L

Serialized Fields

f

String f
The mismatching flag.

the mismatching flag.

c

char c
The conversion character which doesn't match the appropriate flag.

the conversion character which doesn't match its flag.

Class java.util.FormatterClosedException extends IllegalStateException implements Serializable

serialVersionUID: 18111216L

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<K,V> implements Serializable

serialVersionUID: 362498820763181265L

Serialization Methods

readObject

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

Serial Data:
the capacity(int) that is the length of the bucket array, the size(int) of the hash map are emitted first. They are followed by size entries, each consisting of a key (Object) and a value (Object).
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.

Serial Data:
the capacity(int) that is the length of the bucket array, the size(int) of the hash map are emitted first. They are followed by size entries, each consisting of a key (Object) and a value (Object).
Throws:
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<T> implements Serializable

serialVersionUID: -5024744406713321676L

Serialization Methods

readObject

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

Serial Data:
the capacity (int) and loadFactor (float) of the backing store, followed by the set size (int), then a listing of its elements (Object) in no order
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.

Serial Data:
the capacity (int) and loadFactor (float) of the backing store, followed by the set size (int), then a listing of its elements (Object) in no order
Throws:
IOException - if the underlying stream fails

Class java.util.Hashtable extends Dictionary<K,V> implements Serializable

serialVersionUID: 1421746759512286392L

Serialization Methods

readObject

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

Serial Data:
the capacity (int) that is the length of the bucket array, the size (int) of the hash map are emitted first. They are followed by size entries, each consisting of a key (Object) and a value (Object).
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.

Serial Data:
the capacity (int) that is the length of the bucket array, the size (int) of the hash map are emitted first. They are followed by size entries, each consisting of a key (Object) and a value (Object).
Throws:
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<K,V> implements Serializable

serialVersionUID: 8188218128353913216L

Serialization Methods

readObject

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

Serial Data:
expects the size (int), followed by that many key (Object) and value (Object) pairs, with the pairs in no particular order
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.

Serial Data:
outputs the size (int), followed by that many key (Object) and value (Object) pairs, with the pairs in no particular order
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.IllegalFormatCodePointException extends IllegalFormatException implements Serializable

serialVersionUID: 19080630L

Serialized Fields

c

int c
The character which is an invalid Unicode code point.

the invalid character.

Class java.util.IllegalFormatConversionException extends IllegalFormatException implements Serializable

serialVersionUID: 17000126L

Serialized Fields

c

char c
The conversion character which doesn't match the type of the argument.

the conversion character.

arg

Class<T> arg
The type of the mismatching argument.

the mismatching argument type.

Class java.util.IllegalFormatException extends IllegalArgumentException implements Serializable

serialVersionUID: 18830826L

Class java.util.IllegalFormatFlagsException extends IllegalFormatException implements Serializable

serialVersionUID: 790824L

Serialized Fields

flags

String flags
The set of flags which forms an illegal combination.

the illegal set of flags.

Class java.util.IllegalFormatPrecisionException extends IllegalFormatException implements Serializable

serialVersionUID: 18711008L

Serialized Fields

p

int p
The illegal precision value.

the illegal precision.

Class java.util.IllegalFormatWidthException extends IllegalFormatException implements Serializable

serialVersionUID: 16660902L

Serialized Fields

w

int w
The illegal width value.

the illegal width.

Class java.util.InputMismatchException extends NoSuchElementException implements Serializable

Class java.util.InvalidPropertiesFormatException extends IOException implements Serializable

serialVersionUID: 7763056076009360219L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException
Throws:
IOException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Throws:
IOException

Class java.util.LinkedHashMap extends HashMap<K,V> 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<T> implements Serializable

serialVersionUID: -2851667679971038690L

Class java.util.LinkedList extends AbstractSequentialList<T> implements Serializable

serialVersionUID: 876323262645176354L

Serialization Methods

readObject

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

Serial Data:
the size of the list (int), followed by all the elements (Object) in proper order
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.

Serial Data:
the size of the list (int), followed by all the elements (Object) in proper order
Throws:
IOException - if the underlying stream fails

Class java.util.Locale extends Object implements Serializable

serialVersionUID: 9149081749638150636L

Serialization Methods

readObject

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

Serial Data:
the hashCode is always invalid and must be recomputed
Throws:
IOException - if reading fails
ClassNotFoundException - if reading fails

writeObject

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

Serial Data:
The first three fields are Strings representing language, country, and variant. The fourth field is a placeholder for the cached hashcode, but this is always written as -1, and recomputed when reading it back.
Throws:
IOException - if the write 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 ""

hashcode

int hashcode
This is the cached hashcode. When writing to stream, we write -1.

should be -1 in serial streams

Class java.util.MissingFormatArgumentException extends IllegalFormatException implements Serializable

serialVersionUID: 19190115L

Serialized Fields

s

String s
The format specification which contains the unmatched argument.

the format specification.

Class java.util.MissingFormatWidthException extends IllegalFormatException implements Serializable

serialVersionUID: 15560123L

Serialized Fields

s

String s
The format specification which contains the unmatched argument.

the format specification.

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.PriorityQueue extends java.util.AbstractQueue<E> implements Serializable

serialVersionUID: -7720805057305804111L

Serialized Fields

used

int used
Number of elements actually used in the storage array.


storage

Object[] storage
This is the storage for the underlying binomial heap. The idea is, each node is less than or equal to its children. A node at index N (0-based) has two direct children, at nodes 2N+1 and 2N+2.


comparator

Comparator<T> comparator
The comparator we're using, or null for natural ordering.

Class java.util.Properties extends Hashtable<Object,Object> 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.

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.

Throws:
IOException - if the stream fails
Serialization Overview
PropertyPermission uses a more efficient representation than the serialized form; this documents the difference.

Serialized Fields

action

String action
the action string

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

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.haveNextNextGaussian

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:
Random.next(int)

Class java.util.ServiceConfigurationError extends Error implements Serializable

serialVersionUID: 74132770414881L

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.

Throws:
IOException
ClassNotFoundException
See Also:
SimpleTimeZone.writeObject(java.io.ObjectOutputStream)

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 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.

Throws:
IOException
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.startMode

startDayOfWeek

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

 
See Also:
SimpleTimeZone.startMode

startTime

int startTime
This variable specifies the time of change to daylight savings. This time is given in milliseconds after midnight in startTimeMode chosen time mode.

 

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.startMode

endDay

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

 
See Also:
SimpleTimeZone.startMode

endDayOfWeek

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

 
See Also:
SimpleTimeZone.startMode

endTime

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

 

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<T> 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<K,V> implements Serializable

serialVersionUID: 919286545866124006L

Serialization Methods

readObject

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

Serial Data:
the size (int), followed by key (Object) and value (Object) pairs in sorted order
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.

Serial Data:
the size (int), followed by key (Object) and value (Object) pairs in sorted order
Throws:
IOException - if the underlying stream fails
Serialized Fields

comparator

Comparator<T> 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<T> implements Serializable

serialVersionUID: -2479143000061671589L

Serialization Methods

readObject

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

Serial Data:
the comparator (Object), followed by the set size (int), the the elements in sorted order (Object)
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.

Serial Data:
the comparator (Object), followed by the set size (int), the the elements in sorted order (Object)
Throws:
IOException - if the underlying stream fails

Class java.util.UnknownFormatConversionException extends IllegalFormatException implements Serializable

serialVersionUID: 19060418L

Serialized Fields

s

String s
The unknown conversion.

the unknown conversion.

Class java.util.UnknownFormatFlagsException extends IllegalFormatException implements Serializable

serialVersionUID: 19370506L

Serialized Fields

flags

String flags
The set of flags containing the unknown flag.

the unknown conversion.

Class java.util.UUID extends Object implements Serializable

serialVersionUID: -4856846361193249489L

Serialized Fields

mostSigBits

long mostSigBits
Serialized field - most significant 64 bits.


leastSigBits

long leastSigBits
Serialized field - least significant 64 bits.

Class java.util.Vector extends AbstractList<T> implements Serializable

serialVersionUID: -2767605614048989439L

Serialization Methods

writeObject

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

Serial Data:
just calls default write function
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 Vector.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 Vector.ensureCapacity(int) is called. If <= 0, the vector just doubles in size.

the amount to grow the vector by

Package java.util.concurrent

Class java.util.concurrent.ArrayBlockingQueue extends java.util.AbstractQueue<E> implements Serializable

serialVersionUID: -817911632652898426L

Serialized Fields

items

Object[] items

takeIndex

int takeIndex

putIndex

int putIndex

count

int count

lock

java.util.concurrent.locks.ReentrantLock lock

notEmpty

java.util.concurrent.locks.Condition notEmpty

notFull

java.util.concurrent.locks.Condition notFull

Class java.util.concurrent.BrokenBarrierException extends Exception implements Serializable

serialVersionUID: 7117394618823254244L

Class java.util.concurrent.CancellationException extends IllegalStateException implements Serializable

serialVersionUID: -9202173006928992231L

Class java.util.concurrent.ConcurrentHashMap extends AbstractMap<K,V> implements Serializable

serialVersionUID: 7249069246763182397L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

segmentMask

int segmentMask

segmentShift

int segmentShift

segments

java.util.concurrent.ConcurrentHashMap.Segment<K,V>[] segments

Class java.util.concurrent.ConcurrentLinkedQueue extends java.util.AbstractQueue<E> implements Serializable

serialVersionUID: 196745693267521676L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException

Class java.util.concurrent.ConcurrentSkipListMap extends AbstractMap<K,V> implements Serializable

serialVersionUID: -8627078645895051609L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

comparator

Comparator<T> comparator

Class java.util.concurrent.ConcurrentSkipListSet extends AbstractSet<E> implements Serializable

serialVersionUID: -2479143111061671589L

Serialized Fields

m

java.util.concurrent.ConcurrentNavigableMap<K,V> m

Class java.util.concurrent.CopyOnWriteArrayList extends Object implements Serializable

serialVersionUID: 8673264195747942595L

Serialization Methods

readObject

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

Serial Data:
the size field (int), the length of the backing array (int), followed by its elements (Objects) in proper order.
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.

Serial Data:
the size field (int), the length of the backing array (int), followed by its elements (Objects) in proper order.
Throws:
IOException - if the underlying stream fails

Class java.util.concurrent.CopyOnWriteArraySet extends AbstractSet<E> implements Serializable

serialVersionUID: 5457747651344034263L

Serialized Fields

al

CopyOnWriteArrayList<E> al

Class java.util.concurrent.ExecutionException extends Exception implements Serializable

serialVersionUID: 7830266012832686185L

Class java.util.concurrent.LinkedBlockingDeque extends java.util.AbstractQueue<E> implements Serializable

serialVersionUID: -387911632671998426L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

capacity

int capacity

lock

java.util.concurrent.locks.ReentrantLock lock

notEmpty

java.util.concurrent.locks.Condition notEmpty

notFull

java.util.concurrent.locks.Condition notFull

Class java.util.concurrent.LinkedBlockingQueue extends java.util.AbstractQueue<E> implements Serializable

serialVersionUID: -6903933977591709194L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

capacity

int capacity

count

java.util.concurrent.atomic.AtomicInteger count

takeLock

java.util.concurrent.locks.ReentrantLock takeLock

notEmpty

java.util.concurrent.locks.Condition notEmpty

putLock

java.util.concurrent.locks.ReentrantLock putLock

notFull

java.util.concurrent.locks.Condition notFull

Class java.util.concurrent.PriorityBlockingQueue extends java.util.AbstractQueue<E> implements Serializable

serialVersionUID: 5595510919245408276L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

q

PriorityQueue<E> q

lock

java.util.concurrent.locks.ReentrantLock lock

notEmpty

java.util.concurrent.locks.Condition notEmpty

Class java.util.concurrent.RejectedExecutionException extends RuntimeException implements Serializable

serialVersionUID: -375805702767069545L

Class java.util.concurrent.Semaphore extends Object implements Serializable

serialVersionUID: -3222578661600680210L

Serialized Fields

sync

java.util.concurrent.Semaphore.Sync sync

Class java.util.concurrent.SynchronousQueue extends java.util.AbstractQueue<E> implements Serializable

serialVersionUID: -3223113410248163686L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

qlock

java.util.concurrent.locks.ReentrantLock qlock

waitingProducers

java.util.concurrent.SynchronousQueue.WaitQueue waitingProducers

waitingConsumers

java.util.concurrent.SynchronousQueue.WaitQueue waitingConsumers

Class java.util.concurrent.TimeoutException extends Exception implements Serializable

serialVersionUID: 1900926677490660714L


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: 63564341580231582L

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

serialVersionUID: 5372048053134512534L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serial Data:
The default fields, followed by a major byte version number, followed by a minor byte version number, followed by information about the log record parameters. If parameters is null, the integer -1 is written, otherwise the length of the parameters array (which can be zero), followed by the result of calling 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.

Throws:
IOException
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

readObject

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

Throws:
NotSerializableException

writeObject

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

Throws:
NotSerializableException

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

serialVersionUID: -791715184232119669L

Serialization Methods

readObject

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

Throws:
NotSerializableException

writeObject

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

Throws:
NotSerializableException

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

serialVersionUID: 8068949086596572957L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws IOException
Throws:
IOException

writeObject

private void writeObject(ObjectOutputStream oos)
                  throws IOException
Throws:
IOException

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

serialVersionUID: 793724513368024975L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws IOException
Throws:
IOException

writeObject

private void writeObject(ObjectOutputStream oos)
                  throws IOException
Throws:
IOException
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

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.ZipError extends InternalError implements Serializable

serialVersionUID: 853973422266861979L

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

serialVersionUID: 8000196834066748623L


Package javax.activation

Class javax.activation.ActivationDataFlavor extends DataFlavor implements Serializable

Serialization Methods

readExternal

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

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

writeExternal

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

Throws:
IOException - If an error occurs.

Class javax.activation.MimeType extends Object implements Serializable

Serialization Methods

readExternal

public void readExternal(ObjectInput in)
                  throws IOException,
                         ClassNotFoundException
Throws:
IOException - If any other error occurs
ClassNotFoundException - If the class of an object being restored cannot be found

writeExternal

public void writeExternal(ObjectOutput out)
                   throws IOException
Throws:
IOException - If an error occurs

Class javax.activation.MimeTypeParseException extends Exception implements Serializable

Class javax.activation.UnsupportedDataTypeException extends IOException implements Serializable


Package javax.activity

Class javax.activity.ActivityCompletedException extends RemoteException implements Serializable

Class javax.activity.ActivityRequiredException extends RemoteException implements Serializable

Class javax.activity.InvalidActivityException extends RemoteException implements Serializable


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.

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

writeObject

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

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.crypto.interfaces

Package javax.crypto.spec

Class javax.crypto.spec.SecretKeySpec extends Object implements Serializable

serialVersionUID: 6577238317307289933L

Serialized Fields

key

byte[] key
The key bytes.


algorithm

String algorithm
The algorithm's name.


Package javax.imageio

Class javax.imageio.IIOException extends IOException implements Serializable


Package javax.imageio.metadata

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

serialVersionUID: -1314083172544132777L

Serialized Fields

offendingNode

Node offendingNode

Package javax.management

Class javax.management.Attribute extends Object implements Serializable

serialVersionUID: 2484220110589082382L

Serialized Fields

m_name

String m_name
The attribute name.


m_value

Object m_value
The attribute value.

Class javax.management.AttributeChangeNotification extends Notification implements Serializable

serialVersionUID: 535176054565814134L

Serialized Fields

attributeName

String attributeName
The name of the attribute that changed.


attributeType

String attributeType
The type of the attribute that changed.


oldValue

Object oldValue
The old value of the attribute.


newValue

Object newValue
The new value of the attribute.

Class javax.management.AttributeChangeNotificationFilter extends Object implements Serializable

serialVersionUID: -6347317584796410029L

Serialized Fields

enabledAttributes

Vector<T> enabledAttributes
Lists the names of the attributes that may pass through the filter.

Class javax.management.AttributeList extends ArrayList<Object> implements Serializable

serialVersionUID: -4077085769279709076L

Class javax.management.AttributeNotFoundException extends OperationsException implements Serializable

Class javax.management.AttributeValueExp extends Object implements Serializable

serialVersionUID: -7768025046539163385L

Serialized Fields

attr

String attr
The name of the attribute.

Class javax.management.BadAttributeValueExpException extends Exception implements Serializable

serialVersionUID: -3105272988410493376L

Serialized Fields

val

Object val
The attribute value that caused the exception.

Class javax.management.BadBinaryOpValueExpException extends Exception implements Serializable

serialVersionUID: 5068475589449021227L

Serialized Fields

exp

ValueExp exp
The value expression that caused the exception.

Class javax.management.BadStringOperationException extends Exception implements Serializable

serialVersionUID: 7802201238441662100L

Serialized Fields

op

String op
The operation that caused the exception.

Class javax.management.ImmutableDescriptor extends Object implements Serializable

serialVersionUID: 8853308591080540165L

Serialization Methods

readResolve

private Object readResolve()
                    throws InvalidObjectException
Throws:
InvalidObjectException
Serialized Fields

names

String[] names

values

Object[] values

Class javax.management.InstanceAlreadyExistsException extends OperationsException implements Serializable

serialVersionUID: 8893743928912733931L

Class javax.management.InstanceNotFoundException extends OperationsException implements Serializable

serialVersionUID: -882579438394773049L

Class javax.management.IntrospectionException extends OperationsException implements Serializable

serialVersionUID: 1054516935875481725L

Class javax.management.InvalidApplicationException extends Exception implements Serializable

serialVersionUID: -3048022274675537269L

Serialized Fields

val

Object val
The attribute value that caused the exception.

Class javax.management.InvalidAttributeValueException extends OperationsException implements Serializable

Class javax.management.JMException extends Exception implements Serializable

Class javax.management.JMRuntimeException extends RuntimeException implements Serializable

Class javax.management.ListenerNotFoundException extends OperationsException implements Serializable

serialVersionUID: -7242605822448519061L

Class javax.management.MalformedObjectNameException extends OperationsException implements Serializable

serialVersionUID: -572689714442915824L

Class javax.management.MBeanAttributeInfo extends MBeanFeatureInfo implements Serializable

serialVersionUID: 8644704819898565848L

Serialized Fields

attributeType

String attributeType
The type of the attribute.

the attribute type.

isWrite

boolean isWrite
True if the attribute's value can be changed.

true if the value can be changed.

isRead

boolean isRead
True if the attribute's value can be read.

true if the value can be read.

is

boolean is
True if the attribute is a boolean and thus has a isXXX accessor rather than a getXXX accessor.

true if the attribute has an isXXX accessor.

Class javax.management.MBeanConstructorInfo extends MBeanFeatureInfo implements Serializable

serialVersionUID: 4433990064191844427L

Serialized Fields

signature

MBeanParameterInfo[] signature
The signature of the constructor i.e. the argument types.

Class javax.management.MBeanException extends JMException implements Serializable

serialVersionUID: 4066342430588744142L

Serialized Fields

exception

Exception exception
The target exception.

the target exception.

Class javax.management.MBeanFeatureInfo extends Object implements Serializable

serialVersionUID: 3952882688968447265L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialize the MBeanFeatureInfo.

Throws:
IOException - if an I/O error occurs.
Serialized Fields

description

String description
A description of the feature in human-readable form. Subclasses should access this via the MBeanFeatureInfo.getDescription() function rather than using the value directly.

a description of the feature.

name

String name
The name of the feature. Subclasses should access this via the MBeanFeatureInfo.getName() function rather than using the value directly.

the name of the feature.

Class javax.management.MBeanInfo extends Object implements Serializable

serialVersionUID: -6451021435135161911L

Serialized Fields

description

String description
A description of the bean.

The bean's description.

className

String className
The class name of the management bean.

The bean's class name.

attributes

MBeanAttributeInfo[] attributes
Descriptions of the attributes provided by the bean.


operations

MBeanOperationInfo[] operations
Descriptions of the operations provided by the bean.


constructors

MBeanConstructorInfo[] constructors
Descriptions of the bean's constructors.


notifications

MBeanNotificationInfo[] notifications
Descriptions of the notifications emitted by the bean.

The bean's notifications.

Class javax.management.MBeanNotificationInfo extends MBeanFeatureInfo implements Serializable

serialVersionUID: -3888371564530107064L

Serialized Fields

types

String[] types
The types of notification described by this instance.

the types of notification.

Class javax.management.MBeanOperationInfo extends MBeanFeatureInfo implements Serializable

serialVersionUID: -6178860474881375330L

Serialized Fields

type

String type
The return type of the method, in the form of its class name.


signature

MBeanParameterInfo[] signature
The signature of the constructor i.e. the argument types.


impact

int impact
The impact of the method, as one of MBeanOperationInfo.INFO, MBeanOperationInfo.ACTION, MBeanOperationInfo.ACTION_INFO and MBeanOperationInfo.UNKNOWN.

Class javax.management.MBeanParameterInfo extends MBeanFeatureInfo implements Serializable

serialVersionUID: 7432616882776782338L

Serialized Fields

type

String type
The type of the parameter, represented by the class name.

Class javax.management.MBeanPermission extends Permission implements Serializable

serialVersionUID: -2416928705275160661L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Reads the object from a stream and ensures the incoming data is valid.

Throws:
IOException - if an I/O error occurs.
ClassNotFoundException - if a class used by the object can not be found.
Serialized Fields

actions

String actions
The list of actions associated with this permission.

Class javax.management.MBeanRegistrationException extends MBeanException implements Serializable

serialVersionUID: 4482382455277067805L

Class javax.management.MBeanServerNotification extends Notification implements Serializable

serialVersionUID: 2876477500475969677L

Serialized Fields

objectName

ObjectName objectName
The name of the bean which forms the subject of this notification.

Class javax.management.MBeanServerPermission extends BasicPermission implements Serializable

serialVersionUID: -5661980843569388590L

Class javax.management.MBeanTrustPermission extends BasicPermission implements Serializable

serialVersionUID: -2952178077029018140L

Class javax.management.NotCompliantMBeanException extends OperationsException implements Serializable

serialVersionUID: 5175579583207963577L

Class javax.management.Notification extends EventObject implements Serializable

serialVersionUID: -7516092053498031989L

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialize the Notification.

Throws:
IOException - if an I/O error occurs.
Serialized Fields

message

String message
The notification message.

the notification message.

sequenceNumber

long sequenceNumber
The notification's sequence number, relative to the notifications emitted by the bean.

the notification sequence number.

source

Object source
The source of the notification. This is redeclared in order to replace the source variable in EventObject with a non-transient version.

the notification source.

timeStamp

long timeStamp
The time the notification was generated.

the notification timestamp.

type

String type
The type of notification sent. This utilises the same style as Java property and package names. For example, gnu.gcj.compiler may be one type of notifications.

the notification type.

userData

Object userData
The user data associated with the notification. This includes any additional data which should be transmitted with the notification, but can't be achieved using the String format of the message.

the notification user data.

Class javax.management.NotificationFilterSupport extends Object implements Serializable

serialVersionUID: 6579080007561786969L

Serialized Fields

enabledTypes

Vector<T> enabledTypes
Lists the types that may pass through the filter.

Class javax.management.ObjectInstance extends Object implements Serializable

serialVersionUID: -4099952623687795850L

Serialized Fields

name

ObjectName name
The name of the bean.


className

String className
The class name of the bean.

Class javax.management.ObjectName extends Object implements Serializable

serialVersionUID: 1081892073854801359L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Reads the serialized form, which is that used by the constructor.

Throws:
IOException - if an I/O error occurs.
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serialize this ObjectName. The serialized form is the same as the string parsed by the constructor.

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

Class javax.management.OperationsException extends JMException implements Serializable

serialVersionUID: -4967597595580536216L

Class javax.management.QueryEval extends Object implements Serializable

serialVersionUID: 2675899265640874796L

Class javax.management.ReflectionException extends JMException implements Serializable

serialVersionUID: 9170809325636915553L

Serialized Fields

exception

Exception exception
The target exception.

the target exception.

Class javax.management.RuntimeErrorException extends JMRuntimeException implements Serializable

serialVersionUID: 704338937753949796L

Serialized Fields

error

Error error
The target error.

the target error.

Class javax.management.RuntimeMBeanException extends JMRuntimeException implements Serializable

serialVersionUID: 5274912751982730171L

Serialized Fields

runtimeException

RuntimeException runtimeException
The target exception.

the target exception.

Class javax.management.RuntimeOperationsException extends JMRuntimeException implements Serializable

serialVersionUID: -8408923047489133588L

Serialized Fields

runtimeException

RuntimeException runtimeException
The target exception.

the target exception.

Class javax.management.ServiceNotFoundException extends OperationsException implements Serializable

serialVersionUID: -3990675661956646827L

Class javax.management.StringValueExp extends Object implements Serializable

serialVersionUID: -3256390509806284044L

Serialized Fields

val

String val
The string value.


Package javax.management.loading

Class javax.management.loading.MLet extends URLClassLoader implements Serializable

serialVersionUID: 3636148327800330130L

Serialization Methods

readExternal

public void readExternal(ObjectInput arg0)
                  throws IOException,
                         ClassNotFoundException,
                         UnsupportedOperationException
Throws:
IOException - If any other error occurs
ClassNotFoundException - If the class of an object being restored cannot be found
UnsupportedOperationException

writeExternal

public void writeExternal(ObjectOutput arg0)
                   throws IOException,
                          UnsupportedOperationException
Throws:
IOException - If an error occurs
UnsupportedOperationException

Class javax.management.loading.PrivateMLet extends javax.management.loading.MLet implements Serializable

serialVersionUID: 2503458973393711979L

Serialization Methods

readExternal

public void readExternal(ObjectInput arg0)
                  throws IOException,
                         ClassNotFoundException,
                         UnsupportedOperationException
Throws:
IOException - If any other error occurs
ClassNotFoundException - If the class of an object being restored cannot be found
UnsupportedOperationException

writeExternal

public void writeExternal(ObjectOutput arg0)
                   throws IOException,
                          UnsupportedOperationException
Throws:
IOException - If an error occurs
UnsupportedOperationException

Package javax.management.openmbean

Class javax.management.openmbean.ArrayType extends OpenType<T> implements Serializable

serialVersionUID: 720504429830309770L

Serialized Fields

dimension

int dimension
The number of dimensions arrays of this type has.


elementType

OpenType<T> elementType
The element type of arrays of this type.


primitiveArray

boolean primitiveArray
True if this type represents a primitive array.

Class javax.management.openmbean.CompositeDataSupport extends Object implements Serializable

serialVersionUID: 8003518976613702244L

Serialized Fields

contents

SortedMap<K,V> contents
Mapping of field names to values.

the map of field names to values.

compositeType

CompositeType compositeType
The composite type which represents this composite data instance.

the type information for this instance.

Class javax.management.openmbean.CompositeType extends OpenType<CompositeData> implements Serializable

serialVersionUID: -5366242454346948798L

Serialized Fields

nameToDescription

TreeMap<K,V> nameToDescription
A map of item names to their descriptions.


nameToType

TreeMap<K,V> nameToType
A map of item names to their types.

Class javax.management.openmbean.InvalidKeyException extends IllegalArgumentException implements Serializable

serialVersionUID: 4224269443946322062L

Class javax.management.openmbean.InvalidOpenTypeException extends IllegalArgumentException implements Serializable

serialVersionUID: -2837312755412327534L

Class javax.management.openmbean.KeyAlreadyExistsException extends IllegalArgumentException implements Serializable

serialVersionUID: 1845183636745282866L

Class javax.management.openmbean.OpenDataException extends JMException implements Serializable

serialVersionUID: 8346311255433349870L

Class javax.management.openmbean.OpenMBeanAttributeInfoSupport extends MBeanAttributeInfo implements Serializable

serialVersionUID: -4867215622149721849L

Serialized Fields

openType

OpenType<T> openType
The open type of the attribute.


defaultValue

Object defaultValue
The default value of the attribute (may be null).


legalValues

Set<E> legalValues
The possible legal values of the attribute (may be null).


minValue

Comparable<T> minValue
The minimum value of the attribute (may be null).


maxValue

Comparable<T> maxValue
The maximum value of the attribute (may be null).

Class javax.management.openmbean.OpenMBeanConstructorInfoSupport extends MBeanConstructorInfo implements Serializable

serialVersionUID: -4400441579007477003L

Class javax.management.openmbean.OpenMBeanInfoSupport extends MBeanInfo implements Serializable

serialVersionUID: 4349395935420511492L

Class javax.management.openmbean.OpenMBeanOperationInfoSupport extends MBeanOperationInfo implements Serializable

serialVersionUID: 4996859732565369366L

Serialized Fields

returnOpenType

OpenType<T> returnOpenType
The open type representing the return value.

Class javax.management.openmbean.OpenMBeanParameterInfoSupport extends MBeanParameterInfo implements Serializable

serialVersionUID: -7235016873758443122L

Serialized Fields

openType

OpenType<T> openType
The open type of the parameter.


defaultValue

Object defaultValue
The default value of the parameter (may be null).


legalValues

Set<E> legalValues
The possible legal values of the parameter (may be null).


minValue

Comparable<T> minValue
The minimum value of the parameter (may be null).


maxValue

Comparable<T> maxValue
The maximum value of the parameter (may be null).

Class javax.management.openmbean.OpenType extends Object implements Serializable

serialVersionUID: -9195195325186646468L

Serialized Fields

className

String className
The name of the Java class this type represents.


typeName

String typeName
The name of this type.


description

String description
A description of this type.

Class javax.management.openmbean.SimpleType extends OpenType<T> implements Serializable

serialVersionUID: 2215577471957694503L

Serialization Methods

readResolve

public Object readResolve()
                   throws ObjectStreamException
Replaces instances of this class read from an ObjectInputStream with one of the predefined values. This ensures that each existing instance of this class is one of these unique instances.

Throws:
ObjectStreamException - if the object can not be resolved.

Class javax.management.openmbean.TabularDataSupport extends Object implements Serializable

serialVersionUID: 5720150593236309827L

Serialized Fields

dataMap

HashMap<K,V> dataMap
Mapping of rows to column values.

the map of rows to column values.

tabularType

TabularType tabularType
The tabular type which represents this tabular data instance.

the type information for this instance.

Class javax.management.openmbean.TabularType extends OpenType<TabularData> implements Serializable

serialVersionUID: 6554071860220659261L

Serialized Fields

rowType

CompositeType rowType
The composite type used by the rows of the table.


indexNames

List<E> indexNames
The list of index names, which form the columns of the table. They are retained in the order given by the user, and is unmodifiable.


Package javax.management.remote

Class javax.management.remote.JMXConnectionNotification extends Notification implements Serializable

serialVersionUID: -2331308725952627538L

Serialized Fields

connectionId

String connectionId

Class javax.management.remote.JMXPrincipal extends Object implements Serializable

serialVersionUID: -4184480100214577411L

Serialized Fields

name

String name

Class javax.management.remote.JMXProviderException extends IOException implements Serializable

serialVersionUID: -3166703627550447198L

Serialized Fields

cause

Throwable cause

Class javax.management.remote.JMXServerErrorException extends IOException implements Serializable

serialVersionUID: 3996732239558744666L

Serialized Fields

cause

Error cause

Class javax.management.remote.JMXServiceURL extends Object implements Serializable

serialVersionUID: 8173364409860779292L

Serialized Fields

protocol

String protocol

host

String host

port

int port

urlPath

String urlPath

Class javax.management.remote.NotificationResult extends Object implements Serializable

serialVersionUID: 1191800228721395279L

Serialized Fields

earliestSequenceNumber

long earliestSequenceNumber
The sequence number of the first notification.


nextSequenceNumber

long nextSequenceNumber
The sequence number of the next notification to be returned by a future query.


targetedNotifications

TargetedNotification[] targetedNotifications
The pairs of notifications and identifiers returned by the query.

Class javax.management.remote.SubjectDelegationPermission extends BasicPermission implements Serializable

serialVersionUID: 1481618113008682343L

Class javax.management.remote.TargetedNotification extends Object implements Serializable

serialVersionUID: 7676132089779300926L

Serialized Fields

notif

Notification notif
The notification that was recieved by the listener.


id

Integer id
The identifier for the listener that received the notification;


Package javax.management.remote.rmi

Class javax.management.remote.rmi._RMIConnection_Stub extends Stub implements Serializable

Class javax.management.remote.rmi._RMIServer_Stub extends Stub implements Serializable

Class javax.management.remote.rmi.RMIConnectionImpl_Stub extends RemoteStub implements Serializable

serialVersionUID: 2L

Class javax.management.remote.rmi.RMIConnector extends Object implements Serializable

serialVersionUID: 817323035842634473L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException
Serialized Fields

rmiServer

RMIServer rmiServer

jmxServiceURL

javax.management.remote.JMXServiceURL jmxServiceURL

Class javax.management.remote.rmi.RMIServerImpl_Stub extends RemoteStub implements Serializable

serialVersionUID: 2L


Package javax.naming

Class javax.naming.AuthenticationException extends NamingSecurityException implements Serializable

serialVersionUID: 3678497619904568096L

Class javax.naming.AuthenticationNotSupportedException extends NamingSecurityException implements Serializable

serialVersionUID: -7149033933259492300L

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

serialVersionUID: 8839217842691845890L

Serialized Fields

boundObj

Object boundObj

Class javax.naming.CannotProceedException extends NamingException implements Serializable

serialVersionUID: 1219724816191576813L

Serialized Fields

remainingNewName

Name remainingNewName

environment

Hashtable<K,V> environment

altName

Name altName

altNameCtx

Context altNameCtx

Class javax.naming.CommunicationException extends NamingException implements Serializable

serialVersionUID: 3618507780299986611L

Class javax.naming.CompositeName extends Object implements Serializable

serialVersionUID: 1667768148915813118L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException

Class javax.naming.CompoundName extends Object implements Serializable

serialVersionUID: 3513100557083972036L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException

Class javax.naming.ConfigurationException extends NamingException implements Serializable

serialVersionUID: -2535156726228855704L

Class javax.naming.ContextNotEmptyException extends NamingException implements Serializable

serialVersionUID: 1090963683348219877L

Class javax.naming.InsufficientResourcesException extends NamingException implements Serializable

serialVersionUID: 6227672693037844532L

Class javax.naming.InterruptedNamingException extends NamingException implements Serializable

serialVersionUID: 6404516648893194728L

Class javax.naming.InvalidNameException extends NamingException implements Serializable

serialVersionUID: -8370672380823801105L

Class javax.naming.LimitExceededException extends NamingException implements Serializable

serialVersionUID: -776898738660207856L

Class javax.naming.LinkException extends NamingException implements Serializable

serialVersionUID: -7967662604076777712L

Serialized Fields

linkResolvedName

Name linkResolvedName

linkResolvedObj

Object linkResolvedObj

linkRemainingName

Name linkRemainingName

linkExplanation

String linkExplanation

Class javax.naming.LinkLoopException extends LinkException implements Serializable

serialVersionUID: -3119189944325198009L

Class javax.naming.LinkRef extends Reference implements Serializable

serialVersionUID: -5386290613498931298L

Class javax.naming.MalformedLinkException extends LinkException implements Serializable

serialVersionUID: -3066740437737830242L

Class javax.naming.NameAlreadyBoundException extends NamingException implements Serializable

serialVersionUID: -8491441000356780586L

Class javax.naming.NameClassPair extends Object implements Serializable

serialVersionUID: 5620776610160863339L

Serialized Fields

name

String name

className

String className

isRel

boolean isRel

fullName

String fullName

Class javax.naming.NameNotFoundException extends NamingException implements Serializable

serialVersionUID: -8007156725367842053L

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: -3413733186901258623L

Class javax.naming.NoPermissionException extends NamingSecurityException implements Serializable

serialVersionUID: 8395332708699751775L

Class javax.naming.NotContextException extends NamingException implements Serializable

serialVersionUID: 849752551644540417L

Class javax.naming.OperationNotSupportedException extends NamingException implements Serializable

serialVersionUID: 5493232822427682064L

Class javax.naming.PartialResultException extends NamingException implements Serializable

serialVersionUID: 2572144970049426786L

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

serialVersionUID: -1673475790065791735L

Serialized Fields

addrs

Vector<T> addrs
The list of addresses, stored in this reference. The object may be have by several different addresses.


classFactory

String classFactory
The name of the class factory to create an instance of the object, referenced by this reference.


classFactoryLocation

String classFactoryLocation
The location, from where the class factory should be loaded.


className

String className
The name of the class of the object, to that this reference refers.

Class javax.naming.ReferralException extends NamingException implements Serializable

serialVersionUID: -2881363844695698876L

Class javax.naming.ServiceUnavailableException extends NamingException implements Serializable

serialVersionUID: -4996964726566773444L

Class javax.naming.SizeLimitExceededException extends LimitExceededException implements Serializable

serialVersionUID: 7129289564879168579L

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: -3597009011385034696L


Package javax.naming.directory

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

serialVersionUID: 4437710305529322564L

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

serialVersionUID: 8060676069678710186L

Serialized Fields

unexecs

ModificationItem[] unexecs

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

serialVersionUID: 6743528196119291326L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException
Serialized Fields

attrID

String attrID
The ID of this attribute.


ordered

boolean ordered
True if this attribute's values are ordered.

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

serialVersionUID: 4980164073184639448L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException
Serialized Fields

ignoreCase

boolean ignoreCase

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

serialVersionUID: -9036920266322999923L

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

serialVersionUID: 2607612850539889765L

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

serialVersionUID: 8720050295499275011L

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

serialVersionUID: -5124108943352665777L

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

serialVersionUID: 2902700940682875441L

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

serialVersionUID: 7573258562534746850L

Serialized Fields

mod_op

int mod_op

attr

Attribute attr

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

serialVersionUID: 4836415647935888137L

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

serialVersionUID: -3041762429525049663L

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

serialVersionUID: -2480540967773454797L

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

serialVersionUID: -9158063327699723172L

Serialized Fields

attrs

Attributes attrs

Package javax.naming.event

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

serialVersionUID: -7126752885365133499L

Serialized Fields

changeInfo

Object changeInfo

type

int type

oldBinding

Binding oldBinding

newBinding

Binding newBinding

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

serialVersionUID: -4877678086134736336L

Serialized Fields

exception

NamingException exception

Package javax.naming.ldap

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

serialVersionUID: -4233907508771791687L

Serialized Fields

id

String id

criticality

boolean criticality

value

byte[] value

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

serialVersionUID: -1595520034788997356L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException

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

Class javax.naming.ldap.ManageReferralControl extends javax.naming.ldap.BasicControl implements Serializable

serialVersionUID: 3017756160149982566L

Class javax.naming.ldap.PagedResultsControl extends javax.naming.ldap.BasicControl implements Serializable

serialVersionUID: 6684806685736844298L

Class javax.naming.ldap.PagedResultsResponseControl extends javax.naming.ldap.BasicControl implements Serializable

serialVersionUID: -8819778744844514666L

Serialized Fields

resultSize

int resultSize

cookie

byte[] cookie

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

serialVersionUID: -5994465067210009656L

Serialization Methods

readObject

private void readObject(ObjectInputStream arg0)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream arg0)
                  throws IOException
Throws:
IOException

Class javax.naming.ldap.SortControl extends javax.naming.ldap.BasicControl implements Serializable

serialVersionUID: -1965961680233330744L

Class javax.naming.ldap.SortResponseControl extends javax.naming.ldap.BasicControl implements Serializable

serialVersionUID: 5142939176006310877L

Serialized Fields

resultCode

int resultCode

badAttrId

String badAttrId

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

serialVersionUID: 4441679576360753397L

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

serialVersionUID: 8372842182579276418L

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

serialVersionUID: -4552108072002407559L

Serialized Fields

resolvedObj

Object resolvedObj
The object, to that part of the name has been resolved.


remainingName

Name remainingName
The remaining, unresolved part of the name.


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: 4511006460650708967L

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

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

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

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

serialVersionUID: -3456898025505876775L

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

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

Serialization Methods

readObject

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

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
Throws:
IOException
Serialized Fields

myClassName

String myClassName

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

serialVersionUID: -9065578006593857475L

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

serialVersionUID: -8720590903724405128L

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

serialVersionUID: -7045842700749194127L

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


Package javax.print.attribute

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

Serialization Methods

readResolve

protected Object readResolve()
                      throws ObjectStreamException
Needed for singelton semantics during deserialisation. Subclasses must not override this class. Subclasses have to override getEnumValueTable() and should override getStringTable() for correct serialization.

Throws:
ObjectStreamException - if getEnumValueTable() returns null.
Serialized Fields

value

int value

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

serialVersionUID: 5311560590283707917L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException
Serialized Fields

myInterface

Class<T> myInterface

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
x size in micrometers.


y

int y
y size in micrometers.

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

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<JobStateReason> implements Serializable

serialVersionUID: 8849088261264331812L

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

serialVersionUID: -2823970704630722439L

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

serialVersionUID: 4653117714524155448L

Class javax.print.attribute.standard.MediaPrintableArea extends Object implements Serializable

serialVersionUID: -1597171464050795793L

Serialized Fields

x

int x
x in micrometers.


y

int y
y in micrometers.


w

int w
width in micrometers.


h

int h
height in micrometers.

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

serialVersionUID: -1967958664615414771L

Serialized Fields

mediaName

MediaSizeName mediaName

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

serialVersionUID: 2778798329756942747L

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

serialVersionUID: -982503611095214703L

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<PrinterStateReason,Severity> 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

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
The reason (one of the defined constants).

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

Serialized Fields

attributes

PrintServiceAttributeSet attributes

Package javax.rmi.CORBA

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

serialVersionUID: -3477057297839810709L

Serialized Fields

repid

String repid
The class repository Id.


codebase

String codebase
Space separeted list of URL's from where the code can be downloaded.

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

serialVersionUID: 1087775603798577179L

Serialization Methods

readObject

private void readObject(ObjectInputStream input)
                 throws IOException,
                        ClassNotFoundException
Required by serialized form of Java API doc.

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream output)
                  throws IOException
Required by serialized form of Java API doc.

Throws:
IOException

Package javax.rmi.ssl

Class javax.rmi.ssl.SslRMIClientSocketFactory extends Object implements Serializable

serialVersionUID: -8310631444933958385L

Serialized Fields

enabledCipherSuites

String[] enabledCipherSuites

enabledProtocols

String[] enabledProtocols

Package javax.security.auth

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

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

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

serialVersionUID: 5284372143517237068L

Serialized Fields

credentialClass

String credentialClass
The credential class name.

principals

Set<E> 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

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

serialVersionUID: -8308522755600156056L

Serialized Fields

principals

Set<E> 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
the list of choices.
Since:
1.4

defaultChoice

int defaultChoice
the choice to be used as the default choice.
Since:
1.4

multipleSelectionsAllowed

boolean multipleSelectionsAllowed
whether multiple selections are allowed from the list of choices.
Since:
1.4

selections

int[] selections
the selected choices, represented as indexes into the choices list.
Since:
1.4

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

Serialized Fields

callback

Callback callback
 

Package javax.security.auth.kerberos

Class javax.security.auth.kerberos.DelegationPermission extends BasicPermission implements Serializable

Class javax.security.auth.kerberos.KerberosKey extends Object implements Serializable

serialVersionUID: -4625402278148246993L

Serialized Fields

principal

KerberosPrincipal principal

versionNum

int versionNum

key

javax.security.auth.kerberos.KeyImpl key

Class javax.security.auth.kerberos.KerberosPrincipal extends Object implements Serializable

Serialized Fields

name

String name

type

int type

realm

String realm

Class javax.security.auth.kerberos.KerberosTicket extends Object implements Serializable

serialVersionUID: 7395334370157380539L

Serialized Fields

asn1Encoding

byte[] asn1Encoding

sessionKey

javax.security.auth.kerberos.KeyImpl sessionKey

flags

boolean[] flags

authTime

Date authTime

startTime

Date startTime

endTime

Date endTime

renewTill

Date renewTill

client

KerberosPrincipal client

server

KerberosPrincipal server

clientAddresses

InetAddress[] clientAddresses

Class javax.security.auth.kerberos.ServicePermission extends Permission implements Serializable

Serialized Fields

flags

int flags

Package javax.security.auth.login

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

serialVersionUID: -2112878680072211787L

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

serialVersionUID: -6064064890162661560L

Class javax.security.auth.login.AccountLockedException extends AccountException implements Serializable

serialVersionUID: 8280345554014066334L

Class javax.security.auth.login.AccountNotFoundException extends AccountException implements Serializable

serialVersionUID: 1498349563916294614L

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

serialVersionUID: -4772893876810601859L

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

serialVersionUID: -5344739593859737937L

Class javax.security.auth.login.CredentialNotFoundException extends CredentialException implements Serializable

serialVersionUID: -7779934467214319475L

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

readObject

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

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Throws:
IOException
Serialized Fields

sep

int sep

Package javax.security.cert

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

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

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

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

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


Package javax.security.sasl

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

Class javax.security.sasl.AuthorizeCallback extends Object implements Serializable

serialVersionUID: -2353344186490470805L

Serialized Fields

authenticationID

String authenticationID
The (authenticated) authentication id to check.

authorizationID

String authorizationID
The authorization id to check.

authorizedID

String authorizedID
The id of the authorized entity. If null, the id of the authorized entity is authorizationID.

authorized

boolean authorized
A flag indicating whether the authentication id is allowed to act on behalf of the authorization id.

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: 4579784287983423626L

Serialized Fields

_exception

Throwable _exception
The possibly null root cause exception.

Package javax.sound.midi

Class javax.sound.midi.InvalidMidiDataException extends Exception implements Serializable

serialVersionUID: 2780771756789932067L

Class javax.sound.midi.MidiUnavailableException extends Exception implements Serializable

serialVersionUID: 6093809578628944323L


Package javax.sound.sampled

Class javax.sound.sampled.AudioPermission extends BasicPermission implements Serializable

serialVersionUID: -5518053473477801126L

Class javax.sound.sampled.LineEvent extends EventObject implements Serializable

serialVersionUID: -1274246333383880410L

Serialization Methods

readObject

private void readObject(ObjectInputStream ois)
                 throws IOException
Throws:
IOException

writeObject

private void writeObject(ObjectOutputStream oos)
                  throws IOException
Throws:
IOException
Serialized Fields

type

LineEvent.Type type

framePosition

long framePosition

line

Line line

Class javax.sound.sampled.LineUnavailableException extends Exception implements Serializable

serialVersionUID: -2046718279487432130L

Class javax.sound.sampled.UnsupportedAudioFileException extends Exception implements Serializable

serialVersionUID: -139127412623160368L


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

Class javax.sql.StatementEvent extends EventObject implements Serializable

Serialized Fields

exception

SQLException exception

statement

PreparedStatement statement

Package javax.swing

Class javax.swing.AbstractAction extends Object implements Serializable

serialVersionUID: -6803159439231523484L

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.


disabledIcon

Icon disabledIcon
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.


eventHandler

javax.swing.AbstractButton.EventHandler eventHandler
The event handler for ActionEvent, ItemEvent and ChangeEvent. This replaces the above three handlers and combines them into one for efficiency.


multiClickThreshhold

long multiClickThreshhold
The time in milliseconds 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


clientBorderPaintedSet

boolean clientBorderPaintedSet
Indicates if the borderPainted property has been set by a client program or by the UI.

See Also:
AbstractButton.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

clientRolloverEnabledSet

boolean clientRolloverEnabledSet
Indicates if the rolloverEnabled property has been set by a client program or by the UI.

See Also:
AbstractButton.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

clientIconTextGapSet

boolean clientIconTextGapSet
Indicates if the iconTextGap property has been set by a client program or by the UI.

See Also:
AbstractButton.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

clientContentAreaFilledSet

boolean clientContentAreaFilledSet
Indicates if the contentAreaFilled property has been set by a client program or by the UI.

See Also:
AbstractButton.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

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

Serialized Fields

actionMap

Map<K,V> actionMap
actionMap


parent

ActionMap parent
parent

Class javax.swing.Box extends JComponent implements Serializable

serialVersionUID: 1525417495883046342L

Class javax.swing.Box.AccessibleBox extends Container.AccessibleAWTContainer implements Serializable

serialVersionUID: -7775079816389931944L

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

serialVersionUID: -1204263191910183998L

Class javax.swing.Box.Filler.AccessibleBoxFiller extends Component.AccessibleAWTComponent implements Serializable

serialVersionUID: 164963348357479321L

Class javax.swing.BoxLayout extends Object implements Serializable

serialVersionUID: -2474455742719112368L

Serialized Fields

container

Container container

way

int way
Current type of component layouting. Defaults to X_AXIS.


xChildren

SizeRequirements[] xChildren
The size requirements of the containers children for the X direction.


yChildren

SizeRequirements[] yChildren
The size requirements of the containers children for the Y direction.


xTotal

SizeRequirements xTotal
The size requirements of the container to be laid out for the X direction.


yTotal

SizeRequirements yTotal
The size requirements of the container to be laid out for the Y direction.


offsetsX

int[] offsetsX
The offsets of the child components in the X direction.


offsetsY

int[] offsetsY
The offsets of the child components in the Y direction.


spansX

int[] spansX
The spans of the child components in the X direction.


spansY

int[] spansY
The spans of the child components in the Y direction.

Class javax.swing.ButtonGroup extends Object implements Serializable

serialVersionUID: 4259076101881721375L

Serialized Fields

buttons

Vector<T> buttons
Stores references to 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

Serialized Fields

component

JComponent component
The component to notify.

Class javax.swing.DefaultBoundedRangeModel extends Object implements Serializable

serialVersionUID: 5034068491295259790L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws ClassNotFoundException,
                        IOException
Provides serialization support.

Throws:
IOException - if there is an I/O error.
ClassNotFoundException - if there is a classpath problem.

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
Provides serialization support.

Throws:
IOException - if there is an I/O error.
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.minimum and (DefaultBoundedRangeModel.maximum - DefaultBoundedRangeModel.extent). 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.


maximum

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


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
The Swing JComponent, performing the editing session.


delegate

DefaultCellEditor.EditorDelegate delegate
The editor delegate, responsible for listening the DefaultCellEditor.editorComponent events and getting/setting its value.


clickCountToStart

int clickCountToStart
The number of the mouse clicks, required to start the editing session.

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

serialVersionUID: -1420007406015481933L

Serialized Fields

value

Object value
The object value (updated when getting and setting the value).

Class javax.swing.DefaultComboBoxModel extends AbstractListModel implements Serializable

serialVersionUID: 6698657703676921904L

Serialized Fields

list

Vector<T> list
Storage for the elements in the model's list.


selectedItem

Object selectedItem
The selected item (null indicates no selection).

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

Class javax.swing.DefaultListModel extends AbstractListModel implements Serializable

serialVersionUID: 2315945659722172272L

Serialized Fields

elements

Vector<T> 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 DefaultListSelectionModel.setSelectionInterval(int, int), DefaultListSelectionModel.addSelectionInterval(int, int) or DefaultListSelectionModel.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 DefaultListSelectionModel.setSelectionInterval(int, int), DefaultListSelectionModel.addSelectionInterval(int, int) or DefaultListSelectionModel.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 DefaultListSelectionModel.anchorSelectionIndex and DefaultListSelectionModel.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.isAdjusting 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
The selected index (or -1 for no selection).

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

Serialized Fields

inputMap

Map<K,V> inputMap
Storage for the KeyStroke --> Object mappings.


parent

InputMap parent
An optional parent map.

Class javax.swing.JApplet extends Applet implements Serializable

serialVersionUID: 7269359214497372587L

Serialized Fields

accessibleContext

AccessibleContext accessibleContext
The accessible context for this JApplet.


rootPane

JRootPane rootPane

rootPaneCheckingEnabled

boolean rootPaneCheckingEnabled

Class javax.swing.JApplet.AccessibleJApplet extends Applet.AccessibleApplet implements Serializable

Class javax.swing.JButton extends AbstractButton implements Serializable

serialVersionUID: -1907255238954382202L

Serialized Fields

defaultCapable

boolean defaultCapable
Indicates if this button is capable to become the default button.

Class javax.swing.JButton.AccessibleJButton extends AbstractButton.AccessibleAbstractButton implements Serializable

Class javax.swing.JCheckBox extends JToggleButton implements Serializable

serialVersionUID: -5246739313864538930L

Serialized Fields

borderPaintedFlat

boolean borderPaintedFlat

Class javax.swing.JCheckBox.AccessibleJCheckBox extends JToggleButton.AccessibleJToggleButton implements Serializable

Class javax.swing.JCheckBoxMenuItem extends JMenuItem implements Serializable

serialVersionUID: -6676402307973384715L

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

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
The accessible context of this JComponent.


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 Component.LEFT_ALIGNMENT, Component.CENTER_ALIGNMENT, and Component.RIGHT_ALIGNMENT 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 Component.TOP_ALIGNMENT, Component.CENTER_ALIGNMENT, and Component.BOTTOM_ALIGNMENT 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(java.awt.Graphics)

componentPopupMenu

JPopupMenu componentPopupMenu
The popup menu for the component.

See Also:
JComponent.getComponentPopupMenu(), JComponent.setComponentPopupMenu(JPopupMenu)

inheritsPopupMenu

boolean inheritsPopupMenu
A flag that controls whether the JComponent.getComponentPopupMenu() method looks to the component's parent when the componentPopupMenu field is null.


doubleBuffered

boolean doubleBuffered

Whether to double buffer this component when painting. This flag should generally be true, to ensure good painting performance.

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.paint(java.awt.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:
JComponent.setDebugGraphicsOptions(int), JComponent.getDebugGraphicsOptions(), DebugGraphics, JComponent.getComponentGraphics(java.awt.Graphics)

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 JComponent.paintComponent(java.awt.Graphics), which in turn calls ComponentUI.update(java.awt.Graphics, javax.swing.JComponent) on the component's JComponent.ui property. If the component is opaque during this call, the background will be filled before calling ComponentUI.paint(java.awt.Graphics, javax.swing.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(javax.swing.JComponent).

See Also:
JComponent.setOpaque(boolean), JComponent.isOpaque(), JComponent.paintComponent(java.awt.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(javax.swing.plaf.ComponentUI), JComponent.getUIClassID(), 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:
JComponent.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:
JComponent.setAutoscrolls(boolean), JComponent.getAutoscrolls()

listenerList

EventListenerList listenerList
Listeners for events other than PropertyChangeEvent are handled by this listener list. PropertyChangeEvents are handled in Component.changeSupport.


vetoableChangeSupport

VetoableChangeSupport vetoableChangeSupport
Handles VetoableChangeEvents.


clientProperties

Hashtable<K,V> 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

ComponentInputMap inputMap_whenInFocusedWindow

actionMap

ActionMap actionMap

verifyInputWhenFocusTarget

boolean verifyInputWhenFocusTarget
Since:
1.3

inputVerifier

InputVerifier inputVerifier

transferHandler

TransferHandler transferHandler

paintingTile

boolean paintingTile
Indicates if this component is currently painting a tile or not.


dragBuffer

Image dragBuffer
A temporary buffer used for fast dragging of components.


dragBufferInitialized

boolean dragBufferInitialized
Indicates if the dragBuffer is already initialized.


paintChild

Component paintChild
Used to optimize painting. This is set in paintImmediately2() to specify the exact component path to be painted by paintChildren.


clientOpaqueSet

boolean clientOpaqueSet
Indicates if the opaque property has been set by a client program or by the UI.

See Also:
JComponent.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

clientAutoscrollsSet

boolean clientAutoscrollsSet
Indicates if the autoscrolls property has been set by a client program or by the UI.

See Also:
JComponent.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

Class javax.swing.JComponent.AccessibleJComponent extends Container.AccessibleAWTContainer implements Serializable

serialVersionUID: -7047089700479897799L

Serialized Fields

accessibleContainerHandler

ContainerListener accessibleContainerHandler
Receives notification when a child component is added to the JComponent and fires a PropertyChangeEvent on listeners registered with the AccessibleJComponent.


accessibleFocusHandler

FocusListener accessibleFocusHandler
Receives notification if the focus on the JComponent changes and fires appropriate PropertyChangeEvents to listeners registered with the AccessibleJComponent.

Class javax.swing.JDesktopPane extends JLayeredPane implements Serializable

serialVersionUID: 766333777224038726L

Serialized Fields

clientDragModeSet

boolean clientDragModeSet
Indicates if the dragMode property has been set by a client program or by the UI.

See Also:
JDesktopPane.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

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.


closeAction

int closeAction
The default action taken when closed.

Class javax.swing.JDialog.AccessibleJDialog extends Dialog.AccessibleAWTDialog implements Serializable

Class javax.swing.JEditorPane extends JTextComponent implements Serializable

serialVersionUID: 3140472492599046285L

Serialized Fields

editorKit

EditorKit editorKit

focus_root

boolean focus_root

editorMap

HashMap<K,V> editorMap

loader

javax.swing.JEditorPane.PageLoader loader
The currently loading stream, if any.

Class javax.swing.JEditorPane.AccessibleJEditorPane extends JTextComponent.AccessibleJTextComponent implements Serializable

Class javax.swing.JEditorPane.AccessibleJEditorPaneHTML extends JEditorPane.AccessibleJEditorPane implements Serializable

Class javax.swing.JEditorPane.JEditorPaneAccessibleHypertextSupport extends JEditorPane.AccessibleJEditorPane implements Serializable

Class javax.swing.JFileChooser extends JComponent implements Serializable

serialVersionUID: 3162921138695327837L

Serialized Fields

accessibleContext

AccessibleContext accessibleContext
The accessible context.

See Also:
JFileChooser.getAccessibleContext()

fsv

FileSystemView fsv
The file system view.

See Also:
JFileChooser.setFileSystemView(FileSystemView)

accessory

JComponent accessory
The accessory component.

See Also:
JFileChooser.setAccessory(JComponent)

approveButtonMnemonic

int approveButtonMnemonic
The approve button mnemonic.

See Also:
JFileChooser.setApproveButtonMnemonic(int)

approveButtonText

String approveButtonText
The approve button text.

See Also:
JFileChooser.setApproveButtonText(String)

approveButtonToolTipText

String approveButtonToolTipText
The approve button tool tip text.

See Also:
JFileChooser.setApproveButtonToolTipText(String)

choosableFilters

ArrayList<E> choosableFilters
The choosable file filters.

See Also:
JFileChooser.addChoosableFileFilter(FileFilter)

isAcceptAll

boolean isAcceptAll
A flag controlling whether the accept all file filter is used.

See Also:
JFileChooser.setAcceptAllFileFilterUsed(boolean)

dialogTitle

String dialogTitle
The dialog title.

See Also:
JFileChooser.setDialogTitle(String)

dialogType

int dialogType
The dialog type.

See Also:
JFileChooser.setDialogType(int)

retval

int retval
The return value for the dialog.

See Also:
JFileChooser.showOpenDialog(Component), JFileChooser.showSaveDialog(Component)

multiSelection

boolean multiSelection
A flag indicating whether the file chooser allows multiple selection.

See Also:
JFileChooser.isMultiSelectionEnabled()

fileHiding

boolean fileHiding
A flag indicating whether file hiding is enabled.

See Also:
JFileChooser.isFileHidingEnabled()

fileSelectionMode

int fileSelectionMode
The file selection mode.

See Also:
JFileChooser.setFileSelectionMode(int)

fv

FileView fv
The file view.

See Also:
JFileChooser.setFileView(FileView)

controlButtonsShown

boolean controlButtonsShown
A flag controlling whether or not the control buttons are visible.

See Also:
JFileChooser.setControlButtonsAreShown(boolean)

currentDir

File currentDir
The current directory.

See Also:
JFileChooser.setCurrentDirectory(File)

currentFilter

FileFilter currentFilter
The current file filter.

See Also:
JFileChooser.setFileFilter(FileFilter)

selectedFiles

File[] selectedFiles
An array of selected files.

See Also:
JFileChooser.setSelectedFiles(File[])

selectedFile

File selectedFile
The selected file.

See Also:
JFileChooser.setSelectedFile(File)

dragEnabled

boolean dragEnabled
The drag enabled property.

See Also:
JFileChooser.setDragEnabled(boolean), JFileChooser.getDragEnabled()

Class javax.swing.JFileChooser.AccessibleJFileChooser extends JComponent.AccessibleJComponent implements Serializable

Class javax.swing.JFormattedTextField extends JTextField implements Serializable

serialVersionUID: 5464657870110180632L

Serialized Fields

value

Object value
The most recent valid and committed value


focusLostBehavior

int focusLostBehavior
The behaviour for when this text field loses focus


formatterFactory

JFormattedTextField.AbstractFormatterFactory formatterFactory
The formatter factory currently being used


formatter

JFormattedTextField.AbstractFormatter formatter
The formatter currently being used


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

closeAction

int closeAction

accessibleContext

AccessibleContext accessibleContext

rootPane

JRootPane rootPane

rootPaneCheckingEnabled

boolean rootPaneCheckingEnabled

Class javax.swing.JFrame.AccessibleJFrame extends Frame.AccessibleAWTFrame implements Serializable

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.


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.JLabel.AccessibleJLabel extends JComponent.AccessibleJComponent implements Serializable

Class javax.swing.JLayeredPane extends JComponent implements Serializable

serialVersionUID: 5534920399324590459L

Serialized Fields

componentToLayer

Hashtable<K,V> componentToLayer

Class javax.swing.JLayeredPane.AccessibleJLayeredPane extends JComponent.AccessibleJComponent implements Serializable

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.prototypeCellValue 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.prototypeCellValue property.


layoutOrientation

int layoutOrientation
This property holds the current layout orientation of the list, which is one of the integer constants JList.VERTICAL, JList.VERTICAL_WRAP, or JList.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.fixedCellWidth and JList.fixedCellHeight properties, using the JList.cellRenderer 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(javax.swing.JList, java.lang.Object, int, boolean, boolean) 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(javax.swing.JList, java.lang.Object, int, boolean, boolean) 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.model property should be considered "selected", when displaying and interacting with the list.


visibleRowCount

int visibleRowCount
This property indicates a preference for the number of rows displayed in the list, and will scale the JList.getPreferredScrollableViewportSize() property accordingly. The actual number of displayed rows, when the list is placed in a real JViewport 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.model and JList.selectionModel properties of the list.

Class javax.swing.JList.AccessibleJList extends JComponent.AccessibleJComponent implements Serializable

Class javax.swing.JMenu extends JMenuItem implements Serializable

serialVersionUID: 4227225638931828014L

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


menuChangeListener

ChangeListener menuChangeListener
The ChangeListener for the ButtonModel.

See Also:
MenuChangeListener

Class javax.swing.JMenu.AccessibleJMenu extends JMenuItem.AccessibleJMenuItem implements Serializable

serialVersionUID: -8131864021059524309L

Class javax.swing.JMenu.WinListener extends WindowAdapter implements Serializable

serialVersionUID: -6415815570638474823L

Class javax.swing.JMenuBar extends JComponent implements Serializable

serialVersionUID: -8191026883931977036L

Serialized Fields

borderPainted

boolean borderPainted

margin

Insets margin

Class javax.swing.JMenuBar.AccessibleJMenuBar extends JComponent.AccessibleJComponent implements Serializable

Class javax.swing.JMenuItem extends AbstractButton implements Serializable

serialVersionUID: -1681004643499461044L

Serialized Fields

accelerator

KeyStroke accelerator
Combination of keyboard keys that can be used to activate this menu item


isDragging

boolean isDragging
Indicates if we are currently dragging the mouse.

Class javax.swing.JMenuItem.AccessibleJMenuItem extends AbstractButton.AccessibleAbstractButton implements Serializable

serialVersionUID: 6748924232082076534L

Serialized Fields

armed

boolean armed

focusOwner

boolean focusOwner

pressed

boolean pressed

selected

boolean selected

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

Class javax.swing.JPanel.AccessibleJPanel extends JComponent.AccessibleJComponent implements Serializable

Class javax.swing.JPasswordField extends JTextField implements Serializable

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
writeObject

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

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.


popupLocationX

int popupLocationX
Location of the popup, X coordinate.


popupLocationY

int popupLocationY
Location of the popup, Y coordinate.


visible

boolean visible

Class javax.swing.JPopupMenu.AccessibleJPopupMenu extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 7423261328879849768L

Class javax.swing.JPopupMenu.Separator extends JSeparator implements Serializable

Class javax.swing.JProgressBar extends JComponent implements Serializable

serialVersionUID: 1980046021813598781L

Serialized Fields

orientation

int orientation
The orientation of the JProgressBar (SwingConstants.HORIZONTAL or SwingConstants.VERTICAL). Defaults to SwingConstants.HORIZONTAL.

See Also:
JProgressBar.setOrientation(int)

paintBorder

boolean paintBorder
A flag the controls whether or not the component's border is painted. The default is true.

See Also:
JProgressBar.setBorderPainted(boolean)

model

BoundedRangeModel model
The model defining the bounds and current value for the progress bar.

See Also:
JProgressBar.setModel(BoundedRangeModel)

progressString

String progressString
A custom string for display in the progress bar. If this is null, a default string will be generated.

See Also:
JProgressBar.setString(String)

paintString

boolean paintString
A flag that controls whether a string is displayed within the progress bar.

See Also:
JProgressBar.setStringPainted(boolean)

changeListener

ChangeListener changeListener
The listener that is registered with 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

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

defaultPressAction

Action defaultPressAction
Deprecated. since JDK1.3
This field is unused since JDK1.3. To override the default action you should modify the JRootPane's ActionMap.


defaultReleaseAction

Action defaultReleaseAction
Deprecated. since JDK1.3
This field is unused since JDK1.3. To override the default action you should modify the JRootPane's ActionMap.


windowDecorationStyle

int windowDecorationStyle
Since:
1.4

Class javax.swing.JRootPane.AccessibleJRootPane extends JComponent.AccessibleJComponent implements Serializable

serialVersionUID: 1082432482784468088L

Class javax.swing.JRootPane.RootLayout extends Object implements Serializable

serialVersionUID: -4100116998559815027L

Serialized Fields

glassPaneBounds

Rectangle glassPaneBounds
The cached layout info for the glass pane.


layeredPaneBounds

Rectangle layeredPaneBounds
The cached layout info for the layered pane.


contentPaneBounds

Rectangle contentPaneBounds
The cached layout info for the content pane.


menuBarBounds

Rectangle menuBarBounds
The cached layout info for the menu bar.

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.


sbChangeListener

ChangeListener sbChangeListener
This ChangeListener forwards events fired from the model and re-sources them to originate from this JScrollBar.

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

Class javax.swing.JScrollPane.AccessibleJScrollPane extends JComponent.AccessibleJComponent implements Serializable

Serialized Fields

viewPort

JViewport viewPort
The viewport of the underlying scrollpane.

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 store the slider's range and current value.


majorTickSpacing

int majorTickSpacing
The space/distance between major ticks.


minorTickSpacing

int minorTickSpacing
The space/distance between minor ticks.


snapToTicks

boolean snapToTicks
Whether the slider snaps its values to ticks.


orientation

int orientation
The orientation (horizontal or vertical) of the slider.


changeListener

ChangeListener changeListener
The listener that monitors the slider's model and forwards events to the slider's listeners (see createChangeListener()).

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
The model that defines the current value and permitted values for the spinner.


editor

JComponent editor
The current editor.

Class javax.swing.JSpinner.DateEditor extends JSpinner.DefaultEditor implements Serializable

serialVersionUID: -4279356973770397815L

Class javax.swing.JSpinner.DefaultEditor extends JPanel implements Serializable

serialVersionUID: -5317788736173368172L

Serialized Fields

spinner

JSpinner spinner
The spinner that the editor is allocated to.


ftf

JFormattedTextField ftf
The JFormattedTextField that backs the editor.

Class javax.swing.JSpinner.ListEditor extends JSpinner.DefaultEditor implements Serializable

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.


dividerLocation

int dividerLocation
The divider location.


clientDividerSizeSet

boolean clientDividerSizeSet
Indicates if the dividerSize property has been set by a client program or by the UI.

See Also:
JSplitPane.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

clientOneTouchExpandableSet

boolean clientOneTouchExpandableSet
Indicates if the oneTouchExpandable property has been set by a client program or by the UI.

See Also:
JSplitPane.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

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

this_table

JTable this_table
This table, for referring identically name methods from inner classes.


defaultEditorsByColumnClass

Hashtable<K,V> defaultEditorsByColumnClass
A table mapping Class objects to TableCellEditor objects. This table is consulted by the FIXME


defaultRenderersByColumnClass

Hashtable<K,V> 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 JTable.columnModel property when the JTable.dataModel property is changed.

See Also:
JTable.setModel(TableModel), JTable.createDefaultColumnsFromModel(), 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 JTable.AUTO_RESIZE_ALL_COLUMNS (the default), JTable.AUTO_RESIZE_LAST_COLUMN, JTable.AUTO_RESIZE_NEXT_COLUMN, JTable.AUTO_RESIZE_SUBSEQUENT_COLUMNS, or JTable.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 JTable.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
Obsolete. Use JTable.rowSelectionAllowed, JTable.getColumnSelectionAllowed(), or the combined methods JTable.getCellSelectionEnabled() and JTable.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 JTable.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 JTable.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 JTable.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)

cellEditor

TableCellEditor cellEditor
The current cell editor.


dragEnabled

boolean dragEnabled
Whether or not drag-and-drop is enabled on this table.

See Also:
JTable.setDragEnabled(boolean), JTable.getDragEnabled()

gridColor

Color gridColor
The color to paint the grid lines of the table, when either JTable.showHorizontalLines or JTable.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.SELECTION_BACKGROUND_CHANGED_PROPERTY 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.SELECTION_FOREGROUND_CHANGED_PROPERTY 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.


tableColumnPropertyChangeHandler

javax.swing.JTable.TableColumnPropertyChangeHandler tableColumnPropertyChangeHandler
The property handler for this table's columns.


surrendersFocusOnKeystroke

boolean surrendersFocusOnKeystroke
Whether cell editors should receive keyboard focus when the table is activated.


rectCache

Rectangle rectCache
A Rectangle object to be reused in JTable.getCellRect(int, int, boolean).


clientRowHeightSet

boolean clientRowHeightSet
Indicates if the rowHeight property has been set by a client program or by the UI.

See Also:
JTable.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

rowHeights

SizeSequence rowHeights
Stores the sizes and positions of each row, when using non-uniform row heights. Initially the height of all rows is equal and stored in {link #rowHeight}. However, when an application calls JTable.setRowHeight(int,int), the table switches to non-uniform row height mode which stores the row heights in the SizeSequence object instead.

See Also:
JTable.setRowHeight(int), JTable.getRowHeight(), JTable.getRowHeight(int), JTable.setRowHeight(int, int)

Class javax.swing.JTable.AccessibleJTable extends JComponent.AccessibleJComponent implements Serializable

Serialized Fields

lastSelectedRow

int lastSelectedRow
The last selected row. This is needed to track the selection in JTable.AccessibleJTable.valueChanged(ListSelectionEvent).


lastSelectedColumn

int lastSelectedColumn
The last selected column. This is needed to track the selection in JTable.AccessibleJTable.valueChanged(ListSelectionEvent).


caption

Accessible caption
The caption of the table.


summary

Accessible summary
The summary of the table.


rowDescriptions

Accessible[] rowDescriptions
Accessible descriptions for rows.


columnDescriptions

Accessible[] columnDescriptions
Accessible descriptions for columns.

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.JTextArea.AccessibleJTextArea extends JTextComponent.AccessibleJTextComponent implements Serializable

Class javax.swing.JTextField extends JTextComponent implements Serializable

serialVersionUID: 353853209832607592L

Serialized Fields

columns

int columns

align

int align

action

Action action
Since:
1.3

actionCommand

String actionCommand
Since:
1.3

actionPropertyChangeListener

PropertyChangeListener actionPropertyChangeListener

horizontalVisibility

BoundedRangeModel horizontalVisibility
The horizontal visibility of the textfield.

Class javax.swing.JTextField.AccessibleJTextField extends JTextComponent.AccessibleJTextComponent implements Serializable

serialVersionUID: 8255147276740453036L

Class javax.swing.JTextPane extends JEditorPane implements Serializable

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 component that the tool tip is associated with.

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

nodeStates

Hashtable<K,V> nodeStates
This contains the state of all nodes in the tree. Al/ entries map the TreePath of a note to to its state. Valid states are EXPANDED and COLLAPSED. Nodes not in this Hashtable are assumed state COLLAPSED. This is package private to avoid accessor methods.


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.


clientRowHeightSet

boolean clientRowHeightSet
Indicates if the rowHeight property has been set by a client program or by the UI.

See Also:
JTree.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

clientScrollsOnExpandSet

boolean clientScrollsOnExpandSet
Indicates if the scrollsOnExpand property has been set by a client program or by the UI.

See Also:
JTree.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

clientShowsRootHandlesSet

boolean clientShowsRootHandlesSet
Indicates if the showsRootHandles property has been set by a client program or by the UI.

See Also:
JTree.setUIProperty(String, Object), LookAndFeel.installProperty(JComponent, String, Object)

Class javax.swing.JTree.AccessibleJTree extends JComponent.AccessibleJComponent implements Serializable

Class javax.swing.JTree.DynamicUtilTreeNode extends DefaultMutableTreeNode implements Serializable

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

scrollUnderway

boolean scrollUnderway

isViewSizeSet

boolean isViewSizeSet

backingStore

boolean backingStore
Deprecated. since JDK 1.3
This flag indicates whether we use a backing store for drawing.


backingStoreImage

Image backingStoreImage
The backingstore image used for the backingstore and blit scroll methods.


lastPaintPosition

Point lastPaintPosition
The position at which the view has been drawn the last time. This is used to determine the bittable area.


changeEvent

ChangeEvent changeEvent

scrollMode

int scrollMode

viewListener

JViewport.ViewListener viewListener
The ViewListener instance.


cachedBlitFrom

Point cachedBlitFrom
Stores the location from where to blit. This is a cached Point object used in blitting calculations.


cachedBlitTo

Point cachedBlitTo
Stores the location where to blit to. This is a cached Point object used in blitting calculations.


cachedBlitSize

Dimension cachedBlitSize
Stores the width of the blitted area. This is a cached Dimension object used in blitting calculations.


cachedBlitPaint

Rectangle cachedBlitPaint
Stores the bounds of the area that needs to be repainted. This is a cached Rectangle object used in blitting calculations.


damaged

boolean damaged

sizeChanged

boolean sizeChanged
A flag indicating if the size of the viewport has changed since the last repaint. This is used in double buffered painting to check if we need a new double buffer, or can reuse the old one.


isPaintRoot

boolean isPaintRoot
Indicates if this JViewport is the paint root or not. If it is not, then we may not assume that the offscreen buffer still has the right content because parent components may have cleared the background already.

Class javax.swing.JViewport.AccessibleJViewport extends JComponent.AccessibleJComponent implements Serializable

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

Class javax.swing.JWindow.AccessibleJWindow extends Window.AccessibleAWTWindow implements Serializable

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
The container to be laid out.


xChildren

SizeRequirements[] xChildren
The size requirements of the containers children for the X direction.


yChildren

SizeRequirements[] yChildren
The size requirements of the containers children for the Y direction.


xTotal

SizeRequirements xTotal
The size requirements of the container to be laid out for the X direction.


yTotal

SizeRequirements yTotal
The size requirements of the container to be laid out for the Y direction.


offsetsX

int[] offsetsX
The offsets of the child components in the X direction.


offsetsY

int[] offsetsY
The offsets of the child components in the Y direction.


spansX

int[] spansX
The spans of the child components in the X direction.


spansY

int[] spansY
The spans of the child components in the Y direction.

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

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
The current date.


start

Comparable<T> start
A constraint on the start or earliest permitted date (null for no minimum).


end

Comparable<T> end
A constraint on the end or latest permitted date (null for no maximum).


calendarField

int calendarField
The calendar field used to calculate the previous or next date.

Class javax.swing.SpinnerListModel extends AbstractSpinnerModel implements Serializable

serialVersionUID: 3358804052191994516L

Serialized Fields

list

List<E> list
The backing list for this model.

Class javax.swing.SpinnerNumberModel extends AbstractSpinnerModel implements Serializable

serialVersionUID: 7279176385485777821L

Serialized Fields

value

Number value
The current value.


minimum

Comparable<T> minimum
The minimum value (or null).


maximum

Comparable<T> maximum
The maximum value (or null).


stepSize

Number stepSize
The step size.

Class javax.swing.Timer extends Object implements Serializable

serialVersionUID: -1116180831621385484L

Serialized Fields

drainer

Runnable drainer
The encloding class, used with SwingUtilities.invokeLater(java.lang.Runnable) to invoke the Timer.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.


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.


task

javax.swing.Timer.Task task
The task that calls queueEvent(). When null this Timer is stopped. This is package private to avoid synthetic accessor method.


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

propertyName

String propertyName
The name of the property into/from which this TransferHandler imports/exports.


recognizer

javax.swing.TransferHandler.SwingDragGestureRecognizer recognizer
The DragGestureRecognizer for Swing.

Class javax.swing.UIDefaults extends Hashtable<Object,Object> implements Serializable

serialVersionUID: 7341222528856548117L

Serialized Fields

bundles

LinkedList<T> 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

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 BevelBorder.RAISED or BevelBorder.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 EtchedBorder.RAISED or EtchedBorder.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 TitledBorder.ABOVE_TOP, TitledBorder.TOP, TitledBorder.BELOW_TOP, TitledBorder.ABOVE_BOTTOM, TitledBorder.BOTTOM, TitledBorder.BELOW_BOTTOM, or TitledBorder.DEFAULT_POSITION.


titleJustification

int titleJustification
The horizontal alignment of the title text in relation to the border, which is one of TitledBorder.LEFT, TitledBorder.CENTER, TitledBorder.RIGHT, TitledBorder.LEADING, TitledBorder.TRAILING, or TitledBorder.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

Class javax.swing.event.ChangeEvent extends EventObject implements Serializable

Class javax.swing.event.EventListenerList extends Object implements Serializable

serialVersionUID: -5677132037850737084L

Serialization Methods

readObject

private <T extends EventListener> void readObject(ObjectInputStream in)
                 throws ClassNotFoundException,
                        IOException
Deserializes an instance from an ObjectInputStream.

Throws:
ClassNotFoundException - if a serialized class can't be found
IOException - if something goes wrong

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Serializes an instance to an ObjectOutputStream.

Throws:
IOException - if something goes wrong

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

Serialized Fields

firstIndex

int firstIndex
The index of the first list item in the range of items that has potentially had its selection status modified.


lastIndex

int lastIndex
The index of the last list item in the range of items that has potentially had its selection status modified.


isAdjusting

boolean isAdjusting
A flag that indicates that this event is one in a series of events.

Class javax.swing.event.MenuDragMouseEvent extends MouseEvent implements Serializable

Serialized Fields

path

MenuElement[] path
path


manager

MenuSelectionManager manager
manager

Class javax.swing.event.MenuEvent extends EventObject implements Serializable

Class javax.swing.event.MenuKeyEvent extends KeyEvent implements Serializable

Serialized Fields

path

MenuElement[] path
path


manager

MenuSelectionManager manager
manager

Class javax.swing.event.PopupMenuEvent extends EventObject implements Serializable

Class javax.swing.event.RowSorterEvent extends EventObject implements Serializable

Serialized Fields

type

javax.swing.event.RowSorterEvent.Type type

oldViewToModel

int[] oldViewToModel

Class javax.swing.event.SwingPropertyChangeSupport extends PropertyChangeSupport implements Serializable

serialVersionUID: 7162625831330845068L

Class javax.swing.event.TableColumnModelEvent extends EventObject implements Serializable

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 TableModelEvent.UPDATE, TableModelEvent.INSERT, TableModelEvent.DELETE).

Class javax.swing.event.TreeExpansionEvent extends EventObject implements Serializable

Serialized Fields

path

TreePath path
path

Class javax.swing.event.TreeModelEvent extends EventObject implements Serializable

Serialized Fields

childIndices

int[] childIndices
childIndices


children

Object[] children
children


path

TreePath path
path

Class javax.swing.event.TreeSelectionEvent extends EventObject implements Serializable

Serialized Fields

paths

TreePath[] paths
The paths that have been added or removed from the selection.


areNew

boolean[] areNew
Flags indicating if the paths were added (true) or removed (false) from the selection.


oldLeadSelectionPath

TreePath oldLeadSelectionPath
The old lead selection path (may be null).


newLeadSelectionPath

TreePath newLeadSelectionPath
The new lead selection path (may be null).

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

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

Class javax.swing.plaf.ComponentInputMapUIResource extends ComponentInputMap implements Serializable

Class javax.swing.plaf.DimensionUIResource extends Dimension implements Serializable

Class javax.swing.plaf.FontUIResource extends Font implements Serializable

Class javax.swing.plaf.IconUIResource extends Object implements Serializable

serialVersionUID: 3327049506004830542L

Serialized Fields

delegate

Icon delegate
The icon that is wrapped by this IconUIResource (never null).

Class javax.swing.plaf.InputMapUIResource extends InputMap implements Serializable

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

Serialized Fields

direction

int direction
The direction that the arrow points.

See Also:
BasicArrowButton.getDirection()

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(java.awt.Graphics, int, int, int, int, boolean, boolean, java.awt.Color, java.awt.Color, java.awt.Color, java.awt.Color)

darkShadow

Color darkShadow
The color for drawing the dark shaded parts of the border.

See Also:
BasicGraphicsUtils.drawBezel(java.awt.Graphics, int, int, int, int, boolean, boolean, java.awt.Color, java.awt.Color, java.awt.Color, java.awt.Color)

highlight

Color highlight
The color for drawing the highlighted parts of the border.

See Also:
BasicGraphicsUtils.drawBezel(java.awt.Graphics, int, int, int, int, boolean, boolean, java.awt.Color, java.awt.Color, java.awt.Color, java.awt.Color)

lightHighlight

Color lightHighlight
The color for drawing the bright highlighted parts of the border.

See Also:
BasicGraphicsUtils.drawBezel(java.awt.Graphics, int, int, int, int, boolean, boolean, java.awt.Color, java.awt.Color, java.awt.Color, java.awt.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

Class javax.swing.plaf.basic.BasicComboBoxRenderer.UIResource extends BasicComboBoxRenderer implements Serializable

Class javax.swing.plaf.basic.BasicComboPopup extends JPopupMenu implements Serializable

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

Class javax.swing.plaf.basic.BasicDesktopPaneUI.MaximizeAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicDesktopPaneUI.MinimizeAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicDesktopPaneUI.NavigateAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicDesktopPaneUI.OpenAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicDirectoryModel extends AbstractListModel implements Serializable

Serialized Fields

contents

Vector<T> contents
The list of files itself


directories

Vector<T> directories
The directories in the list.


files

Vector<T> files
The files in the list.


listingMode

int listingMode
The listing mode of the associated JFileChooser, either FILES_ONLY, DIRECTORIES_ONLY or FILES_AND_DIRECTORIES


filechooser

JFileChooser filechooser
The JFileCooser associated with this model


loadThread

javax.swing.plaf.basic.BasicDirectoryModel.DirectoryLoadThread loadThread
The thread that loads the file view.


comparator

Comparator<T> comparator
A Comparator class/object for sorting the file list.

Class javax.swing.plaf.basic.BasicFileChooserUI.ApproveSelectionAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicFileChooserUI.CancelSelectionAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicFileChooserUI.ChangeToParentDirectoryAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicFileChooserUI.GoHomeAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicFileChooserUI.NewFolderAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicFileChooserUI.UpdateAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicIconFactory extends Object implements Serializable

serialVersionUID: 5605588811185324383L

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane extends JComponent implements Serializable

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.


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.


closeIcon

Icon closeIcon
The icon displayed in the close 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

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.IconifyAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.MaximizeAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.MoveAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.RestoreAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.SizeAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicInternalFrameTitlePane.SystemMenuBar extends JMenuBar implements Serializable

Class javax.swing.plaf.basic.BasicLookAndFeel extends LookAndFeel implements Serializable

serialVersionUID: -6096995660290287879L

Serialized Fields

audioActionMap

ActionMap audioActionMap
Maps the audio actions for this l&f.

Class javax.swing.plaf.basic.BasicSliderUI.ActionScroller extends AbstractAction implements Serializable

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 BasicBorders.SplitPaneDividerBorder.

See Also:
BasicSplitPaneDivider.getBorder(), BasicSplitPaneDivider.setBorder(javax.swing.border.Border)

centerOneTouchButtons

boolean centerOneTouchButtons
Indicates if the ont touch buttons are laid out centered or at the top/left. Package private to avoid accessor method.

Class javax.swing.plaf.basic.BasicTextUI.BasicCaret extends DefaultCaret implements Serializable

Class javax.swing.plaf.basic.BasicToolBarUI.DragWindow extends Window implements Serializable

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

Class javax.swing.plaf.basic.BasicTreeUI.TreeHomeAction extends AbstractAction implements Serializable

Serialized Fields

direction

int direction
The direction, either home or end

Class javax.swing.plaf.basic.BasicTreeUI.TreeIncrementAction extends AbstractAction implements Serializable

Serialized Fields

direction

int direction
Specifies the direction to adjust the selection by.

Class javax.swing.plaf.basic.BasicTreeUI.TreePageAction extends AbstractAction implements Serializable

Serialized Fields

direction

int direction
Specifies the direction to adjust the selection by.

Class javax.swing.plaf.basic.BasicTreeUI.TreeToggleAction extends AbstractAction implements Serializable

Class javax.swing.plaf.basic.BasicTreeUI.TreeTraverseAction extends AbstractAction implements Serializable

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


Package javax.swing.plaf.metal

Class javax.swing.plaf.metal.MetalBorders.ButtonBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.Flush3DBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.InternalFrameBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.MenuBarBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.MenuItemBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.OptionDialogBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.PaletteBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.PopupMenuBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.RolloverButtonBorder extends MetalBorders.ButtonBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.ScrollPaneBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.TableHeaderBorder extends AbstractBorder implements Serializable

Serialized Fields

editorBorderInsets

Insets editorBorderInsets
The insets of this border.

Class javax.swing.plaf.metal.MetalBorders.TextFieldBorder extends MetalBorders.Flush3DBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.ToggleButtonBorder extends MetalBorders.ButtonBorder implements Serializable

Class javax.swing.plaf.metal.MetalBorders.ToolBarBorder extends AbstractBorder implements Serializable

Class javax.swing.plaf.metal.MetalCheckBoxIcon extends Object implements Serializable

Serialized Fields

border

MetalBorders.ButtonBorder border
Used to paint the border of the icon.

Class javax.swing.plaf.metal.MetalComboBoxButton extends JButton implements Serializable

Serialized Fields

comboBox

JComboBox comboBox
A reference to the JComboBox that the button belongs to.


listBox

JList listBox
A reference to the JList.


rendererPane

CellRendererPane rendererPane
Used for rendering the selected item.


comboIcon

Icon comboIcon
The button icon.


iconOnly

boolean iconOnly
Display just the icon, or the icon plus the label.

Class javax.swing.plaf.metal.MetalComboBoxIcon extends Object implements Serializable

Class javax.swing.plaf.metal.MetalComboBoxUI.MetalComboPopup extends BasicComboPopup implements Serializable

Class javax.swing.plaf.metal.MetalFileChooserUI.DirectoryComboBoxAction extends AbstractAction implements Serializable

Class javax.swing.plaf.metal.MetalFileChooserUI.DirectoryComboBoxModel extends AbstractListModel implements Serializable

Serialized Fields

items

List<E> items
Storage for the items in the model.


selectedIndex

int selectedIndex
The index of the selected item.

Class javax.swing.plaf.metal.MetalFileChooserUI.FileRenderer extends DefaultListCellRenderer implements Serializable

Class javax.swing.plaf.metal.MetalFileChooserUI.FilterComboBoxModel extends AbstractListModel implements Serializable

Serialized Fields

filters

FileFilter[] filters
Storage for the filters in the model.


selected

Object selected
The index of the selected file filter.

Class javax.swing.plaf.metal.MetalFileChooserUI.FilterComboBoxRenderer extends DefaultListCellRenderer implements Serializable

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.PaletteCloseIcon 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.MetalInternalFrameTitlePane extends BasicInternalFrameTitlePane implements Serializable

Serialized Fields

isPalette

boolean isPalette
A flag indicating whether the title pane uses the palette style.


paletteCloseIcon

Icon paletteCloseIcon
The icon used for the close button - this is fetched from the look and feel defaults using the key InternalFrame.paletteCloseIcon.


paletteTitleHeight

int paletteTitleHeight
The height of the title pane when isPalette is true. This value is fetched from the look and feel defaults using the key InternalFrame.paletteTitleHeight.


title

JLabel title
The label used to display the title for the internal frame.

Class javax.swing.plaf.metal.MetalLookAndFeel extends BasicLookAndFeel implements Serializable

serialVersionUID: 6680646159193457980L

Class javax.swing.plaf.metal.MetalScrollButton extends BasicArrowButton implements Serializable

Serialized Fields

buttonWidth

int buttonWidth
The width of the button.


freeStanding

boolean freeStanding
A flag that indicates whether the button is part of a free standing scroll bar. This affects how the border is drawn.


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

Serialized Fields

foreground

Color foreground
Stores the color set by setForeground().


background

Color background
Stores the color set by setBackground().

Class javax.swing.table.DefaultTableCellRenderer.UIResource extends DefaultTableCellRenderer implements Serializable

Class javax.swing.table.DefaultTableColumnModel extends Object implements Serializable

serialVersionUID: 6580012493508960512L

Serialized Fields

tableColumns

Vector<T> tableColumns
Storage for the table columns.


selectionModel

ListSelectionModel selectionModel
A selection model that keeps track of column selections.


columnMargin

int columnMargin
The space between the columns (the default value is 1).


listenerList

EventListenerList listenerList
Storage for the listeners registered with the model.


columnSelectionAllowed

boolean columnSelectionAllowed
A flag that indicates whether or not columns can be selected.


totalColumnWidth

int totalColumnWidth
The total width of all the columns in this model.

Class javax.swing.table.DefaultTableModel extends AbstractTableModel implements Serializable

serialVersionUID: 6680042567037222321L

Serialized Fields

dataVector

Vector<T> dataVector
Storage for the rows in the table (each row is itself a Vector).


columnIdentifiers

Vector<T> columnIdentifiers
Storage for the column identifiers.

Class javax.swing.table.JTableHeader extends JComponent implements Serializable

serialVersionUID: 5144633983372967710L

Serialized Fields

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

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 current width for the column.


minWidth

int minWidth
The minimum width for the column.


preferredWidth

int preferredWidth
The preferred width for the column.


maxWidth

int maxWidth
The maximum width for the column.


headerRenderer

TableCellRenderer headerRenderer
The renderer for the column header.


headerValue

Object headerValue
The value for the column header.


cellRenderer

TableCellRenderer cellRenderer
The renderer for the regular cells in this column.


cellEditor

TableCellEditor cellEditor
An editor for the regular cells in this column.


isResizable

boolean isResizable
A flag that determines whether or not the column is resizable (the default is true).


changeSupport

SwingPropertyChangeSupport changeSupport
A storage and notification mechanism for property change listeners.


Package javax.swing.text

Class javax.swing.text.AbstractDocument extends Object implements Serializable

serialVersionUID: 6842927725919637215L

Serialized Fields

content

AbstractDocument.Content content
The actual content model of this Document.


context

AbstractDocument.AttributeContext context
The AttributeContext for this Document.


documentFilter

DocumentFilter documentFilter
The currently installed DocumentFilter.


properties

Dictionary<K,V> properties
The documents properties.


listenerList

EventListenerList listenerList
Manages event listeners for this Document.


currentWriter

Thread currentWriter
Stores the current writer thread. Used for locking.


numReaders

int numReaders
The number of readers. Used for locking.


numWriters

int numWriters
The number of current writers. If this is > 1 then the same thread entered the write lock more than once.


bypass

DocumentFilter.FilterBypass bypass
An instance of a DocumentFilter.FilterBypass which allows calling the insert, remove and replace method without checking for an installed document filter.


bidiRoot

javax.swing.text.AbstractDocument.BidiRootElement bidiRoot
The bidi root element.

Class javax.swing.text.AbstractDocument.AbstractElement extends Object implements Serializable

serialVersionUID: 1712240033321461704L

Serialized Fields

count

int count
The number of characters that this Element spans.


offset

int offset
The starting offset of this Element.


attributes

AttributeSet attributes
The attributes of this Element.


element_parent

Element element_parent
The parent element.


tree_parent

TreeNode tree_parent
The parent in the TreeNode interface.


tree_children

Vector<T> tree_children
The children of this element.

Class javax.swing.text.AbstractDocument.BranchElement extends AbstractDocument.AbstractElement implements Serializable

serialVersionUID: -6037216547466333183L

Serialized Fields

children

Element[] children
The child elements of this BranchElement.


numChildren

int numChildren
The number of children in the branch element.


lastIndex

int lastIndex
The last found index in getElementIndex(). Used for faster searching.

Class javax.swing.text.AbstractDocument.DefaultDocumentEvent extends CompoundEdit implements Serializable

serialVersionUID: 5230037221564563284L

Serialized Fields

offset

int offset
The starting offset of the change.


length

int length
The length of the change.


type

DocumentEvent.EventType type
The type of change.


changes

HashMap<K,V> changes
Maps Element to their change records. This is only used when the changes array gets too big. We can use an (unsync'ed) HashMap here, since changes to this are (should) always be performed inside a write lock.


modified

boolean modified
Indicates if this event has been modified or not. This is used to determine if this event is thrown.

Class javax.swing.text.AbstractDocument.ElementEdit extends AbstractUndoableEdit implements Serializable

serialVersionUID: -1216620962142928304L

Serialized Fields

elem

Element elem
The changed element.


index

int index
The index of the change.


removed

Element[] removed
The removed elements.


added

Element[] added
The added elements.

Class javax.swing.text.AbstractDocument.LeafElement extends AbstractDocument.AbstractElement implements Serializable

serialVersionUID: -8906306331347768017L

Serialized Fields

startPos

Position startPos
Manages the start offset of this element.


endPos

Position endPos
Manages the end offset of this element.

Class javax.swing.text.BadLocationException extends Exception implements Serializable

serialVersionUID: -7712259886815656766L

Serialized Fields

offset

int offset
The invalid location.

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: 4325555698756477346L

Serialized Fields

policy

int policy
Keeps track of the current update policy


changeEvent

ChangeEvent changeEvent
The ChangeEvent that is fired by DefaultCaret.fireStateChanged().


listenerList

EventListenerList listenerList
Stores all registered event listeners.


documentListener

DocumentListener documentListener
Our document listener.


propertyChangeListener

PropertyChangeListener propertyChangeListener
Our property listener.


textComponent

JTextComponent textComponent
The text component in which this caret is installed. (Package private to avoid synthetic accessor method.)


selectionVisible

boolean selectionVisible
Indicates if the selection should be visible or not.


blinkRate

int blinkRate
The blink rate of this Caret.


dot

int dot
The current dot position.


mark

int mark
The current mark position.


magicCaretPosition

Point magicCaretPosition
The current visual caret position.


visible

boolean visible
Indicates if this Caret is currently visible or not. This is package private to avoid an accessor method.


active

boolean active
Indicates whether the text component where the caret is installed is editable and enabled. If either of these properties is false the caret is not drawn.


highlightEntry

Object highlightEntry
The current highlight entry.


blinkTimer

Timer blinkTimer

blinkListener

javax.swing.text.DefaultCaret.BlinkTimerListener blinkListener

bypass

NavigationFilter.FilterBypass bypass
A NavigationFilter.FilterBypass instance which is provided to the a NavigationFilter to unconditionally set or move the caret.

Class javax.swing.text.DefaultEditorKit extends EditorKit implements Serializable

serialVersionUID: 9017245433028523428L

Class javax.swing.text.DefaultEditorKit.BeepAction extends TextAction implements Serializable

Class javax.swing.text.DefaultEditorKit.CopyAction extends TextAction implements Serializable

Class javax.swing.text.DefaultEditorKit.CutAction extends TextAction implements Serializable

Class javax.swing.text.DefaultEditorKit.DefaultKeyTypedAction extends TextAction implements Serializable

Class javax.swing.text.DefaultEditorKit.InsertBreakAction extends TextAction implements Serializable

Class javax.swing.text.DefaultEditorKit.InsertContentAction extends TextAction implements Serializable

Class javax.swing.text.DefaultEditorKit.InsertTabAction extends TextAction implements Serializable

Class javax.swing.text.DefaultEditorKit.PasteAction extends TextAction implements Serializable

Class javax.swing.text.DefaultFormatter extends JFormattedTextField.AbstractFormatter implements Serializable

serialVersionUID: -355018354457785329L

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<T> valueClass
The class that is used for values.

Class javax.swing.text.DefaultFormatterFactory extends JFormattedTextField.AbstractFormatterFactory implements Serializable

Serialized Fields

defaultFormatter

JFormattedTextField.AbstractFormatter defaultFormatter
The default formatter.


editFormatter

JFormattedTextField.AbstractFormatter editFormatter
The formatter to use when the JFormattedTextField has focus and either the value isn't null or the value is null but no nullFormatter has been specified.


displayFormatter

JFormattedTextField.AbstractFormatter displayFormatter
The formatter to use when the JFormattedTextField doesn't havefocus and either the value isn't null or the value is null but no nullFormatter has been specified.


nullFormatter

JFormattedTextField.AbstractFormatter nullFormatter
The formatter to use when the value of the JFormattedTextField is null.

Class javax.swing.text.DefaultStyledDocument extends AbstractDocument implements Serializable

serialVersionUID: 940485415728614849L

Serialized Fields

buffer

DefaultStyledDocument.ElementBuffer buffer
The EditorBuffer that is used to manage to Element hierarchy.


styleChangeListener

javax.swing.text.DefaultStyledDocument.StyleChangeListener styleChangeListener
Listens for changes on this document's styles and notifies styleChanged().

Class javax.swing.text.DefaultStyledDocument.AttributeUndoableEdit extends AbstractUndoableEdit implements Serializable

Serialized Fields

copy

AttributeSet copy
A copy of the old attributes.


newAttributes

AttributeSet newAttributes
The new attributes.


isReplacing

boolean isReplacing
If the new attributes replaced the old attributes or if they only were added to them.


element

Element element
The element that has changed.

Class javax.swing.text.DefaultStyledDocument.ElementBuffer extends Object implements Serializable

serialVersionUID: 1688745877691146623L

Serialized Fields

root

Element root
The root element of the hierarchy.


offset

int offset
Holds the offset for structural changes.


endOffset

int endOffset
Holds the end offset for structural changes.


length

int length
Holds the length of structural changes.


pos

int pos
Holds the position of the change.


fracturedParent

Element fracturedParent
The parent of the fracture.


fracturedChild

Element fracturedChild
The fractured child.


createdFracture

boolean createdFracture
Indicates if a fracture has been created.


elementStack

Stack<T> elementStack
The current position in the element tree. This is used for bulk inserts using ElementSpecs.


insertPath

javax.swing.text.DefaultStyledDocument.ElementBuffer.Edit[] insertPath

recreateLeafs

boolean recreateLeafs

edits

ArrayList<E> edits
Vector that contains all the edits. Maybe replace by a HashMap.


offsetLastIndex

boolean offsetLastIndex

offsetLastIndexReplace

boolean offsetLastIndexReplace

Class javax.swing.text.DefaultStyledDocument.SectionElement extends AbstractDocument.BranchElement implements Serializable

Class javax.swing.text.EditorKit extends Object implements Serializable

serialVersionUID: -5044124649345887822L

Class javax.swing.text.GapContent extends Object implements Serializable

serialVersionUID: -6226052713477823730L

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.


marks

ArrayList<E> marks
Holds the marks for positions. These marks are referenced by the GapContentPosition instances by an index into this array. This is package private to avoid accessor synthetic methods.


garbageMarks

int garbageMarks
The number of unused marks.


searchMark

javax.swing.text.GapContent.Mark searchMark
A 'static' mark that is used for searching.


queueOfDeath

ReferenceQueue<T> queueOfDeath
Queues all references to GapContentPositions that are about to be GC'ed. This is used to remove the corresponding marks from the positionMarks array if the number of references to that mark reaches zero. This is package private to avoid accessor synthetic methods.

Class javax.swing.text.InternationalFormatter extends DefaultFormatter implements Serializable

serialVersionUID: 2436068675711756856L

Serialized Fields

format

Format format
The format that handles value to string conversion.


minimum

Comparable<T> minimum
The minimal permissable value.


maximum

Comparable<T> 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

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

Serialized Fields

caretDot

int caretDot
The caret's offset.

Class javax.swing.text.MaskFormatter extends DefaultFormatter implements Serializable

Serialized Fields

mask

String mask
The mask for this MaskFormatter


invalidChars

String invalidChars
A String made up of the characters that are not valid for input for this MaskFormatter.


validChars

String validChars
A String made up of the characters that are valid for input for this MaskFormatter.


placeHolder

String placeHolder
A String used in place of missing chracters if the value does not completely fill in the spaces in the mask.


placeHolderChar

char placeHolderChar
A character used in place of missing characters if the value does not completely fill in the spaces in the mask.


valueContainsLiteralCharacters

boolean valueContainsLiteralCharacters
Whether or not stringToValue should return literal characters in the mask.


maskLength

int maskLength
An int to hold the length of the mask, accounting for escaped characters

Class javax.swing.text.NumberFormatter extends InternationalFormatter implements Serializable

Class javax.swing.text.PlainDocument extends AbstractDocument implements Serializable

serialVersionUID: 4758290289196893664L

Serialized Fields

rootElement

Element rootElement
The default root element of this document. This is made type Element because the RI seems to accept other types of elements as well from createDefaultRoot() (when overridden by a subclass).

Class javax.swing.text.SimpleAttributeSet extends Object implements Serializable

serialVersionUID: 8267656273837665219L

Serialized Fields

tab

Hashtable<K,V> tab
Storage for the attributes.

Class javax.swing.text.StringContent extends Object implements Serializable

serialVersionUID: 4755994433709540381L

Serialized Fields

content

char[] content

count

int count

marks

Vector<T> marks
Holds the marks for the positions. This is package private to avoid accessor methods.


queueOfDeath

ReferenceQueue<T> queueOfDeath
Queues all references to GapContentPositions that are about to be GC'ed. This is used to remove the corresponding marks from the positionMarks array if the number of references to that mark reaches zero. This is package private to avoid accessor synthetic methods.

Class javax.swing.text.StyleContext extends Object implements Serializable

serialVersionUID: 8042858831190784241L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream out)
                  throws IOException
Throws:
IOException
Serialized Fields

styles

StyleContext.NamedStyle styles

Class javax.swing.text.StyleContext.NamedStyle extends Object implements Serializable

serialVersionUID: -6690628971806226374L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws ClassNotFoundException,
                        IOException
Throws:
ClassNotFoundException
IOException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Throws:
IOException
Serialized Fields

listenerList

EventListenerList listenerList

Class javax.swing.text.StyledEditorKit extends DefaultEditorKit implements Serializable

serialVersionUID: 7002391892985555948L

Serialized Fields

currentRun

Element currentRun
Stores the Element at the current caret position. This is updated by CaretTracker.


inputAttributes

MutableAttributeSet inputAttributes
The current input attributes. This is updated by CaretTracker.


caretTracker

javax.swing.text.StyledEditorKit.CaretTracker caretTracker
The CaretTracker that keeps track of the current input attributes, and the current character run Element.


viewFactory

javax.swing.text.StyledEditorKit.StyledViewFactory viewFactory
The ViewFactory for StyledEditorKits.

Class javax.swing.text.StyledEditorKit.AlignmentAction extends StyledEditorKit.StyledTextAction implements Serializable

Serialized Fields

a

int a
The aligment to set.

Class javax.swing.text.StyledEditorKit.BoldAction extends StyledEditorKit.StyledTextAction implements Serializable

Class javax.swing.text.StyledEditorKit.FontFamilyAction extends StyledEditorKit.StyledTextAction implements Serializable

Serialized Fields

family

String family
The font family to set.

Class javax.swing.text.StyledEditorKit.FontSizeAction extends StyledEditorKit.StyledTextAction implements Serializable

Serialized Fields

size

int size
The font size to set.

Class javax.swing.text.StyledEditorKit.ForegroundAction extends StyledEditorKit.StyledTextAction implements Serializable

Serialized Fields

fg

Color fg
The foreground color to set.

Class javax.swing.text.StyledEditorKit.ItalicAction extends StyledEditorKit.StyledTextAction implements Serializable

Class javax.swing.text.StyledEditorKit.StyledTextAction extends TextAction implements Serializable

Class javax.swing.text.StyledEditorKit.UnderlineAction extends StyledEditorKit.StyledTextAction implements Serializable

Class javax.swing.text.TabSet extends Object implements Serializable

serialVersionUID: 2367703481999080593L

Serialized Fields

tabs

TabStop[] tabs
Storage for the tab stops.

Class javax.swing.text.TabStop extends Object implements Serializable

serialVersionUID: -5381995917363605058L

Serialized Fields

pos

float pos

align

int align

leader

int leader

Class javax.swing.text.TextAction extends AbstractAction implements Serializable


Package javax.swing.text.html

Class javax.swing.text.html.CSS extends Object implements Serializable

Class javax.swing.text.html.FormSubmitEvent extends HTMLFrameHyperlinkEvent implements Serializable

Serialized Fields

method

FormSubmitEvent.MethodType method
The submit method.


data

String data
The actual submit data.

Class javax.swing.text.html.HTML.UnknownTag extends HTML.Tag implements Serializable

serialVersionUID: -1534369342247250625L

Class javax.swing.text.html.HTMLDocument extends DefaultStyledDocument implements Serializable

Serialized Fields

baseURL

URL baseURL

preservesUnknownTags

boolean preservesUnknownTags

tokenThreshold

int tokenThreshold

parser

HTMLEditorKit.Parser parser

frameDocument

boolean frameDocument
Indicates whether this document is inside a frame or not.


baseTarget

String baseTarget
Package private to avoid accessor methods.

Class javax.swing.text.html.HTMLDocument.BlockElement extends AbstractDocument.BranchElement implements Serializable

Class javax.swing.text.html.HTMLDocument.RunElement extends AbstractDocument.LeafElement implements Serializable

Class javax.swing.text.html.HTMLEditorKit extends StyledEditorKit implements Serializable

serialVersionUID: 8751997116710384592L

Serialized Fields

styleSheet

StyleSheet styleSheet
The current style sheet.


viewFactory

HTMLEditorKit.HTMLFactory viewFactory
The ViewFactory for HTMLFactory.


linkCursor

Cursor linkCursor
The Cursor for links.


defaultCursor

Cursor defaultCursor
The default cursor.


parser

HTMLEditorKit.Parser parser
The parser.


linkController

HTMLEditorKit.LinkController linkController
The mouse listener used for links.


contentType

String contentType
The content type


inputAttributes

MutableAttributeSet inputAttributes
The input attributes defined by default.css


editorPane

JEditorPane editorPane
The editor pane used.


autoFormSubmission

boolean autoFormSubmission
Whether or not the editor kit handles form submissions.

See Also:
HTMLEditorKit.isAutoFormSubmission(), HTMLEditorKit.setAutoFormSubmission(boolean)

Class javax.swing.text.html.HTMLEditorKit.HTMLTextAction extends StyledEditorKit.StyledTextAction implements Serializable

Class javax.swing.text.html.HTMLEditorKit.InsertHTMLTextAction extends HTMLEditorKit.HTMLTextAction implements Serializable

Serialized Fields

addTag

HTML.Tag addTag
Tag in HTML to start adding tags from.


alternateAddTag

HTML.Tag alternateAddTag
Alternate tag in HTML to start adding tags from if parentTag is not found and alternateParentTag is not found.


alternateParentTag

HTML.Tag alternateParentTag
Alternate tag to check if parentTag is not found.


html

String html
HTML to insert.


parentTag

HTML.Tag parentTag
Tag to check for in the document.

Class javax.swing.text.html.HTMLEditorKit.LinkController extends MouseAdapter implements Serializable

Serialized Fields

lastAnchorElement

Element lastAnchorElement
The element of the last anchor tag.

Class javax.swing.text.html.HTMLFrameHyperlinkEvent extends HyperlinkEvent implements Serializable

Serialized Fields

target_frame

String target_frame

Class javax.swing.text.html.StyleSheet extends StyleContext implements Serializable

Serialized Fields

base

URL base
The base URL


baseFontSize

int baseFontSize
Base font size (int)


linked

ArrayList<E> linked
The linked style sheets stored.


css

ArrayList<E> css
Maps element names (selectors) to AttributSet (the corresponding style information).


resolvedStyles

HashMap<K,V> resolvedStyles
Maps selectors to their resolved styles.

Class javax.swing.text.html.StyleSheet.BoxPainter extends Object implements Serializable

Serialized Fields

leftInset

float leftInset
The left inset.


rightInset

float rightInset
The right inset.


topInset

float topInset
The top inset.


bottomInset

float bottomInset
The bottom inset.


border

Border border
The border of the box.


leftPadding

float leftPadding

rightPadding

float rightPadding

topPadding

float topPadding

bottomPadding

float bottomPadding

background

Color background
The background color.

Class javax.swing.text.html.StyleSheet.ListPainter extends Object implements Serializable

Serialized Fields

attributes

AttributeSet attributes
Attribute set for painter


styleSheet

StyleSheet styleSheet
The associated style sheet.


type

String type
The bullet type.


tmpRect

Rectangle tmpRect
Cached rectangle re-used in the paint method below.


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<T> 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:


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.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


Package javax.swing.tree

Class javax.swing.tree.DefaultMutableTreeNode extends Object implements Serializable

serialVersionUID: -4298474751201349152L

Serialization Methods

readObject

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

Throws:
IOException - If an error occurs
ClassNotFoundException - TODO

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
writeObject

Throws:
IOException - If an error occurs
Serialized Fields

parent

MutableTreeNode parent
The parent of this node (possibly null).


children

Vector<T> children
The child nodes for this node (may be empty).


allowsChildren

boolean allowsChildren
allowsChildren

Class javax.swing.tree.DefaultTreeCellEditor.DefaultTextField extends JTextField implements Serializable

serialVersionUID: -6629304544265300143L

Serialized Fields

border

Border border
The border of the text field.

Class javax.swing.tree.DefaultTreeCellEditor.EditorContainer extends Container implements Serializable

serialVersionUID: 6470339600449699810L

Class javax.swing.tree.DefaultTreeCellRenderer extends JLabel implements Serializable

Serialized Fields

selected

boolean selected
A flag indicating the current selection status.


hasFocus

boolean hasFocus
A flag indicating the current focus status.


drawsFocusBorderAroundIcon

boolean drawsFocusBorderAroundIcon
Indicates if the focus border is also drawn around the icon.


textSelectionColor

Color textSelectionColor
The color used for text in selected cells.

See Also:
DefaultTreeCellRenderer.setTextSelectionColor(Color)

textNonSelectionColor

Color textNonSelectionColor
The color used for text in non-selected cells.

See Also:
DefaultTreeCellRenderer.setTextNonSelectionColor(Color)

backgroundSelectionColor

Color backgroundSelectionColor
The background color for selected cells.

See Also:
DefaultTreeCellRenderer.setBackgroundSelectionColor(Color)

backgroundNonSelectionColor

Color backgroundNonSelectionColor
The background color for non-selected cells.

See Also:
DefaultTreeCellRenderer.setBackgroundNonSelectionColor(Color)

borderSelectionColor

Color borderSelectionColor
The border color for selected tree cells.

See Also:
DefaultTreeCellRenderer.setBorderSelectionColor(Color)

Class javax.swing.tree.DefaultTreeModel extends Object implements Serializable

serialVersionUID: -2621068368932566998L

Serialization Methods

readObject

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

Throws:
IOException - TODO
ClassNotFoundException - TODO

writeObject

private void writeObject(ObjectOutputStream obj)
                  throws IOException
writeObject

Throws:
IOException - 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

readObject

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

Throws:
IOException - TODO
ClassNotFoundException - TODO

writeObject

private void writeObject(ObjectOutputStream value0)
                  throws IOException
writeObject

Throws:
IOException - 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

Serialized Fields

event

TreeExpansionEvent event
event

Class javax.swing.tree.TreePath extends Object implements Serializable

serialVersionUID: 4380036194768077479L

Serialized Fields

path

Object[] path
The actual patch. The DefaultTreeSelectionModel.clone() assumes that the TreePath is immutable, so it is marked final here.


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 AbstractUndoableEdit.die() method.

Class javax.swing.undo.CannotRedoException extends RuntimeException implements Serializable

Class javax.swing.undo.CannotUndoException extends RuntimeException implements Serializable

Class javax.swing.undo.CompoundEdit extends AbstractUndoableEdit implements Serializable

serialVersionUID: -6512679249930119683L

Serialized Fields

edits

Vector<T> 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 CompoundEdit.end() method changes the flag to false.

Class javax.swing.undo.StateEdit extends AbstractUndoableEdit implements Serializable

Serialized Fields

object

StateEditable object
The object which is being edited by this StateEdit.


preState

Hashtable<K,V> preState
The state of object at the time of constructing this StateEdit.


postState

Hashtable<K,V> postState
The state of object at the time when StateEdit.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 CompoundEdit.edits 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 UndoManager.undo(), indexOfNextAdd is decremented by one. For each call to UndoManager.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

Class javax.transaction.HeuristicMixedException extends Exception implements Serializable

Class javax.transaction.HeuristicRollbackException extends Exception implements Serializable

Class javax.transaction.InvalidTransactionException extends RemoteException implements Serializable

Class javax.transaction.NotSupportedException extends Exception implements Serializable

Class javax.transaction.RollbackException extends Exception implements Serializable

Class javax.transaction.SystemException extends Exception implements Serializable

Serialized Fields

errorCode

int errorCode

Class javax.transaction.TransactionRequiredException extends RemoteException implements Serializable

Class javax.transaction.TransactionRolledbackException extends RemoteException implements Serializable


Package javax.transaction.xa

Class javax.transaction.xa.XAException extends Exception implements Serializable

Serialized Fields

errorCode

int errorCode

Package javax.xml.datatype

Class javax.xml.datatype.DatatypeConfigurationException extends Exception implements Serializable


Package javax.xml.namespace

Class javax.xml.namespace.QName extends Object implements Serializable

serialVersionUID: 4418622981026545151L

Serialized Fields

namespaceURI

String namespaceURI

localPart

String localPart

prefix

String prefix

Package javax.xml.parsers

Class javax.xml.parsers.FactoryConfigurationError extends Error implements Serializable

Serialized Fields

exception

Exception exception
The underlying cause of this exception, if any.

Class javax.xml.parsers.ParserConfigurationException extends Exception implements Serializable


Package javax.xml.stream

Class javax.xml.stream.FactoryConfigurationError extends Error implements Serializable

Serialized Fields

exception

Exception exception

Class javax.xml.stream.XMLStreamException extends Exception implements Serializable

Serialized Fields

location

Location location

nested

Throwable nested

Package javax.xml.transform

Class javax.xml.transform.TransformerConfigurationException extends TransformerException implements Serializable

serialVersionUID: 1285547467942875745L

Class javax.xml.transform.TransformerException extends Exception implements Serializable

serialVersionUID: 975798773772956428L

Serialized Fields

locator

SourceLocator locator

containedException

Throwable containedException

Class javax.xml.transform.TransformerFactoryConfigurationError extends Error implements Serializable

serialVersionUID: -6527718720676281516L

Serialized Fields

exception

Exception exception

Package javax.xml.xpath

Class javax.xml.xpath.XPathException extends Exception implements Serializable

serialVersionUID: -1837080260374986980L

Serialized Fields

cause

Throwable cause

Class javax.xml.xpath.XPathExpressionException extends XPathException implements Serializable

serialVersionUID: -1837080260374986980L

Class javax.xml.xpath.XPathFactoryConfigurationException extends XPathException implements Serializable

serialVersionUID: -1837080260374986980L

Class javax.xml.xpath.XPathFunctionException extends XPathExpressionException implements Serializable

serialVersionUID: -1837080260374986980L


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._IDLTypeStub extends ObjectImpl implements Serializable

serialVersionUID: 9150293942452453626L

Class org.omg.CORBA._PolicyStub extends ObjectImpl implements Serializable

serialVersionUID: 2453656196708903849L

Class org.omg.CORBA.ACTIVITY_COMPLETED extends SystemException implements Serializable

serialVersionUID: 463786710302308798L

Class org.omg.CORBA.ACTIVITY_REQUIRED extends SystemException implements Serializable

serialVersionUID: -5684213471781455027L

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_QOS extends SystemException implements Serializable

serialVersionUID: 4746597571263117454L

Class org.omg.CORBA.BAD_TYPECODE extends SystemException implements Serializable

serialVersionUID: 6193364410915696901L

Class org.omg.CORBA.Bounds extends UserException implements Serializable

Class org.omg.CORBA.CODESET_INCOMPATIBLE extends SystemException implements Serializable

serialVersionUID: -8784048396454171789L

Class org.omg.CORBA.COMM_FAILURE extends SystemException implements Serializable

serialVersionUID: 294856734784364267L

Class org.omg.CORBA.CompletionStatus extends Object implements Serializable

serialVersionUID: -9047319660881406859L

Serialized Fields

_value

int _value

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.FREE_MEM extends SystemException implements Serializable

serialVersionUID: -1333559476995791982L

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.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.INVALID_ACTIVITY extends SystemException implements Serializable

serialVersionUID: 7907846629733712546L

Class org.omg.CORBA.INVALID_TRANSACTION extends SystemException implements Serializable

serialVersionUID: -4265126403821571697L

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.OBJ_ADAPTER extends SystemException implements Serializable

serialVersionUID: -1516541344234786928L

Class org.omg.CORBA.OBJECT_NOT_EXIST extends SystemException implements Serializable

serialVersionUID: 7226958015420512389L

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.PolicyError extends UserException implements Serializable

serialVersionUID: -9196809779974700103L

Serialized Fields

reason

short reason
Holds the exception reason code, one of BAD_POLICY, BAD_POLICY_TYPE, BAD_POLICY_VALUE, UNSUPPORTED_POLICY, UNSUPPORTED_POLICY_VALUE.

Class org.omg.CORBA.REBIND extends SystemException implements Serializable

serialVersionUID: 823920851143467547L

Class org.omg.CORBA.ServiceDetail extends Object implements Serializable

Serialized Fields

service_detail_type

int service_detail_type
The type of the information, defined by this detail.


service_detail

byte[] service_detail
The binary data, defining the information.

Class org.omg.CORBA.ServiceInformation extends Object implements Serializable

Serialized Fields

service_details

ServiceDetail[] service_details
The array of service details, defining the various aspects of this service.


service_options

int[] service_options
The array, defining various options of this service.

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

Contains more details about the exception. The lower 12 bits contain a code, defining the reason why exception has been thrown. The higher 20 bits hold "Vendor Minor Codeset ID" (VMCID).

The Classpath specifice minor exception codes are documented in the headers of the corresponding exceptions (for instance, MARSHAL).

The VMCID 0 and 0xfffff are reserved for experimental use.

See Also:
OMGVMCID

Class org.omg.CORBA.TIMEOUT extends SystemException implements Serializable

serialVersionUID: 4674850648191359518L

Class org.omg.CORBA.TRANSACTION_MODE extends SystemException implements Serializable

serialVersionUID: 681236728492128745L

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.TRANSACTION_UNAVAILABLE extends SystemException implements Serializable

serialVersionUID: 6340246200933309385L

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.UNKNOWN extends SystemException implements Serializable

serialVersionUID: -3556426185741898205L

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.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


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.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.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.UnknownException extends SystemException implements Serializable

serialVersionUID: 1725238280802233450L

Serialized Fields

originalEx

Throwable originalEx
The original exception.


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.CosNaming

Class org.omg.CosNaming._BindingIteratorImplBase extends DynamicImplementation implements Serializable

serialVersionUID: 3472591176635005503L

Class org.omg.CosNaming._BindingIteratorStub extends ObjectImpl implements Serializable

serialVersionUID: 8969257760771186704L

Serialized Fields

destroyed

boolean destroyed
The object can be destroyed only once.

Class org.omg.CosNaming._NamingContextExtImplBase extends _NamingContextImplBase implements Serializable

Class org.omg.CosNaming._NamingContextExtStub extends _NamingContextStub implements Serializable

serialVersionUID: 6333293895664182866L

Serialized Fields

converter

NameTransformer converter
The local name form converter.

Class org.omg.CosNaming._NamingContextImplBase extends DynamicImplementation implements Serializable

serialVersionUID: -114280294134561035L

Class org.omg.CosNaming._NamingContextStub extends ObjectImpl implements Serializable

serialVersionUID: 6835430958405349379L

Class org.omg.CosNaming.Binding extends Object implements Serializable

Serialized Fields

binding_type

BindingType binding_type
The binding type holds value ncontext for bindings, created with operations bind_context, rebind_context or bind_new_context. It holds value nobject of all other possible bindings.


binding_name

NameComponent[] binding_name
The binding name, consisting of the number of the name components.

Class org.omg.CosNaming.BindingType extends Object implements Serializable

serialVersionUID: 3735105633408228513L

Serialized Fields

type

int type
The binding type, defined by this instance.

Class org.omg.CosNaming.NameComponent extends Object implements Serializable

serialVersionUID: -1052538183391762390L

Serialized Fields

id

String id
The name component identifier.


kind

String kind
The name component kind (this conception is similar to the file type conception.


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.

Class org.omg.CosNaming.NamingContextPackage.NotFoundReason extends Object implements Serializable

serialVersionUID: -5689237060527596081L

Serialized Fields

value

int value
The reason code for this instance.


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

Class org.omg.DynamicAny._DynAnyFactoryStub extends ObjectImpl implements Serializable

serialVersionUID: -6575269659020082310L

Class org.omg.DynamicAny._DynAnyStub extends ObjectImpl implements Serializable

serialVersionUID: -6521892777941121597L

Class org.omg.DynamicAny._DynArrayStub extends ObjectImpl implements Serializable

serialVersionUID: -6302474930370950228L

Class org.omg.DynamicAny._DynEnumStub extends ObjectImpl implements Serializable

serialVersionUID: 696844314172031949L

Class org.omg.DynamicAny._DynFixedStub extends ObjectImpl implements Serializable

serialVersionUID: -1932029532964417188L

Class org.omg.DynamicAny._DynSequenceStub extends ObjectImpl implements Serializable

serialVersionUID: 7191437435669107554L

Class org.omg.DynamicAny._DynStructStub extends ObjectImpl implements Serializable

serialVersionUID: -8415786200783826656L

Class org.omg.DynamicAny._DynUnionStub extends ObjectImpl implements Serializable

serialVersionUID: -8921031953572009897L

Class org.omg.DynamicAny._DynValueStub extends ObjectImpl implements Serializable

serialVersionUID: 5815313794012360824L

Class org.omg.DynamicAny.NameDynAnyPair extends Object implements Serializable

serialVersionUID: -1992533286932908564L

Serialized Fields

id

String id
The name of the named value.


value

DynAny value
The value of the named value.

Class org.omg.DynamicAny.NameValuePair extends Object implements Serializable

serialVersionUID: -1289460542874201736L

Serialized Fields

value

Any value
The value of the structure record.


id

String id
The name of the structure record.


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

Class org.omg.PortableInterceptor.ForwardRequest extends UserException implements Serializable

serialVersionUID: 2128007517550526397L

Serialized Fields

forward

Object forward
The field forward.

Class org.omg.PortableInterceptor.InvalidSlot extends UserException implements Serializable

serialVersionUID: 2471643293291821501L


Package org.omg.PortableInterceptor.ORBInitInfoPackage

Class org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName extends UserException implements Serializable

serialVersionUID: 7748239257677851130L

Serialized Fields

name

String name
The name that appears to be duplicate.

Class org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidName extends UserException implements Serializable

serialVersionUID: -4599417794753377115L


Package org.omg.PortableServer

Class org.omg.PortableServer._ServantActivatorStub extends ObjectImpl implements Serializable

serialVersionUID: -685959979577281419L

Class org.omg.PortableServer._ServantLocatorStub extends ObjectImpl implements Serializable

serialVersionUID: -2374963516905770111L

Class org.omg.PortableServer.ForwardRequest extends UserException implements Serializable

serialVersionUID: -4159318367582473975L

Serialized Fields

forward_reference

Object forward_reference
The object reference, indicating the new location of the invocation target.

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.

Class org.omg.PortableServer.ThreadPolicyValue extends Object implements Serializable

serialVersionUID: -8874988828297141512L

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

Package org.omg.stub.java.rmi

Class org.omg.stub.java.rmi._Remote_Stub extends Stub implements Serializable

serialVersionUID: -1967190271952680697L


Package org.relaxng.datatype

Class org.relaxng.datatype.DatatypeException extends Exception implements Serializable

Serialized Fields

index

int index

Package org.w3c.dom

Class org.w3c.dom.DOMException extends RuntimeException implements Serializable

Serialized Fields

code

short code

Package org.w3c.dom.events

Class org.w3c.dom.events.EventException extends RuntimeException implements Serializable

Serialized Fields

code

short code

Package org.w3c.dom.ls

Class org.w3c.dom.ls.LSException extends RuntimeException implements Serializable

Serialized Fields

code

short code

Package org.w3c.dom.ranges

Class org.w3c.dom.ranges.RangeException extends RuntimeException implements Serializable

Serialized Fields

code

short code

Package org.w3c.dom.xpath

Class org.w3c.dom.xpath.XPathException extends RuntimeException implements Serializable

Serialized Fields

code

short code

Package org.xml.sax

Class org.xml.sax.SAXException extends Exception implements Serializable

Serialized Fields

exception

Exception exception
The embedded exception if tunnelling, or null.

Class org.xml.sax.SAXNotRecognizedException extends SAXException implements Serializable

Class org.xml.sax.SAXNotSupportedException extends SAXException implements Serializable

Class org.xml.sax.SAXParseException extends SAXException implements Serializable

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()

Package sun.awt

Class sun.awt.CausedFocusEvent extends FocusEvent implements Serializable

Serialized Fields

cause

CausedFocusEvent.Cause cause
The cause of the focus change.

Class sun.awt.CustomCursor extends Cursor implements Serializable

Serialized Fields

image

Image image

Class sun.awt.EmbeddedFrame extends Frame implements Serializable

serialVersionUID: 2967042741780317130L

Serialized Fields

isCursorAllowed

boolean isCursorAllowed

supportsXEmbed

boolean supportsXEmbed

appletKFM

KeyboardFocusManager appletKFM

Class sun.awt.FocusingTextField extends TextField implements Serializable

Serialized Fields

next

TextField next

willSelect

boolean willSelect

Class sun.awt.ModalityEvent extends AWTEvent implements Serializable

Serialized Fields

listener

sun.awt.ModalityListener listener

Class sun.awt.OrientableFlowLayout extends FlowLayout implements Serializable

Serialized Fields

orientation

int orientation

vAlign

int vAlign

vHGap

int vHGap

vVGap

int vVGap

Class sun.awt.PeerEvent extends InvocationEvent implements Serializable

Serialized Fields

flags

long flags

Class sun.awt.SunToolkit.IllegalThreadException extends RuntimeException implements Serializable

Class sun.awt.SunToolkit.InfiniteLoop extends RuntimeException implements Serializable

Class sun.awt.SunToolkit.OperationTimedOut extends RuntimeException implements Serializable

Class sun.awt.UngrabEvent extends AWTEvent implements Serializable

Class sun.awt.VariableGridLayout extends GridLayout implements Serializable

Serialized Fields

rowsSet

BitSet rowsSet

rowFractions

double[] rowFractions

colsSet

BitSet colsSet

colFractions

double[] colFractions

rows

int rows

cols

int cols

hgap

int hgap

vgap

int vgap

Class sun.awt.X11CustomCursor extends sun.awt.CustomCursor implements Serializable


Package sun.misc

Class sun.misc.CEFormatException extends IOException implements Serializable

Class sun.misc.CEStreamExhausted extends IOException implements Serializable

Class sun.misc.ExtensionInstallationException extends Exception implements Serializable

Class sun.misc.InvalidJarIndexException extends RuntimeException implements Serializable

Class sun.misc.REException extends Exception implements Serializable

Class sun.misc.ServiceConfigurationError extends Error implements Serializable


Package sun.reflect.annotation

Class sun.reflect.annotation.AnnotationInvocationHandler extends Object implements Serializable

serialVersionUID: 6182022883658399397L

Serialized Fields

type

Class<T> type

memberValues

Map<K,V> memberValues