GNU Classpath (0.17) | ||
Frames | No Frames |
serialVersionUID: -5836846270535785031L
private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException
Read an applet from an object stream. This checks for a headless environment, then does the normal read.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if a class is not foundIOException
- if deserialization failsHeadlessException
- if this is a headless environment
- Since:
- 1.4
- See Also:
GraphicsEnvironment.isHeadless()
AccessibleContext accessibleContext
The accessibility context for this applet.
- Since:
- 1.2
the accessibleContext for this
serialVersionUID: 8127374778187708896L
serialVersionUID: -1819846354050686206L
serialVersionUID: -1825314779160409405L
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()
serialVersionUID: -1900414231151323879L
serialVersionUID: -6430539691155161871L
protected Object readResolve() throws ObjectStreamException
Returns a cached version of the deserialized keystroke, if available.
- Returns:
- a cached replacement
- Throws:
ObjectStreamException
- if something goes wrong
char keyChar
The typed character, or CHAR_UNDEFINED for key presses and releases.the keyChar
int keyCode
The virtual key code, or VK_UNDEFINED for key typed. Package visible for use by Component.the keyCode
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
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
serialVersionUID: 8890392402588814465L
serialVersionUID: -8658291919501921765L
serialVersionUID: -8774683716313001058L
String actionCommand
The action command name for this button. This is package-private to avoid an accessor method.
serialVersionUID: 642321655757800191L
serialVersionUID: -2284879212465893870L
serialVersionUID: -6325592262103146699L
serialVersionUID: -4328196481005934313L
serialVersionUID: 7270714317450821763L
serialVersionUID: 7881579233144754107L
serialVersionUID: 3729780091441768983L
serialVersionUID: 6190621106981774043L
serialVersionUID: -4269533416223798698L
serialVersionUID: -4075310674757313071L
Vector pItems
A list of items for the choice box, which can be
null
. This is package-private to avoid an accessor method.
serialVersionUID: 7175603582428509322L
serialVersionUID: 118526816881161077L
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 usegetRGB()
.the value of the color, whether an RGB literal or array index
- See Also:
Color.getRGB()
float[] frgbvalue
The color value, in sRGB. This may be null if the color was constructed with ints; and it does not include alpha. This stores red, green, and blue, in the range 0.0f - 1.0f.
- Since:
- 1.2
the rgb components of the value
float[] fvalue
The color value, in the native ColorSpace components. This may be null if the color was constructed with ints or in the sRGB color space; and it does not include alpha.
- Since:
- 1.2
the original color space components of the color
float falpha
The alpha value. This is in the range 0.0f - 1.0f, but is invalid if deserialized as 0.0 when frgbvalue is null.
- Since:
- 1.2
the alpha component of this color
ColorSpace cs
The ColorSpace. Null means the default sRGB space.
- Since:
- 1.2
the color space for this color
serialVersionUID: -7644114512714619750L
private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException
Deserializes this component. This regenerates all serializable listeners which were registered originally.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if deserialization failsIOException
- if the stream fails
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this component. This ignores all listeners which do not implement Serializable, but includes those that do.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the stream fails
int x
The x position of the component in the parent's coordinate system.the x position
- See Also:
Component.getLocation()
int y
The y position of the component in the parent's coordinate system.the y position
- See Also:
Component.getLocation()
Color foreground
The foreground color for the component. This may be null.the foreground color
Color background
The background color for the component. This may be null.the background color
Font font
The default font used in the component. This may be null.the font
- See Also:
Component.getFont()
,Component.setFont(Font)
Cursor cursor
The cursor displayed when the pointer is over this component. This may be null.
boolean ignoreRepaint
True if the object should ignore repaint events (usually because it is not showing).
- Since:
- 1.4
true to ignore repaints
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
boolean enabled
True if the object is enabled, meaning it can interact with the user. For component, this defaults to true.true if enabled
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
DropTarget dropTarget
The DropTarget for drag-and-drop operations.
- Since:
- 1.2
the drop target, or null
Vector popups
The list of popup menus for this component.the list of popups
- See Also:
Component.add(PopupMenu)
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)
boolean nameExplicitlySet
True once the user has set the name. Note that the user may set the name to null.true if the name has been explicitly set
- See Also:
Component
,Component.getName()
,Component.setName(String)
boolean focusable
Indicates if the object can be focused. Defaults to true for components.
- Since:
- 1.4
int isFocusTraversableOverridden
Tracks whether this component'sisFocusTraversable()
method has been overridden.
- Since:
- 1.4
Set[] focusTraversalKeys
The focus traversal keys, if not inherited from the parent or default keyboard focus manager. These sets will contain only AWTKeyStrokes that represent press and release events to use as focus control.
- Since:
- 1.4
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
Dimension minSize
Cached information on the minimum size. Should have been transient.ignore
Dimension prefSize
Cached information on the preferred size. Should have been transient.ignore
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)
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
PropertyChangeSupport changeSupport
Describes all registered PropertyChangeListeners.
- Since:
- 1.2
the property change listeners
int componentSerializedDataVersion
The serialization version for this class. Currently at version 4. XXX How do we handle prior versions?the serialization version
AccessibleContext accessibleContext
The accessible context associated with this component. This is only set by subclasses.
- Since:
- 1.2
the accessibility context
- See Also:
Component.getAccessibleContext()
serialVersionUID: 642321655757800191L
ComponentListener accessibleAWTComponentHandler
Converts show/hide events to PropertyChange events, and is registered as a component listener on this component.the component handler
FocusListener accessibleAWTFocusHandler
Converts focus events to PropertyChange events, and is registered as a focus listener on this component.the focus handler
serialVersionUID: -4113291392143563828L
int orientation
The orientation of this object; bitwise-or of unknown (1), horizontal (2), and left-to-right (4).the orientation
serialVersionUID: 4613797578919906343L
private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException
Deserialize this Container:
- Read from the stream the default serializable fields.
- Read a list of serializable ContainerListeners as optional data. If the list is null, no listeners will be registered.
- Read this Container's FocusTraversalPolicy as optional data. If this is null, then this Container will use a DefaultFocusTraversalPolicy.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if deserialization failsIOException
- if the stream fails
private void writeObject(ObjectOutputStream s) throws IOException
Serialize this Container:
- Write to the stream the default serializable fields.
- Write the list of serializable ContainerListeners as optional data.
- Write this Container's FocusTraversalPolicy as optional data.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the stream fails
FocusTraversalPolicy focusTraversalPolicy
The focus traversal policy that determines how focus is transferred between this Container and its children.
serialVersionUID: 5081320404842566097L
ContainerListener accessibleContainerHandler
The handler to fire PropertyChange when children are added or removed.the handler for property changes
serialVersionUID: 486933713763926351L
boolean implicitDownCycleTraversal
True if implicit down cycling is enabled.
serialVersionUID: 8028237497568985504L
serialVersionUID: 486933713763926351L
serialVersionUID: 5920926903803293709L
EventQueue eq2
Secondary EventQueue to handle AWT events while we are blocked for modality in show
serialVersionUID: 5081320404842566097L
serialVersionUID: 4723952579491349524L
serialVersionUID: 5488922509400504703L
serialVersionUID: 5035145889651310422L
serialVersionUID: -7262534875583282631L
int align
The justification alignment of the lines of components, which will be one of the constants defined in this class.
serialVersionUID: -4206021311591459213L
serialVersionUID: -4481290147811361272L
serialVersionUID: 1681126225205050147L
serialVersionUID: 2673458971256075116L
int frameSerializedDataVersion
The version of the class data being serialized // FIXME: what is this value?
boolean mbManagement
Constant used by the JDK Motif peer set. Not used in this implementation.
int state
The state of this frame. // FIXME: What are the values here? This is package-private to avoid an accessor method.
serialVersionUID: 5081320404842566097L
serialVersionUID: -8061369279557787079L
serialVersionUID: -1000070633030801713L
serialVersionUID: 8838754796412211005L
serialVersionUID: -7411804673224730901L
serialVersionUID: 167183644944358563L
serialVersionUID: -1889339587208144238L
serialVersionUID: -2272572637695466749L
serialVersionUID: 3094126758329070636L
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
.
serialVersionUID: -3568967560160480438L
serialVersionUID: -3304312411574666869L
boolean multipleMode
Indicates whether or not multiple items can be selected simultaneously.
serialVersionUID: 642321655757800191L
serialVersionUID: 642321655757800191L
serialVersionUID: -483174189758638095L
serialVersionUID: -8809584163345499784L
serialVersionUID: -4269533416223798698L
serialVersionUID: -4930327919388951260L
serialVersionUID: -8577604491830083815L
serialVersionUID: -4536902356223894379L
AccessibleContext accessibleContext
The accessible context for this component.the accessibility information for this component.
- See Also:
MenuComponent.getAccessibleContext()
boolean nameExplicitlySet
Was the name of the component set? This value defaults to false and becomes true after a call tosetName()
. Please note that this does not guarantee that name will then be non-null, as this may be the value passed tosetName()
.true if the name value has been explicitly set by calling
setName()
.
- See Also:
MenuComponent.setName(String)
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.
serialVersionUID: -4269533416223798698L
serialVersionUID: -21757335363267194L
String actionCommand
The name of the action command generated by this item. This is package-private to avoid an accessor method.
boolean enabled
Indicates whether or not this menu item is enabled. This is package-private to avoid an accessor method.
serialVersionUID: -4269533416223798698L
serialVersionUID: 143448358473180225L
serialVersionUID: -2728009084054400034L
serialVersionUID: -6409552226660031050L
serialVersionUID: -5276940640259749850L
int x
The x coordinate.the X coordinate of the point
- See Also:
Point.getLocation()
,Point.move(int,int)
int y
The y coordinate.The Y coordinate of the point
- See Also:
Point.getLocation()
,Point.move(int,int)
serialVersionUID: -6460061437900069969L
int npoints
This total number of endpoints.the number of endpoints, possibly less than the array sizes
int[] xpoints
The array of X coordinates of endpoints. This should not be null.the x coordinates
- See Also:
Polygon.addPoint(int,int)
int[] ypoints
The array of Y coordinates of endpoints. This should not be null.the y coordinates
- See Also:
Polygon.addPoint(int,int)
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()
serialVersionUID: -4620452533522760060L
serialVersionUID: -4269533416223798698L
serialVersionUID: -4345857070255674764L
serialVersionUID: 8451667562882310543L
int lineIncrement
The amount by which the value of the scrollbar is changed when incrementing in line mode.
int pageIncrement
The amount by which the value of the scrollbar is changed when incrementing in page mode.
int orientation
The orientation of this scrollbar, which will be either the
HORIZONTAL
orVERTICAL
constant from this class.
int visibleAmount
The width of the scrollbar's thumb, which is relative to the minimum and maximum value of the scrollbar.
serialVersionUID: -344337268523697807L
serialVersionUID: 7956609840827222915L
ScrollPaneAdjustable hAdjustable
The horizontal scrollbar for this window. The methods
setMinimum()
,setMaximum
, andsetVisibleAmount
must not be called on this scrollbar.
ScrollPaneAdjustable vAdjustable
The vertical scrollbar for this window. The methods
setMinimum()
,setMaximum
, andsetVisibleAmount
must not be called on this scrollbar.
int scrollbarDisplayPolicy
Indicates when scrollbars are displayed in this window, will be one of the constants from this class.
serialVersionUID: 5081320404842566097L
serialVersionUID: -3359745691033257079L
serialVersionUID: 4503142729533789064L
serialVersionUID: 3692302836626095722L
int columns
The number of columns used in this text area's preferred and minimum size calculations.
int scrollbarVisibility
The scrollbar display policy. One of SCROLLBARS_BOTH, SCROLLBARS_VERTICAL_ONLY, SCROLLBARS_HORIZONTAL_ONLY, SCROLLBARS_NONE.
serialVersionUID: 642321655757800191L
serialVersionUID: -2214773872412987419L
boolean editable
Indicates whether or not this component is editable. This is package-private to avoid an accessor method.
int selectionStart
The starting position of the selected text region. This is package-private to avoid an accessor method.
int selectionEnd
The ending position of the selected text region. This is package-private to avoid an accessor method.
serialVersionUID: 642321655757800191L
serialVersionUID: -2966288784432217853L
serialVersionUID: 642321655757800191L
serialVersionUID: 4497834738069338734L
serialVersionUID: 5081320404842566097L
serialVersionUID: 5775558044142994965L
serialVersionUID: -409452704308689724L
serialVersionUID: 3455889114070431483L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes the object
serialVersionUID: -3938515861990936766L
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.
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes an instance
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.
serialVersionUID: -1124721290732002649L
serialVersionUID: 8505067385152579334L
serialVersionUID: 7286140888240322498L
serialVersionUID: 8367026044764648243L
public void writeExternal(ObjectOutput stream) throws IOException
Serialize this class.
- Parameters:
stream
- TheObjectOutput
stream to serialize to.
- Throws:
IOException
- If an error occurs.
public void readExternal(ObjectInput stream) throws IOException, ClassNotFoundException
De-serialize this class.
- Parameters:
stream
- TheObjectInput
stream to deserialize from.
- Throws:
IOException
- If an error ocurs.ClassNotFoundException
- If the class for an object being restored cannot be found.
serialVersionUID: -5604407764691570741L
serialVersionUID: 5383814944251665601L
serialVersionUID: 9080172649166731306L
serialVersionUID: 8996673345831063337L
serialVersionUID: 6236096958971414066L
serialVersionUID: -115407898692194719L
serialVersionUID: 481346297933902471L
serialVersionUID: -5571321229470821891L
serialVersionUID: -763287114604032641L
serialVersionUID: -6283860791671019047L
serialVersionUID: -634158968993743371L
serialVersionUID: -8422265619058953682L
serialVersionUID: -1721911170440459322L
serialVersionUID: 5516075349620653480L
serialVersionUID: -6062568741193956678L
serialVersionUID: 8996673345831063337L
serialVersionUID: -7671078796273832149L
String actionCommand
A nonlocalized string that gives more specific details of the event cause.the command for this event
- See Also:
ActionEvent.getActionCommand()
int modifiers
The bitmask of the modifiers that were pressed during the action.modifiers for this event
- See Also:
ActionEvent.getModifiers()
long when
The timestamp of this event; usually the same as the underlying input event.
- Since:
- 1.4
the timestamp of the event
- See Also:
ActionEvent.getWhen()
serialVersionUID: 5700290645205279921L
Adjustable adjustable
The adjustable object that caused the event.the cause
- See Also:
AdjustmentEvent.getAdjustable()
int adjustmentType
The type of adjustment, one ofUNIT_INCREMENT
,UNIT_DECREMENT
,BLOCK_INCREMENT
,BLOCK_DECREMENT
, orTRACK
.the adjustment type
- See Also:
AdjustmentEvent.getAdjustmentType()
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()
boolean isAdjusting
True if this is in a series of multiple adjustment events.
- Since:
- 1.4
true if this is not the last adjustment
serialVersionUID: 8101406823902992965L
serialVersionUID: -4114942250539772041L
serialVersionUID: 523753786457416396L
boolean temporary
Indicates whether or not the focus change is temporary.true if the focus change is temporary
- See Also:
FocusEvent.isTemporary()
Component opposite
The other component which is giving up or stealing focus from this component, if known.
- Since:
- 1.4
the component with the opposite focus event, or null
- See Also:
FocusEvent.getOppositeComponent()
serialVersionUID: -5337576970038043990L
Component changed
The component at the top of the changed hierarchy.the top component changed
Container changedParent
The parent of this component, either before or after the change depending on the type of change.the parent component changed
serialVersionUID: -2482525981698309786L
int modifiers
The modifiers in effect for this event. Package visible for use by subclasses. The old style (bitmask 0x3f) should not be mixed with the new style (bitmasks 0xffffffc0).the modifier state, stored in the new style
- See Also:
InputEvent.getModifiers()
,MouseEvent
serialVersionUID: 4727190874778922661L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads in the object from a serial stream, updating when toEventQueue.getMostRecentEventTime()
if necessary.
- Parameters:
s
- the stream to read from
- Throws:
IOException
- if deserialization failsClassNotFoundException
- if deserialization fails
serialVersionUID: 436056344909459450L
Runnable runnable
This is theRunnable
object to call when dispatched.the runnable to execute
Object notifier
This is the object to callnotifyAll()
on when the call torun()
returns, ornull
if no object is to be notified.the object to notify
boolean catchExceptions
This variable is set totrue
if exceptions are caught and stored in a variable during the call torun()
, otherwise exceptions are ignored and propagate up.true to catch exceptions
Exception exception
This is the caught exception thrown in therun()
method. It is null if exceptions are ignored, the run method hasn't completed, or there were no exceptions.the caught exception, if any
long when
The timestamp when this event was created.
- Since:
- 1.4
the timestamp
- See Also:
InvocationEvent.getWhen()
serialVersionUID: -608708132447206933L
int stateChange
The state change direction, one ofSELECTED
orDESELECTED
.the selection state
serialVersionUID: -2352130953028126954L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads in the object from a serial stream.
- Parameters:
s
- the stream to read from
- Throws:
IOException
- if deserialization failsClassNotFoundException
- if deserialization fails
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()
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()
int keyLocation
The keyboard location of the key. One ofKEY_LOCATION_UNKNOWN
,KEY_LOCATION_STANDARD
,KEY_LOCATION_LEFT
,KEY_LOCATION_RIGHT
, orKEY_LOCATION_NUMPAD
.
- Since:
- 1.4
the key location
- See Also:
KeyEvent.getKeyLocation()
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
serialVersionUID: -991214153494842848L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads in the object from a serial stream.
- Parameters:
s
- the stream to read from
- Throws:
IOException
- if deserialization failsClassNotFoundException
- if deserialization fails
int x
The X coordinate of the mouse cursor at the time of the event.the x coordinate
- See Also:
MouseEvent.getX()
int y
The Y coordinate of the mouse cursor at the time of the event.the y coordinate
- See Also:
MouseEvent.getY()
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
int button
Indicates which mouse button changed state. Can only be one ofNOBUTTON
,BUTTON1
,BUTTON2
, orBUTTON3
.
- Since:
- 1.4
- See Also:
MouseEvent.getButton()
boolean popupTrigger
Whether or not this event should trigger a popup menu.true if this is a popup trigger
- See Also:
PopupMenu
,MouseEvent.isPopupTrigger()
serialVersionUID: 6459879390515399677L
int scrollType
Indicates what scroll type should take place. This should be limited toWHEEL_UNIT_SCROLL
andWHEEL_BLOCK_SCROLL
.the scroll type
int scrollAmount
Indicates the scroll amount. This is only meaningful if scrollType is WHEEL_UNIT_SCROLL.the number of lines to scroll
serialVersionUID: 1267492026433337593L
Rectangle updateRect
This is the rectange to be painted or updated.the non-null rectangle to be painted
serialVersionUID: 6269902291250941179L
serialVersionUID: -1567959133147912127L
Window opposite
The other Window involved in a focus or activation change. For WINDOW_ACTIVATED and WINDOW_GAINED_FOCUS events, this is the window that lost focus; for WINDOW_DEACTIVATED and WINDOW_LOST_FOCUS, this is the window that stole focus; and for other events (or when native implementation does not have the data available), this is null.
- Since:
- 1.4
the opposite window, or null
- See Also:
WindowEvent.getOppositeWindow()
serialVersionUID: -8022764705923730308L
serialVersionUID: 7744112784117861702L
protected Object readResolve() throws InvalidObjectException
After deserialization, this method ensures that only one instance of each attribute is used.
- Overrides:
- readResolve in interface AttributedCharacterIterator.Attribute
- Returns:
- The (single) attribute instance.
- Throws:
InvalidObjectException
- if the attribute is not recognised.
serialVersionUID: 3356247357827709530L
serialVersionUID: 1330973210523860834L
private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException
Reads a transform from an object stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if there is a problem deserializingIOException
- if there is a problem deserializing
serialVersionUID: -5158084205220481094L
serialVersionUID: 6137225240503990466L
serialVersionUID: 8026288481846276658L
serialVersionUID: 96598996116164315L
serialVersionUID: -7577115551785240750L
serialVersionUID: 4725169026278854136L
serialVersionUID: -3757589981158265819L
serialVersionUID: 5850870712125932846L
IOException mException
The exception that caused this (duplicates Throwable).the I/O exception that terminated the job
serialVersionUID: -3728150539969542619L
serialVersionUID: 7042693688939648123L
String propertyName
The name of the property that changed, may be null. Package visible for use by PropertyChangeSupport.the changed property name
Object newValue
The new value of the property, may be null. Package visible for use by PropertyChangeSupport.the new property value
Object oldValue
The old value of the property, may be null. Package visible for use by PropertyChangeSupport.the old property value
Object propagationId
The propagation ID, reserved for future use. May be null.the Propagation ID
serialVersionUID: 6401253773779951803L
private void writeObject(ObjectOutputStream s) throws IOException
Saves the state of the object to the stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if anything goes wrong
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads the object back from stream (deserialization). XXX Since serialization for 1.1 streams was not documented, this may not work if propertyChangeSupportSerializedDataVersion is 1.
- Parameters:
s
- the stream to read from
- Throws:
IOException
- if reading the stream failsClassNotFoundException
- if deserialization fails
Hashtable children
Maps property names (String) to named listeners (PropertyChangeSupport). If this is a child instance, this field will be null.
- Since:
- 1.2
the map of property names to named listener managers
serialVersionUID: 129596057694162164L
serialVersionUID: -5090210921595982017L
private void writeObject(ObjectOutputStream s) throws IOException
Saves the state of the object to the stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if anything goes wrong
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads the object back from stream (deserialization). XXX Since serialization for 1.1 streams was not documented, this may not work if vetoableChangeSupportSerializedDataVersion is 1.
- Parameters:
s
- the stream to read from
- Throws:
IOException
- if reading the stream failsClassNotFoundException
- if deserialization fails
Hashtable children
Maps property names (String) to named listeners (VetoableChangeSupport). If this is a child instance, this field will be null.
- Since:
- 1.2
the map of property names to named listener managers
serialVersionUID: 6328947014421475877L
BeanContextChild beanContextChildPeer
The peer on which to performset
actions. This is here so that this class can be used as a peer. When extending this class, this variable will be set tothis
.
PropertyChangeSupport pcSupport
Listeners are registered here and events are fired through here.
VetoableChangeSupport vcSupport
Listeners are registered here and events are fired through here.
serialVersionUID: 7267998073569045052L
serialVersionUID: 7267998073569045052L
serialVersionUID: 7267998073569045052L
serialVersionUID: 7267998073569045052L
serialVersionUID: -8494482757288719206L
serialVersionUID: -6848044915271367103L
serialVersionUID: 861278251667444782L
serialVersionUID: -4879613978649577204L
private void writeObject(ObjectOutputStream s) throws ClassNotFoundException, IOException
serialVersionUID: 3289144128843950629L
serialVersionUID: -8680016352018427031L
serialVersionUID: 6433858223774886977L
public void readExternal(ObjectInput in) throws ClassNotFoundException, IOException
This method restores an object's state by reading in the instance data for the object from the passed in stream. Note that this stream is not a subclass ofInputStream
, but rather is a class that implements theObjectInput
interface. That interface provides a mechanism for reading in Java data types from a stream. Note that this method must be compatible withwriteExternal
. It must read back the exact same types that were written by that method in the exact order they were written. If this method needs to read back an object instance, then the class for that object must be found and loaded. If that operation fails, then this method throws aClassNotFoundException
- Parameters:
in
- AnObjectInput
instance for reading in the object state
- Throws:
ClassNotFoundException
- If the class of an object being restored cannot be foundIOException
- If any other error occurs
public void writeExternal(ObjectOutput out) throws IOException
This method is responsible for writing the instance data of an object to the passed in stream. Note that this stream is not a subclass ofOutputStream
, but rather is a class that implements theObjectOutput
interface. That interface provides a number of methods for writing Java data values to a stream. Not that the implementation of this method must be coordinated with the implementation ofreadExternal
.
- Parameters:
out
- AnObjectOutput
instance for writing the object state
- Throws:
IOException
- If an error occurs
serialVersionUID: 301077366599181567L
serialVersionUID: -897856973823710492L
serialVersionUID: 7930732926638008763L
serialVersionUID: 4020568460727500567L
int bytesTransferred
The number of bytes read/written prior to the interruption.count of bytes successfully transferred
serialVersionUID: -4333316296251054416L
serialVersionUID: 3233174318281839583L
serialVersionUID: 7818375828146090155L
serialVersionUID: -3893467273049808895L
serialVersionUID: 2906642554793891381L
serialVersionUID: -6120832682080437368L
serialVersionUID: 7260898174833392607L
serialVersionUID: -8011121865681257820L
boolean eof
Whether or not the end of the stream has been reached.the end of the buffer was reached
serialVersionUID: 8537212141160296410L
serialVersionUID: 8983558202217591746L
serialVersionUID: -2353342684412443330L
serialVersionUID: -4274276298326136670L
serialVersionUID: 420743449228280612L
serialVersionUID: -3326426625597282442L
serialVersionUID: -1654391082989018462L
serialVersionUID: 2256477558314496007L
serialVersionUID: -5116101128118950844L
serialVersionUID: -4522193890499838241L
serialVersionUID: -5013299493970297370L
serialVersionUID: -3665804199014368530L
serialVersionUID: -7183698231559129828L
serialVersionUID: 3786198910865385080L
serialVersionUID: 3206093459760846163L
serialVersionUID: -9223365651070458532L
serialVersionUID: 1054362542914539689L
serialVersionUID: -8420114879011949195L
serialVersionUID: 9176873029745254542L
serialVersionUID: 5195511250079656443L
serialVersionUID: -9172774392245257468L
serialVersionUID: 4980196508277280342L
serialVersionUID: -3387516993124229948L
serialVersionUID: 1521711792217232256L
serialVersionUID: -2671257302660747028L
serialVersionUID: -8988904074992417891L
serialVersionUID: 6616958222490762034L
serialVersionUID: -5365630128856068164L
serialVersionUID: 3713306369498869069L
serialVersionUID: -1848914673093119416L
serialVersionUID: -7626246362397460174L
serialVersionUID: -4914975503642802119L
serialVersionUID: 234122996006267687L
serialVersionUID: -4885810657349421204L
serialVersionUID: -8441929162975509110L
serialVersionUID: 1360826667806852920L
serialVersionUID: -9062593416125562365L
serialVersionUID: 6700697376100628473L
serialVersionUID: 3579600108157160122L
serialVersionUID: 4290774380558885855L
serialVersionUID: -8960118058596991861L
serialVersionUID: 9095859863287012458L
serialVersionUID: -3456430195886129035L
serialVersionUID: -6143714805279938260L
serialVersionUID: -3765521442372831335L
serialVersionUID: 5034388446362600923L
serialVersionUID: 5162710183389028792L
serialVersionUID: -8742448824652078965L
serialVersionUID: -2848938806368998894L
serialVersionUID: 8228564086184010517L
serialVersionUID: -7034897190745766939L
serialVersionUID: 7399184964622342223L
serialVersionUID: 6878364983674394167L
serialVersionUID: 7515723908773894738L
serialVersionUID: 8609175038441759607L
serialVersionUID: 6992337162326171013L
int lineNumber
The line number in the file, negative if unknown.the source code line number, if known
String declaringClass
The fully qualified class name, null if unknown.the enclosing class, if known
String methodName
The method name in the class, null if unknown.the enclosing method, if known
serialVersionUID: -6849794470754667710L
char[] value
Characters which make up the String. Package access is granted for use by StringBuffer.
int count
Holds the number of characters in value. This number is generally the same as value.length, but can be smaller because substrings and StringBuffers can share arrays. Package visible for use by trusted code.
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).
int offset
Holds the starting position for characters in value[]. Since substring()'s are common, the use of offset allows the operation to perform in O(1). Package access is granted for use by StringBuffer.
serialVersionUID: 3388685877147921107L
int count
Index of next available character (and thus the size of the current string contents). Note that this has permissions set this way so that String can get the value.the number of characters in the buffer
char[] value
The buffer. Note that this has permissions set this way so that String can get the value.the buffer
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
serialVersionUID: 4383685877147921099L
int count
Index of next available character (and thus the size of the current string contents). Note that this has permissions set this way so that String can get the value.the number of characters in the buffer
char[] value
The buffer. Note that this has permissions set this way so that String can get the value.the buffer
serialVersionUID: -6762910422159637258L
serialVersionUID: -4417128565033088268L
serialVersionUID: -3042686055658047285L
String detailMessage
The detail message.specific details about the exception, may be null
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 tothis
until initialized.
- Since:
- 1.4
the cause, or null if unknown, or this if not yet set
StackTraceElement[] stackTrace
The stack trace, in a serialized form.
- Since:
- 1.4
the elements of the stack trace; this is non-null, and has no null entries
serialVersionUID: -7034897190745766939L
serialVersionUID: 2524784860676771849L
serialVersionUID: -4019343241616879428L
serialVersionUID: -7123279212883497373L
serialVersionUID: -1242599979055084673L
serialVersionUID: 7001962396098498785L
serialVersionUID: 4161983926571568670L
serialVersionUID: 4980196508277280342L
serialVersionUID: 8125925355765570191L
serialVersionUID: -8420114879011949195L
serialVersionUID: 4085088731926701167L
serialVersionUID: -2222568056686623797L
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
serialVersionUID: 7412737110241507485L
serialVersionUID: 330127114055056639L
Throwable undeclaredThrowable
The immutable exception that this wraps. This field is redundant withThrowable
, but is necessary for serial compatibility.the chained exception
serialVersionUID: 6108874887143696463L
serialVersionUID: -8287574255936472291L
private void writeObject(ObjectOutputStream s) throws IOException, ClassNotFoundException
serialVersionUID: -5945005768251722951L
serialVersionUID: 3831404271622369215L
serialVersionUID: 3286316764910316507L
serialVersionUID: 6880410070516793377L
serialVersionUID: 3286316764910316507L
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.
int family
The field 'family' seems to be the AF_ value. FIXME: Much of the code in the other java.net classes does not make use of this family field. A better implementation would be to make use of getaddrinfo() and have other methods just check the family field rather than examining the length of the address each time.
serialVersionUID: 5076001401234631237L
serialVersionUID: -182787522200415866L
serialVersionUID: -8343910153355041693L
serialVersionUID: -1897550894873493790L
serialVersionUID: 8462541992376507323L
serialVersionUID: -6098449442062388080L
serialVersionUID: 5215720748342549866L
serialVersionUID: -5935874303556886934L
serialVersionUID: -7204263841984476862L
serialVersionUID: -8846654841826352300L
serialVersionUID: -4639126076052875403L
serialVersionUID: -4169033248853639508L
serialVersionUID: -6052424284110960213L
serialVersionUID: 2137979680897488891L
serialVersionUID: -7627629688361524110L
String protocol
The name of the protocol for this URL. The protocol is always stored in lower case.
String host
The hostname or IP address of this protocol. This includes a possible user. For examplejoe@some.host.net
.
int port
The port number of this protocol or -1 if the port number used is the default for this protocol.
serialVersionUID: -7034897190745766939L
serialVersionUID: -7034897190745766939L
serialVersionUID: -1848914673093119416L
serialVersionUID: -1242599979055084673L
serialVersionUID: -1848914673093119416L
serialVersionUID: 7818375828146090155L
serialVersionUID: -1848914673093119416L
serialVersionUID: 7818375828146090155L
serialVersionUID: 7818375828146090155L
serialVersionUID: -1848914673093119416L
serialVersionUID: -1848914673093119416L
serialVersionUID: 7818375828146090155L
serialVersionUID: -1848914673093119416L
serialVersionUID: -5365630128856068164L
serialVersionUID: -1848914673093119416L
serialVersionUID: -1848914673093119416L
serialVersionUID: -1848914673093119416L
serialVersionUID: -1848914673093119416L
serialVersionUID: -1848914673093119416L
serialVersionUID: -1848914673093119416L
serialVersionUID: -5365630128856068164L
serialVersionUID: -5365630128856068164L
serialVersionUID: 7818375828146090155L
serialVersionUID: 4980196508277280342L
serialVersionUID: 1457525358470002989L
serialVersionUID: 7818375828146090155L
serialVersionUID: 7818375828146090155L
serialVersionUID: 1490765524727386367L
serialVersionUID: 6314925228044966088L
serialVersionUID: 9218657361741657110L
serialVersionUID: 4863550261346652506L
serialVersionUID: -8087809532704668744L
serialVersionUID: 6223554758134037936L
serialVersionUID: 8988374069173025854L
serialVersionUID: 6619395951570472985L
serialVersionUID: -1857741824849069317L
serialVersionUID: -5148567311918794206L
serialVersionUID: -8433406075740433514L
serialVersionUID: 8455284893909696482L
serialVersionUID: -4775845313121906682L
serialVersionUID: 7054464920481467219L
serialVersionUID: -7088199405468872373L
serialVersionUID: 1800467484195073863L
serialVersionUID: -8152710247442114228L
serialVersionUID: 594380845140740218L
serialVersionUID: -3120617863591563455L
serialVersionUID: 4863550261346652506L
serialVersionUID: 7455834104417690957L
serialVersionUID: -4320118837291406071L
serialVersionUID: -7696947875314805420L
serialVersionUID: -4936225423168276595L
serialVersionUID: 6165754737887770191L
serialVersionUID: -1648432278909740833L
serialVersionUID: -4608673054848209235L
serialVersionUID: 7056094974750002460L
serialVersionUID: 3425547551622251430L
serialVersionUID: -5713411624328831948L
serialVersionUID: -538642295484486218L
serialVersionUID: -9155485338494060170L
serialVersionUID: -6386392263968365220L
serialVersionUID: -3215090123894869218L
private void writeObject(ObjectOutputStream out) throws IOException, ClassNotFoundException
serialVersionUID: 3632638527362204081L
serialVersionUID: -4100238210092549637L
serialVersionUID: -1585587260594494182L
serialVersionUID: 6617456357664815945L
serialVersionUID: 4687940720827538231L
serialVersionUID: -7780460454818859281L
serialVersionUID: -7860299673822761231L
serialVersionUID: -7622072999407781979L
serialVersionUID: 1086053664494604050L
serialVersionUID: 4974527148936298033L
serialVersionUID: 5138225684096988535L
serialVersionUID: -2916474571451318075L
serialVersionUID: 6279438298436773498L
serialVersionUID: 4977541819976013951L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads this object from a serialization stream.
- Parameters:
s
- the input stream
- Throws:
IOException
- if reading failsClassNotFoundException
- if deserialization fails
private void writeObject(ObjectOutputStream s) throws IOException
Writes this object to a serialization stream.
- Parameters:
s
- the output stream
- Throws:
IOException
- if writing fails
serialVersionUID: 5821450303093652515L
serialVersionUID: 894798122053539237L
serialVersionUID: -5240450096227834308L
private void writeObject(ObjectOutputStream s) throws IOException
Ensures that serialization is legal, by checking the guard.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
serialVersionUID: 3609922007826600659L
serialVersionUID: -2337346281189773310L
serialVersionUID: 2864672297499471472L
serialVersionUID: 5698479920593359816L
serialVersionUID: -857968536935667808L
serialVersionUID: 6603384152749567654L
serialVersionUID: -7483676942812432108L
serialVersionUID: 947674216157062695L
serialVersionUID: -7565189502268009837L
serialVersionUID: -1119353179322377262L
serialVersionUID: -7443947487218346562L
serialVersionUID: 8488111756688534474L
serialVersionUID: -5636570222231596674L
serialVersionUID: -6727011328946861783L
boolean readOnly
Indicates whether or not this collection is read only.if the collection is read-only
serialVersionUID: 4858622370623524688L
PermissionCollection allPermission
Holds instances ofAllPermission
.the permission collection for AllPermission
serialVersionUID: 4724086851538908602L
serialVersionUID: -4298000515446427739L
serialVersionUID: 5256023526693665674L
serialVersionUID: 4940670005562187L
serialVersionUID: -2991854161009191830L
serialVersionUID: 5236109936224050470L
serialVersionUID: 7509989324975124438L
serialVersionUID: 720502720485447167L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Called to restore the state of the SignedObject from a stream.
serialVersionUID: -1763464102261361480L
serialVersionUID: 7275063078190151277L
serialVersionUID: -4821973115467008846L
String actions
The list of actions associated with this permission object.the permission actions
String type
The name of the class this object should be resolved to.the fully-qualified classname of the resolved type
serialVersionUID: 5684295034092681791L
serialVersionUID: -5141997548211140359L
serialVersionUID: -5555597911163362399L
serialVersionUID: -6751606818319535583L
serialVersionUID: -8563758940495660020L
protected Object readResolve() throws ObjectStreamException
Deserialize this certificate replacement into the appropriate certificate object. That is, this method attempts to create aCertificateFactory
for this certificate's type, then attempts to parse the encoded data with that factory, returning the resulting certificate.
- Returns:
- The deserialized certificate.
- Throws:
ObjectStreamException
- If there is no appropriate certificate factory for the given type, or if the encoded form cannot be parsed.
serialVersionUID: 6219492851589449162L
serialVersionUID: 3192535253797119798L
serialVersionUID: 9071001339691533771L
serialVersionUID: 4355919900041064702L
serialVersionUID: -7989222416793322029L
serialVersionUID: 6068470306649138683L
serialVersionUID: 3015633072427920915L
protected Object readResolve() throws ObjectStreamException
Decode the data into an actualCertPath
upon deserialization.
- Returns:
- the replacement object
- Throws:
ObjectStreamException
- if replacement fails
serialVersionUID: 5316471420178794402L
serialVersionUID: -3083180014971893139L
serialVersionUID: 2395296107471573245L
serialVersionUID: -6694728944094197147L
serialVersionUID: -2491127588187038216L
serialVersionUID: 3546139293998810778L
serialVersionUID: -970468769593399342L
serialVersionUID: 5977529877145521757L
int[] updateCounts
This is the array of update counts for the commands which completed successfully prior to the error.
serialVersionUID: 6464298989504059473L
serialVersionUID: 1511598038487230103L
serialVersionUID: 2135244094396331484L
serialVersionUID: 6279438298436773498L
serialVersionUID: 3917336774604784856L
serialVersionUID: 8397324403548013681L
serialVersionUID: 2745179027874758501L
serialVersionUID: -9142742483513960612L
protected Object readResolve() throws InvalidObjectException
This method resolves an instance ofAttributedCharacterIterator.Attribute
that is being deserialized to one of the three pre-defined attribute constants. It does this by comparing the names of the attributes. The constant that the deserialized object resolves to is returned.
- Returns:
- The resolved contant value
- Throws:
InvalidObjectException
- If the object being deserialized cannot be resolved.
serialVersionUID: 1795184449645032964L
String[] choiceFormats
This is the list of format strings. Note that this variable is specified by the serialization spec of this class.
double[] choiceLimits
This is the list of range terminator values. Note that this variable is specified by the serialization spec of this class.
serialVersionUID: -299282585814624189L
serialVersionUID: 7441350119349544720L
protected Object readResolve() throws InvalidObjectException
- Overrides:
- readResolve in interface AttributedCharacterIterator.Attribute
serialVersionUID: -5987973545549424702L
serialVersionUID: 864413376551465018L
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
serialVersionUID: 5772796243397350300L
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
char exponential
This is the
char
used to represent the exponent separator in exponential notation.
String intlCurrencySymbol
This string represents the local currency in an international context, eg, "C$" for Canadian dollars.
char monetarySeparator
This character is used to separate decimals when formatting currency values.
char patternSeparator
This is the character used to separate positive and negative subpatterns in a format pattern.
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
serialVersionUID: -299282585814624189L
serialVersionUID: 276966692217360283L
serialVersionUID: 6479157306784022952L
serialVersionUID: 7899943957617360810L
protected Object readResolve() throws InvalidObjectException
invoked to resolve the true static constant by comparing the deserialized object to know name.
- Overrides:
- readResolve in interface AttributedCharacterIterator.Attribute
- Returns:
- object constant
serialVersionUID: -2308460125733713944L
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
serialVersionUID: 7494728892700160890L
protected Object readResolve() throws InvalidObjectException
This function is used by the deserializer to know which object to use when it encounters an encoded NumberFormat.Field in a serialization stream. If the stream is valid it should return one of the above field. In the other case we throw an exception.
- Overrides:
- readResolve in interface AttributedCharacterIterator.Attribute
- Returns:
- a valid official NumberFormat.Field instance.
- Throws:
InvalidObjectException
- if the field name is invalid.
serialVersionUID: 2703218443322787634L
int errorOffset
This is the position where the error was encountered.the zero-based offset in the string where the error occurred
serialVersionUID: 4774881970558875024L
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
Reads the serialized version of this object. If the serialized data is only version 0, then the date for the start of the century for interpreting two digit years is computed. The pattern is parsed and compiled following the process of reading in the serialized data.
- Parameters:
stream
- the object stream to read the data from.
- Throws:
IOException
- if an I/O error occurs.ClassNotFoundException
- if the class of the serialized data could not be found.
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
Date defaultCenturyStart
The date representing the start of the century used for interpreting two digit years. For example, 24/10/2004 would cause two digit years to be interpreted as representing the years between 2004 and 2104.The start date of the century for parsing two digit years. May not be null.
- See Also:
get2DigitYearStart()
,set2DigitYearStart(java.util.Date)
,Date
String pattern
The non-localized pattern string. This only ever contains the pattern characters stored in standardChars. Localized patterns are translated to this form.The non-localized pattern string. May not be null.
- See Also:
applyPattern(String)
,applyLocalizedPattern(String)
,toPattern()
,toLocalizedPattern()
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
andformatData
. Version 1 adds thedefaultCenturyStart
. This implementation always writes out version 1 data.
serialVersionUID: 8683452581122892189L
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
- Throws:
IOException
- if the underlying stream fails
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes this object from the given stream.
- Parameters:
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
serialVersionUID: 7997698588986878753L
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).
serialVersionUID: -1807547505821590642L
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.
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
Reads the object back from stream (deserialization).
boolean areFieldsSet
Tells if the fields have a valid value. This superseeds the isSet array.
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().
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.
int firstDayOfWeek
Sets what the first day of week is. This is used for WEEK_OF_MONTH and WEEK_OF_YEAR fields.
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.
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.
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
serialVersionUID: -3666751008965953603L
serialVersionUID: -158308464356906721L
private Object readResolve() throws ObjectStreamException
Resolves the deserialized object to the singleton instance for its particular currency. The currency code of the deserialized instance is used to return the correct instance.
- Returns:
- the singleton instance for the currency specified by the currency code of the deserialized object. This replaces the deserialized object as the returned object from deserialization.
- Throws:
ObjectStreamException
- if a problem occurs with deserializing the object.
String currencyCode
The ISO 4217 currency code associated with this particular instance.the ISO 4217 currency code
- See Also:
Currency.getCurrencyCode()
serialVersionUID: 7523967970034938905L
private void readObject(ObjectInputStream input) throws IOException, ClassNotFoundException
Deserializes aDate
object from an input stream, setting the time (in milliseconds since the epoch) to the long value read from the stream.
- Parameters:
input
- the input stream.
- Throws:
IOException
- if an I/O error occurs in the stream.ClassNotFoundException
- if the class of the serialized object could not be found.
private void writeObject(ObjectOutputStream output) throws IOException
Serializes aDate
object to an output stream, storing the time (in milliseconds since the epoch) as a long value in the stream.
- Parameters:
output
- the output stream.
- Throws:
IOException
- if an I/O error occurs in the stream.
serialVersionUID: 5084686378493302095L
serialVersionUID: 5516075349620653480L
serialVersionUID: -8125100834729963327L
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.
serialVersionUID: 362498820763181265L
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes this object from the given stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
int threshold
The rounded product of the capacity and the load factor; when the number of elements exceeds the threshold, the HashMap callsrehash()
.the threshold for rehashing
float loadFactor
Load factor of this HashMap: used in computing the threshold. Package visible for use by HashSet.the load factor
serialVersionUID: -5024744406713321676L
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes this object from the given stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
serialVersionUID: 1421746759512286392L
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes this object from the given stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
int threshold
The rounded product of the capacity and the load factor; when the number of elements exceeds the threshold, the Hashtable callsrehash()
.
serialVersionUID: 8188218128353913216L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads the object from a serial stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
private void writeObject(ObjectOutputStream s) throws IOException
Writes the object to a serial stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
serialVersionUID: 3801124242820219131L
boolean accessOrder
The iteration order of this linked hash map:true
for access-order,false
for insertion-order.true for access order traversal
serialVersionUID: -2851667679971038690L
serialVersionUID: 876323262645176354L
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes this object from the given stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
serialVersionUID: 9149081749638150636L
private void writeObject(ObjectOutputStream s) throws IOException
Write the locale to an object stream.
- Parameters:
- Throws:
IOException
- if the write fails
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads a locale from the input stream.
- Parameters:
- Throws:
IOException
- if reading failsClassNotFoundException
- if reading fails
String language
The language code, as returned by getLanguage().the languange, possibly ""
serialVersionUID: -4876345176062000401L
String className
The name of the resource bundle requested by user.the class name of the resource bundle
serialVersionUID: 6769829250639411880L
serialVersionUID: 4112578634029874840L
Properties defaults
The property list that contains default values for any keys not in this property list.the default properties
serialVersionUID: 885438825399942851L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reads an object from the stream. This converts the external to the internal representation.
- Parameters:
s
- the stream to read from
- Throws:
IOException
- if the stream failsClassNotFoundException
- if reserialization fails
private void writeObject(ObjectOutputStream s) throws IOException
Writes an object to the stream. This converts the internal to the external representation.
- Parameters:
s
- the stram to write to
- Throws:
IOException
- if the stream fails
serialVersionUID: 3905348978240129619L
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
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
long seed
The seed. This is the number set by setSeed and which is used in next.the internal state of this generator
- See Also:
next()
serialVersionUID: -403250971215465050L
private void readObject(ObjectInputStream input) throws IOException, ClassNotFoundException
Reads a serialized simple time zone from stream.
- See Also:
SimpleTimeZone
private void writeObject(ObjectOutputStream output) throws IOException
Serializes this object to a stream. @serialdata The object is first written in the old JDK 1.1 format, so that it can be read by by the old classes. This means, that thestart/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.
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
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.
int startMonth
The month in which daylight savings start. This is one of the constants Calendar.JANUARY, ..., Calendar.DECEMBER.
int startDay
This variable can have different meanings. See startMode for details
- See Also:
SimpleTimeZone
int startDayOfWeek
This variable specifies the day of week the change takes place. If startMode == DOM_MODE, this is undefined.
- See Also:
SimpleTimeZone
int startTime
This variable specifies the time of change to daylight savings. This time is given in milliseconds after midnight local standard time.
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.
int endMonth
The month in which daylight savings ends. This is one of the constants Calendar.JANUARY, ..., Calendar.DECEMBER.
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
int endDay
This variable can have different meanings. See startMode for details
- See Also:
SimpleTimeZone
int endDayOfWeek
This variable specifies the day of week the change takes place. If endMode == DOM_MODE, this is undefined.
- See Also:
SimpleTimeZone
int endTime
This variable specifies the time of change back to standard time. This time is given in milliseconds after midnight local standard time.
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.
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.
int serialVersionOnStream
The version of the serialized data on the stream.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.
- 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.
- Since:
- JDK1.1.4
serialVersionUID: 1224463164541339165L
serialVersionUID: 3581463369166924961L
serialVersionUID: 5074640544770687831L
serialVersionUID: 919286545866124006L
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes this object from the given stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
Comparator comparator
This TreeMap's comparator, or null for natural ordering. Package visible for use by nested classes.the comparator ordering this tree, or null
serialVersionUID: -2479143000061671589L
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Deserializes this object from the given stream.
- Parameters:
s
- the stream to read from
- Throws:
ClassNotFoundException
- if the underlying stream failsIOException
- if the underlying stream fails
serialVersionUID: -2767605614048989439L
private void writeObject(ObjectOutputStream s) throws IOException
Serializes this object to the given stream.
- Parameters:
s
- the stream to write to
- Throws:
IOException
- if the underlying stream fails
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
int elementCount
The number of elements currently in the vector, also returned bysize()
.the size
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 whenensureCapacity(int)
is called. If <= 0, the vector just doubles in size.the amount to grow the vector by
serialVersionUID: 7159778400963954473L
serialVersionUID: -8176160795706313070L
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.
String resourceBundleName
The name of the resource bundle used for localizing the level name, ornull
if the name does not undergo localization.
serialVersionUID: 6279438298436773498L
serialVersionUID: 5372048053134512534L
private void writeObject(ObjectOutputStream out) throws IOException
toString()
on the parameter (ornull
if the parameter isnull
). 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.
String sourceClassName
The name of the class that issued the logging request, ornull
if this information could not be obtained.
String sourceMethodName
The name of the method that issued the logging request, ornull
if this information could not be obtained.
int threadID
An identifier for the thread in which thisLogRecord
was created. The identifier is not necessarily related to any thread identifiers used by the operating system.
long millis
The time when thisLogRecord
was created, in milliseconds since the beginning of January 1, 1970.
Throwable thrown
The Throwable associated with thisLogRecord
, ornull
if the logged event is not related to an exception or error.
String loggerName
The name of the logger where thisLogRecord
has originated, ornull
if thisLogRecord
does not originate from aLogger
.
String resourceBundleName
The name of the resource bundle used for localizing log messages, ornull
if no bundle has been specified.
serialVersionUID: 859796500401108469L
private void writeObject(ObjectOutputStream o) throws NotSerializableException
This class should not be serialized.
- Parameters:
o
- the output stream
private void readObject(ObjectInputStream i) throws NotSerializableException
This class should not be serialized.
- Parameters:
i
- the input stream
serialVersionUID: -791715184232119669L
private void writeObject(ObjectOutputStream o) throws NotSerializableException
This class should not be serialized.
- Parameters:
o
- the output stream
private void readObject(ObjectInputStream i) throws NotSerializableException
This class should not be serialized.
- Parameters:
i
- the input stream
serialVersionUID: 8068949086596572957L
serialVersionUID: 793724513368024975L
serialVersionUID: 5073258162644648461L
serialVersionUID: -3864639126226059218L
int index
Index of the first character in the String that was probably invalid, or -1 when unknown.
serialVersionUID: 2219632870893641452L
serialVersionUID: 8000196834066748623L
serialVersionUID: -5315033893984728443L
serialVersionUID: 1572699429277957109L
serialVersionUID: -1965144811953540392L
serialVersionUID: -4572885201200175466L
serialVersionUID: 4482838265551344752L
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException
Deserialize this object.
- Parameters:
ois
- The input stream.
- Throws:
IOException
- If reading fails.ClassNotFoundException
- If reading fails.
private void writeObject(ObjectOutputStream oos) throws IOException
Serialize this object.
- Parameters:
oos
- The output stream.
- Throws:
IOException
- If writing fails.
serialVersionUID: 8427718640832943747L
serialVersionUID: 7818375828146090155L
serialVersionUID: -1314083172544132777L
serialVersionUID: 5855287647294685775L
serialVersionUID: 5855287647294685775L
serialVersionUID: -3415254970957330361L
byte[] buf
The possibly null content of this RefAddr. Set by the constructor and returned by getContent.
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: 1667768148915813118L
serialVersionUID: 3513100557083972036L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -5386290613498931298L
serialVersionUID: -1299181962103167177L
serialVersionUID: -3617482732056931635L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
Throwable rootException
The root cause of this exception. Might be null. Set by callingsetRootCause()
, can be accessed by callinggetRootCause()
.
Name resolvedName
If the exception was caused while resolving aName
then this field contains that part of the name that could be resolved. Field might be null. Set by callingsetResolvedName()
. Can be accessed by callinggetResolvedName
.
Object resolvedObj
If the exception was caused while resolving aName
then this field contains the object that part of the name could be resolved to. Field might be null. Set by callingsetResolvedObj()
. Can be accessed by callinggetResolvedObj
.
Name remainingName
If the exception was caused while resolving aName
then this field contains that part of the name that could not be resolved. Field might be null. Set by callingsetRemainingName()
. The field can be extended by callingappendRemainingName()
orappendRemainingComponent()
. Can be accessed by callinggetRemainingName
.
serialVersionUID: 5855287647294685775L
serialVersionUID: -1299181962103167177L
serialVersionUID: 5855287647294685775L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -2881363844695698876L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -8913762495138505527L
serialVersionUID: -1299181962103167177L
serialVersionUID: 8707690322213556804L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: -1299181962103167177L
serialVersionUID: 5516075349620653480L
serialVersionUID: 5516075349620653480L
serialVersionUID: -2881363844695698876L
serialVersionUID: -2382603380799883705L
serialVersionUID: 7914963744257769778L
serialVersionUID: 7818375828146090155L
serialVersionUID: 7818375828146090155L
serialVersionUID: 7818375828146090155L
serialVersionUID: 7818375828146090155L
serialVersionUID: -3456898025505876775L
serialVersionUID: 7818375828146090155L
serialVersionUID: 3989172637106345L
serialVersionUID: -4512080796965449721L
serialVersionUID: -4512080796965449721L
serialVersionUID: -8720590903724405128L
serialVersionUID: -4512080796965449721L
serialVersionUID: 7100295812579351567L
serialVersionUID: 6181337766266637256L
serialVersionUID: 4414407504887034035L
serialVersionUID: 2936725788144902062L
serialVersionUID: -3387516993124229948L
serialVersionUID: -1400819079791208582L
serialVersionUID: -2739521845085831642L
serialVersionUID: 5311560590283707917L
serialVersionUID: -1128534486061432528L
serialVersionUID: -4204473656070350348L
serialVersionUID: 2364756266107751933L
serialVersionUID: 6642904616179203070L
serialVersionUID: 2706743076526672017L
serialVersionUID: 3666874174847632203L
serialVersionUID: -8130648736378144102L
serialVersionUID: -7034897190745766939L
serialVersionUID: -7842661210486401678L
serialVersionUID: 4660543931355214012L
serialVersionUID: -2700555589688535545L
serialVersionUID: -5716748913324997674L
serialVersionUID: -6426631521680023833L
serialVersionUID: 6927711687034846001L
serialVersionUID: 6497399708058490000L
serialVersionUID: -2923732231056647903L
serialVersionUID: -3710068197278263244L
serialVersionUID: 6776739171700415321L
serialVersionUID: 7883105848533280430L
serialVersionUID: 6320827847329172308L
serialVersionUID: -627840419548391754L
serialVersionUID: -1664471048860415024L
serialVersionUID: 8225537206784322464L
serialVersionUID: 6722648442432393294L
serialVersionUID: -4887354803843173692L
serialVersionUID: -8959710146498202869L
serialVersionUID: -6265238509657881806L
serialVersionUID: -2867871140549897443L
serialVersionUID: 408871131531979741L
serialVersionUID: 1739595973810840475L
serialVersionUID: 2953685470388672940L
serialVersionUID: -4620751846003142047L
serialVersionUID: 4660359192078689545L
serialVersionUID: -8052537926362933477L
serialVersionUID: -4599900369040602769L
serialVersionUID: 2564840378013555894L
serialVersionUID: -4735258056132519759L
serialVersionUID: 400465010094018920L
serialVersionUID: -8765894420449009168L
serialVersionUID: 8849088261264331812L
serialVersionUID: -2823970704630722439L
serialVersionUID: -1967958664615414771L
serialVersionUID: 2778798329756942747L
serialVersionUID: 8098326460746413466L
serialVersionUID: 7891881310684461097L
serialVersionUID: 2568141124844982746L
serialVersionUID: -3040436486786527811L
serialVersionUID: -1041573395759141805L
serialVersionUID: -4447437289862822276L
serialVersionUID: 5486733778854271081L
serialVersionUID: 8639895197656148392L
serialVersionUID: -6366403993072862015L
serialVersionUID: 1684993151687470944L
serialVersionUID: -4393264467928463934L
serialVersionUID: 8294728067230931780L
serialVersionUID: 7765280618777599727L
serialVersionUID: -5052010680537678061L
serialVersionUID: -1598610039865566337L
serialVersionUID: 4580461489499351411L
serialVersionUID: -4486871203218629318L
serialVersionUID: 4555850007675338574L
serialVersionUID: 3323271346485076608L
serialVersionUID: 299740639137803127L
serialVersionUID: 13090306561090558L
serialVersionUID: -649578618346507718L
serialVersionUID: -1623720656201472593L
serialVersionUID: -3731791085163619457L
serialVersionUID: 7923912792485606497L
serialVersionUID: -3072341285225858365L
serialVersionUID: 7499723077864047742L
serialVersionUID: -8989076942813442805L
serialVersionUID: -2683049894310331454L
serialVersionUID: 8781881462717925380L
serialVersionUID: 7080587914259873003L
serialVersionUID: -6890309414893262822L
serialVersionUID: 5516075349620653480L
serialVersionUID: -6534469883874742101L
serialVersionUID: -1711656903622072997L
serialVersionUID: 5516075349620653480L
serialVersionUID: -3387516993124229948L
serialVersionUID: 1087775603798577179L
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
The following two routines are required by serialized form of Java API doc.
serialVersionUID: -3387516993124229948L
serialVersionUID: 6279438298436773498L
serialVersionUID: -3387516993124229948L
serialVersionUID: 5284372143517237068L
Set principals
The principals, a set of CredOwner objects (an undocumented inner class of this class).
serialVersionUID: -3387516993124229948L
serialVersionUID: -8308522755600156056L
Set principals
The set of principals. The type of this field is SecureSet, a private inner class.
boolean multipleSelectionsAllowed
- Since:
- 1.4
whether multiple selections are allowed from the list of choices.
int[] selections
- Since:
- 1.4
the selected choices, represented as indexes into the choices list.
serialVersionUID: -3387516993124229948L
serialVersionUID: -6064064890162661560L
serialVersionUID: -5344739593859737937L
serialVersionUID: 802556922354616286L
serialVersionUID: -4679091624035232488L
serialVersionUID: -500463348111345721L
private void readObject(ObjectInputStream in) throws IOException, NotActiveException, ClassNotFoundException
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: 7818375828146090155L
serialVersionUID: 7818375828146090155L
serialVersionUID: -4843217645290030002L
serialVersionUID: 5516075349620653480L
serialVersionUID: -6803159439231523484L
private void readObject(ObjectInputStream stream) throws ClassNotFoundException, IOException
readObject
- Parameters:
stream
- the stream to read from
- Throws:
ClassNotFoundException
- TODOIOException
- if an error occurs
private void writeObject(ObjectOutputStream stream) throws IOException
writeObject
- Parameters:
stream
- the stream to write to
- Throws:
IOException
- if an error occurs
SwingPropertyChangeSupport changeSupport
Provides support for property change event notification.
serialVersionUID: -937921345538462020L
Icon disabledSelectedIcon
The icon displayed when the button is selected but disabled.
Icon rolloverSelectedIcon
The icon displayed when the button is selected and rolled over.
int horizontalTextPosition
The horizontal position of the button's text relative to its icon.
int verticalTextPosition
The vertical position of the button's text relative to its icon.
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
Listener the button uses to receive ActionEvents from its model.
ItemListener itemListener
Listener the button uses to receive ItemEvents from its model.
ChangeListener changeListener
Listener the button uses to receive ChangeEvents from its model.
long multiClickThreshhold
The time in miliseconds in which clicks get coalesced into a singleActionEvent
.
PropertyChangeListener actionPropertyChangeListener
Listener the button uses to receive PropertyChangeEvents from its Action.
serialVersionUID: -5673062525319836790L
serialVersionUID: 1471056094226600578L
serialVersionUID: -1048006551406220959L
serialVersionUID: -3285184064379168730L
EventListenerList listenerList
List of ListDataListeners called for each change to the list.
serialVersionUID: -6277518704513986346L
private void writeObject(ObjectOutputStream stream) throws IOException
writeObject
- Parameters:
stream
- the stream to write to
- Throws:
IOException
- If an error occurs
private void readObject(ObjectInputStream stream) throws ClassNotFoundException, IOException
readObject
- Parameters:
stream
- the stream to read from
- Throws:
ClassNotFoundException
- If the serialized class cannot be foundIOException
- If an error occurs
serialVersionUID: 1525417495883046342L
serialVersionUID: -1204263191910183998L
serialVersionUID: -2474455742719112368L
serialVersionUID: 4259076101881721375L
serialVersionUID: -7642183829532984273L
serialVersionUID: -8981090083147391074L
serialVersionUID: -5429059542008604257L
serialVersionUID: 5034068491295259790L
int value
The current value of the range model, which is always betweenDefaultBoundedRangeModel
and (DefaultBoundedRangeModel
-DefaultBoundedRangeModel
). In a scroll bar visualization of aBoundedRangeModel
, thevalue
is displayed as the position of the thumb.
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 aBoundedRangeModel
, theextent
is displayed as the size of the thumb.
int minimum
The current minimum value of the range model, which is always less than or equal toDefaultBoundedRangeModel
.
int maximum
The current maximum value of the range model, which is always greater than or equal toDefaultBoundedRangeModel
.
boolean isAdjusting
A property that indicates whether the value of thisBoundedRangeModel
is going to change in the immediate future.
serialVersionUID: -5342609566534980231L
int stateMask
Represents the "state properties" (armed, enabled, pressed, rollover and selected) by a bitwise combination of integer constants.
EventListenerList listenerList
List of ItemListeners, ChangeListeners, and ActionListeners registered on this model.
ChangeEvent changeEvent
The single ChangeEvent this model (re)uses to call its ChangeListeners.
ButtonGroup group
The group this model belongs to. Only one button in a group may be selected at any given time.
int mnemonic
The key code (one ofKeyEvent
VK_) used to press this button via a keyboard interface.
String actionCommand
The string used as the "command" property of any ActionEvent this model sends.
serialVersionUID: 3564035141373880027L
serialVersionUID: -1420007406015481933L
serialVersionUID: 6698657703676921904L
serialVersionUID: 4657624909838017887L
int currentDragMode
The method of dragging used by the JDesktopPane that parents the JInternalFrame that is being dragged.
serialVersionUID: 7708947179685189462L
serialVersionUID: 7708947179685189462L
serialVersionUID: 2315945659722172272L
serialVersionUID: -5718799865110415860L
EventListenerList listenerList
The list of ListSelectionListeners subscribed to this selection model.
int selectionMode
The current list selection mode. Must be one of the numeric constantsSINGLE_SELECTION
,SINGLE_INTERVAL_SELECTION
orMULTIPLE_INTERVAL_SELECTION
fromListSelectionModel
. The default value isMULTIPLE_INTERVAL_SELECTION
.
int leadSelectionIndex
The index of the "lead" of the most recent selection. The lead is the second argument in any call tosetSelectionInterval(int,int)
,addSelectionInterval(int,int)
orremoveSelectionInterval(int,int)
. Generally the lead refers to the most recent position a user dragged their mouse over.
int anchorSelectionIndex
The index of the "anchor" of the most recent selection. The anchor is the first argument in any call tosetSelectionInterval(int,int)
,addSelectionInterval(int,int)
orremoveSelectionInterval(int,int)
. Generally the anchor refers to the first recent position a user clicks when they begin to drag their mouse over a list.
boolean leadAnchorNotificationEnabled
controls the range of indices provided in anyListSelectionEvent
fired by the selectionModel. Let[A,L]
be the range of indices betweenanchorSelectionIndex
andleadSelectionIndex
inclusive, and let[i0,i1]
be the range of indices changed in a given call which generates aListSelectionEvent
. Then when this property istrue
, theListSelectionEvent
contains the range[A,L] union [i0,i1]
; whenfalse
it will contain only[i0,i1]
. The default istrue
.
boolean valueIsAdjusting
Whether the selection is currently "adjusting". AnyListSelectionEvent
events constructed in response to changes in this list selection model will have theirListSelectionEvent
field set to this value.
BitSet sel
The current set of "intervals", represented simply by aBitSet
. A set bit indicates a selected index, whereas a cleared bit indicates a non-selected index.
Object oldSel
A variable to store the previous value of sel. Used to make sure we only fireValueChanged when the BitSet actually does change.
boolean setLeadCalledFromAdd
Whether this call of setLeadSelectionInterval was called locally from addSelectionInterval
serialVersionUID: 3676229404753786004L
serialVersionUID: 532615968316031794L
serialVersionUID: 2113430526551336564L
serialVersionUID: -5429059542008604257L
private void writeObject(ObjectOutputStream stream) throws IOException
writeObject
- Parameters:
stream
- the stream to write to
- Throws:
IOException
- If an error occurs
private void readObject(ObjectInputStream stream) throws ClassNotFoundException, IOException
readObject
- Parameters:
stream
- the stream to read from
- Throws:
ClassNotFoundException
- If the serialized class cannot be foundIOException
- If an error occurs
serialVersionUID: 7269359214497372587L
boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container
serialVersionUID: -1907255238954382202L
serialVersionUID: -5246739313864538930L
serialVersionUID: -6676402307973384715L
private void writeObject(ObjectOutputStream stream) throws IOException
Serialize this Container:
- Write to the stream the default serializable fields.
- Write the list of serializable ContainerListeners as optional data.
- Write this Container's FocusTraversalPolicy as optional data.
- Parameters:
- Throws:
IOException
- if the stream fails
Object[] selectedObjects
This array contains text of this menu item if this menu item is in checked state and null it is not.
serialVersionUID: 1079958073579370777L
serialVersionUID: 9168066781620640889L
AbstractColorChooserPanel[] chooserPanels
The set of AbstractColorChooserPanels associated with the JColorChooser.
serialVersionUID: -2038297864782299082L
serialVersionUID: 5654585963292734470L
private void writeObject(ObjectOutputStream stream) throws IOException
Serialize this Container:
- Write to the stream the default serializable fields.
- Write the list of serializable ContainerListeners as optional data.
- Write this Container's FocusTraversalPolicy as optional data.
- Parameters:
- Throws:
IOException
- if the stream fails
ComboBoxModel dataModel
Data model used by JComboBox to keep track of its list data and currently selected element in the list.
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.
boolean isEditable
This field indicates if textfield of this JComboBox is editable or not.
Object selectedItemReminder
This field is reference to the current selection of the combo box.
String actionCommand
This actionCommand is used in ActionEvent that is fired to JComboBox's ActionListeneres.
boolean lightWeightPopupEnabled
This property indicates if heavyweight popup or lightweight popup will be used to diplay JComboBox's elements.
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.
serialVersionUID: 8217828307256675666L
serialVersionUID: -7908749299918704233L
Dimension preferredSize
An explicit value for the component's preferred size; if not set by a user, this is calculated on the fly by delegating to theComponentUI.getPreferredSize
method on theui
property.
Dimension minimumSize
An explicit value for the component's minimum size; if not set by a user, this is calculated on the fly by delegating to theComponentUI.getMinimumSize
method on theui
property.
Dimension maximumSize
An explicit value for the component's maximum size; if not set by a user, this is calculated on the fly by delegating to theComponentUI.getMaximumSize
method on theui
property.
float alignmentX
A value between 0.0 and 1.0 indicating the preferred horizontal alignment of the component, relative to its siblings. The valuesJComponent
,JComponent
, andJComponent
can also be used, as synonyms for0.0
,0.5
, and1.0
, respectively. Not all layout managers use this property.
float alignmentY
A value between 0.0 and 1.0 indicating the preferred vertical alignment of the component, relative to its siblings. The valuesJComponent
,JComponent
, andJComponent
can also be used, as synonyms for0.0
,0.5
, and1.0
, respectively. Not all layout managers use this property.
Border border
The border painted around this component.
- See Also:
JComponent.paintBorder(Graphics)
String toolTipText
The text to show in the tooltip associated with this component.
- See Also:
JComponent.setToolTipText(String)
,getToolTipText
boolean doubleBuffered
Whether to double buffer this component when painting. This flag should generally befalse
, except for top level components such asJFrame
orJApplet
. All children of a double buffered component are painted into the double buffer automatically, so only the top widget in a window needs to be double buffered.
- See Also:
JComponent.setDoubleBuffered(boolean)
,JComponent.isDoubleBuffered()
,JComponent
,JComponent.paint(Graphics)
int debugGraphicsOptions
A set of flags indicating which debugging graphics facilities should be enabled on this component. The values should be a combination ofDebugGraphics.NONE_OPTION
,DebugGraphics.LOG_OPTION
,DebugGraphics.FLASH_OPTION
, orDebugGraphics.BUFFERED_OPTION
.
- See Also:
setDebugGraphicsOptions
,getDebugGraphicsOptions
,DebugGraphics
,getComponentGraphics
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 topaintComponent(Graphics)
, which in turn callsComponentUI.update(Graphics,JComponent)
on the component'sui
property. If the component is opaque during this call, the background will be filled before callingComponentUI.paint(Graphics,JComponent)
. This happens merely as a convenience; you may fill the component's background yourself too, but there is no need to do so if you will be filling with the same color. Second, it the opaque property informs swing's repaint system whether it will be necessary to paint the components "underneath" this component, in Z-order. If the component is opaque, it is considered to completely occlude components "underneath" it, so they will not be repainted along with the opaque component. The default value for this property isfalse
, but most components will want to set it totrue
when installing UI defaults inComponentUI.installUI(JComponent)
.
ComponentUI ui
The user interface delegate for this component. Event delivery and repainting of the component are usually delegated to this object.
- See Also:
JComponent.setUI(ComponentUI)
,JComponent
,JComponent.updateUI()
boolean requestFocusEnabled
A hint to the focus system that this component should or should not get focus. If this isfalse
, swing will not try to request focus on this component; iftrue
, swing might try to request focus, but the request might fail. Thus it is only a hint guiding swing's behavior.
- See Also:
requestFocus
,JComponent.isRequestFocusEnabled()
,JComponent.setRequestFocusEnabled(boolean)
boolean autoscrolls
Flag indicating behavior of this component when the mouse is dragged outside the component and the mouse stops moving. Iftrue
, synthetic mouse events will be delivered on regular timed intervals, continuing off in the direction the mouse exited the component, until the mouse is released or re-enters the component.
- See Also:
setAutoscrolls
,getAutoscrolls
EventListenerList listenerList
Listeners for events other thanPropertyChangeEvent
are handled by this listener list. PropertyChangeEvents are handled inJComponent
.
SwingPropertyChangeSupport changeSupport
Support forPropertyChangeEvent
events. This is constructed lazily when the component gets its firstPropertyChangeListener
subscription; until then it's an empty slot.
Hashtable clientProperties
Storage for "client properties", which are key/value pairs associated with this component by a "client", such as a user application or a layout manager. This is lazily constructed when the component gets its first client property.
serialVersionUID: -7047089700479897799L
serialVersionUID: 766333777224038726L
serialVersionUID: 6079388927946077570L
serialVersionUID: -864070866424508218L
boolean rootPaneCheckingEnabled
Whether checking is enabled on the RootPane.
boolean initStageDone
Whether we're in the init stage or not. If so, adds and layouts are for top-level, otherwise they're for the content pane
serialVersionUID: 3140472492599046285L
serialVersionUID: 3162921138695327837L
serialVersionUID: 5464657870110180632L
serialVersionUID: -5193212041738979680L
serialVersionUID: -3362141868504252139L
AccessibleContext accessibleContext
The accessible context associated with this component. This is only set by subclasses.
- Since:
- 1.2
the accessibility context
- See Also:
Component.getAccessibleContext()
boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container.
serialVersionUID: -5425177187760785402L
boolean rootPaneCheckingEnabled
Whether the JInternalFrame has rootPaneChecking enabled.
boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container.
JInternalFrame.JDesktopIcon desktopIcon
The JDesktopIcon that represents the JInternalFrame while it is iconified.
serialVersionUID: 5931936924175476797L
serialVersionUID: 4672973344731387687L
serialVersionUID: 5035560458941637802L
serialVersionUID: 5496508283662221534L
serialVersionUID: 5534920399324590459L
serialVersionUID: 4406629526391098046L
boolean dragEnabled
This property indicates whether "drag and drop" functions are enabled on the list.
ListCellRenderer cellRenderer
This property provides a strategy for rendering cells in the list.
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 theJList
property.
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 theJList
property.
int layoutOrientation
This property holds the current layout orientation of the list, which is one of the integer constantsVERTICAL
,VERTICAL_WRAP
, orHORIZONTAL_WRAP
.
Object prototypeCellValue
This property holds a reference to a "prototype" data value -- typically a String -- which is used to calculate theJList
andJList
properties, using theJList
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.
Color selectionBackground
This property specifies a foreground color for the selected cells in the list. WhenListCellRenderer.getListCellRendererComponent
is called with a selected cell object, the component returned will have its "foreground" set to this color.
Color selectionForeground
This property specifies a background color for the selected cells in the list. WhenListCellRenderer.getListCellRendererComponent
is called with a selected cell object, the component returned will have its "background" property set to this color.
ListSelectionModel selectionModel
This property holds a description of which data elements in theJList
property should be considered "selected", when displaying and interacting with the list.
boolean valueIsAdjusting
This property indicates that the list's selection is currently "adjusting" -- perhaps due to a user actively dragging the mouse over multiple list elements -- and is therefore likely to change again in the near future. AListSelectionListener
might choose to delay updating its view of the list's selection until this property is false, meaning that the adjustment has completed.
int visibleRowCount
This property indicates a preference for the number of rows displayed in the list, and will scale theJList
property accordingly. The actual number of displayed rows, when the list is placed in a realViewport
or other component, may be greater or less than this number.
javax.swing.JList.ListListener listListener
Shared ListListener instance, subscribed to both the currentJList
andJList
properties of the list.
serialVersionUID: 4227225638931828014L
private void writeObject(ObjectOutputStream stream) throws IOException
Serialize this Container:
- Write to the stream the default serializable fields.
- Write the list of serializable ContainerListeners as optional data.
- Write this Container's FocusTraversalPolicy as optional data.
- Parameters:
- Throws:
IOException
- if the stream fails
JPopupMenu popupMenu
A Popup menu associated with this menu, which pops up when menu is selected
MenuEvent menuEvent
Whenever menu is selected or deselected the MenuEvent is fired to menu's registered listeners.
Point menuLocation
Location at which popup menu associated with this menu will be displayed
serialVersionUID: -8131864021059524309L
serialVersionUID: -6415815570638474823L
serialVersionUID: -8191026883931977036L
serialVersionUID: -1681004643499461044L
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
Deserialize this Container:
- Read from the stream the default serializable fields.
- Read a list of serializable ContainerListeners as optional data. If the list is null, no listeners will be registered.
- Read this Container's FocusTraversalPolicy as optional data. If this is null, then this Container will use a DefaultFocusTraversalPolicy.
- Parameters:
- Throws:
ClassNotFoundException
- if deserialization failsIOException
- if the stream fails
private void writeObject(ObjectOutputStream stream) throws IOException
Serialize this Container:
- Write to the stream the default serializable fields.
- Write the list of serializable ContainerListeners as optional data.
- Write this Container's FocusTraversalPolicy as optional data.
- Parameters:
- Throws:
IOException
- if the stream fails
KeyStroke accelerator
Combination of keyboard keys that can be used to activate this menu item
serialVersionUID: 6748924232082076534L
serialVersionUID: 5231143276678566796L
Object initialSelectionValue
The initial selected value in the input component.
Object[] options
The options (usually buttons) aligned at the bottom for the user to select.
serialVersionUID: 686071432213084821L
serialVersionUID: -7908749299918704233L
serialVersionUID: 353853209832607592L
private void writeObject(ObjectOutputStream stream) throws IOException
writeObject
- Parameters:
stream
- the stream to write to
- Throws:
IOException
- if an error occurs
serialVersionUID: -8477039424200681086L
serialVersionUID: -8336996630009646009L
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
Deserialize this Container:
- Read from the stream the default serializable fields.
- Read a list of serializable ContainerListeners as optional data. If the list is null, no listeners will be registered.
- Read this Container's FocusTraversalPolicy as optional data. If this is null, then this Container will use a DefaultFocusTraversalPolicy.
- Parameters:
- Throws:
ClassNotFoundException
- if deserialization failsIOException
- if the stream fails
private void writeObject(ObjectOutputStream stream) throws IOException
Serialize this Container:
- Write to the stream the default serializable fields.
- Write the list of serializable ContainerListeners as optional data.
- Write this Container's FocusTraversalPolicy as optional data.
- Parameters:
- Throws:
IOException
- if the stream fails
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
SingleSelectionModel selectionModel
SelectionModel that keeps track of menu selection.
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
serialVersionUID: 7423261328879849768L
serialVersionUID: 125301223445282357L
serialVersionUID: 1980046021813598781L
serialVersionUID: -2938130009392721813L
serialVersionUID: 7751949583255506856L
serialVersionUID: 4850967637026120674L
serialVersionUID: 8482658191548521743L
private void writeObject(ObjectOutputStream stream) throws IOException
Serialize this Container:
- Write to the stream the default serializable fields.
- Write the list of serializable ContainerListeners as optional data.
- Write this Container's FocusTraversalPolicy as optional data.
- Parameters:
- Throws:
IOException
- if the stream fails
serialVersionUID: 4381471510145292179L
serialVersionUID: 8690748000348575668L
serialVersionUID: -4100116998559815027L
serialVersionUID: -8195169869225066566L
serialVersionUID: -7758162392045586663L
serialVersionUID: 5203525440012340014L
serialVersionUID: -42032395320987283L
serialVersionUID: 125301223445282357L
serialVersionUID: 916332890553201095L
serialVersionUID: -1441275936141218479L
serialVersionUID: -6301740148041106789L
serialVersionUID: 3412663575706551720L
serialVersionUID: -4279356973770397815L
serialVersionUID: -5317788736173368172L
serialVersionUID: 3791956183098282942L
serialVersionUID: -5634142046175988380L
boolean oneTouchExpandable
Whether the JSplitPane uses one touch expandable buttons.
serialVersionUID: -1788116871416305366L
serialVersionUID: 1614381073220130939L
serialVersionUID: 7610530885966830483L
serialVersionUID: 497359819958114132L
serialVersionUID: 3876025080382781659L
Hashtable defaultEditorsByColumnClass
A table mappingClass
objects toTableCellEditor
objects. This table is consulted by the FIXME
Hashtable defaultRenderersByColumnClass
A table mappingClass
objects toTableCellEditor
objects. This table is consulted by the FIXME
boolean autoCreateColumnsFromModel
Whether or not the table should automatically compute a matchingTableColumnModel
and assign it to thecolumnModel
property when thedataModel
property is changed.
- See Also:
JTable.setModel(TableModel)
,createColumnsFromModel()
,JTable.setColumnModel(TableColumnModel)
,JTable.setAutoCreateColumnsFromModel(boolean)
,JTable.getAutoCreateColumnsFromModel()
int autoResizeMode
A numeric code specifying the resizing behavior of the table. Must be one ofAUTO_RESIZE_ALL_COLUMNS
(the default),AUTO_RESIZE_LAST_COLUMN
,AUTO_RESIZE_NEXT_COLUMN
,AUTO_RESIZE_SUBSEQUENT_COLUMNS
, orAUTO_RESIZE_OFF
.
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 thecolumnModel
.
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.
boolean cellSelectionEnabled
Deprecated. Use
rowSelectionAllowed
,getColumnSelectionAllowed()
, or the combined methodsgetCellSelectionEnabled()
andsetCellSelectionEnabled(boolean)
.
TableModel dataModel
The model for data stored in the table. Confusingly, the published API requires that this field be calleddataModel
, despite its property name. The table listens to its model as aTableModelListener
.
TableColumnModel columnModel
A model of various aspects of the columns of the table, not including the data stored in them. TheTableColumnModel
is principally concerned with holding a set ofTableColumn
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 aListSelectionModel
which indicates which columns are currently selected. This selection model works in combination with theselectionModel
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: settingautoCreateColumnsFromModel
will construct the columnModel automatically, and the table acts as a facade for most of the interesting properties of the columnModel anyways.
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 thecolumnModel
property, to represent the rows and columns (or both: cells) of the table which are currently selected.
boolean dragEnabled
Whether or not drag-and-drop is enabled on this table.
- See Also:
setDragEnabled()
,JTable.getDragEnabled()
Color gridColor
The color to paint the grid lines of the table, when eithershowHorizontalLines
orshowVerticalLines
is set.
Dimension preferredViewportSize
The size this table would prefer its viewport assume, if it is contained in aJScrollPane
.
Color selectionBackground
The color to paint the background of selected cells. Fires a property change event with nameJTable
when its value changes.
Color selectionForeground
The color to paint the foreground of selected cells. Fires a property change event with nameJTable
when its value changes.
serialVersionUID: -6141680179310439825L
serialVersionUID: 353853209832607592L
serialVersionUID: 8255147276740453036L
serialVersionUID: 3140472492599046285L
serialVersionUID: -3128248873429850443L
serialVersionUID: -8652952712161229225L
serialVersionUID: -1589950750899943974L
serialVersionUID: -1269915519555129643L
serialVersionUID: -5516888265903814215L
serialVersionUID: -1656745644823105219L
serialVersionUID: -1138929898906751643L
serialVersionUID: -6222548177795408476L
serialVersionUID: 7559816092864483649L
JTree.TreeSelectionRedirector selectionRedirector
Redirects TreeSelectionEvents so that the source is this JTree.
serialVersionUID: -4298474751201349152L
boolean hasChildren
Currently not set or used by this class. It might be set and used in later versions of this class.
serialVersionUID: -5815023306225701477L
serialVersionUID: -3505069663646241664L
serialVersionUID: -6925142919680527970L
Dimension extentSize
The width and height of the Viewport's area in terms of view coordinates. Typically this will be the same as the width and height of the viewport's bounds, unless the viewport transforms units of width and height, which it may do, for example if it magnifies or rotates its view.
- See Also:
toViewCoordinates
serialVersionUID: -2812489404285958070L
serialVersionUID: 5420698392125238833L
AccessibleContext accessibleContext
The accessible context associated with this component. This is only set by subclasses.
- Since:
- 1.2
the accessibility context
- See Also:
Component.getAccessibleContext()
boolean initStageDone
Tells us if we're in the initialization stage. If so, adds go to top-level Container, otherwise they go to the content pane for this container.
serialVersionUID: -9060180771037902530L
serialVersionUID: 4312146927238881442L
serialVersionUID: 18082829169631543L
serialVersionUID: -4480022884523193743L
serialVersionUID: -4480022884523193743L
serialVersionUID: 9217749429906736553L
serialVersionUID: -4802518107105940612L
serialVersionUID: 3358804052191994516L
serialVersionUID: 7279176385485777821L
serialVersionUID: -1116180831621385484L
Runnable drainer
The encloding class, used withSwingUtilities.invokeLater(Runnable)
to invoke thedrainEvents()
.
EventListenerList listenerList
A field to store all listeners who are listening to this timer.
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.
javax.swing.Timer.Waker waker
Stores the thread that posts events to the queue at required time intervals.
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.
serialVersionUID: -967749805571669910L
serialVersionUID: 7341222528856548117L
PropertyChangeSupport propertyChangeSupport
We use this for firing PropertyChangeEvents.
serialVersionUID: -5547433830339189365L
serialVersionUID: -3387516993124229948L
serialVersionUID: -788225906076097229L
serialVersionUID: -545885975315191844L
serialVersionUID: -1034942243356299676L
Color highlightOuter
The outer highlight color, ornull
to indicate that the color shall be derived from the background of the component whose border is being painted.
Color highlightInner
The inner highlight color, ornull
to indicate that the color shall be derived from the background of the component whose border is being painted.
Color shadowOuter
The outer shadow color, ornull
to indicate that the color shall be derived from the background of the component whose border is being painted.
Color shadowInner
The inner shadow color, ornull
to indicate that the color shall be derived from the background of the component whose border is being painted.
serialVersionUID: 9054540377030555103L
Border insideBorder
The inside border, which is painted between the bordered Component and the outside border. It is valid forinsideBorder
to benull
.
Border outsideBorder
The outside border, which is painted outside both the bordered Component and the inside border. It is valid foroutsideBorder
to benull
.
serialVersionUID: -8116076291731988694L
serialVersionUID: 4001244046866360638L
Color highlight
The highlight color, ornull
to indicate that the color shall be derived from the background of the enclosed component.
serialVersionUID: -787563427772288970L
boolean roundedCorners
Indicates whether the line is drawn with rounded corners (true
) or not ((false
).
serialVersionUID: 4422248989617298224L
Color color
The color that is used for filling the border, ornull
if the border is filled with repetitions of a tile icon.
- See Also:
MatteBorder.tileIcon
Icon tileIcon
The icon is used for filling the border with a tile, ornull
if the border is filled with a solid color.
- See Also:
MatteBorder.color
serialVersionUID: 5248789787305979975L
serialVersionUID: 8012999415147721601L
Border border
The border underneath the title. If this value isnull
, the border will be retrieved from theUIManager
’s defaults table using the keyTitledBorder.border
.
int titlePosition
The vertical position of the title text relative to the border, which is one ofABOVE_TOP
,TOP
,BELOW_TOP
,ABOVE_BOTTOM
,BOTTOM
,BELOW_BOTTOM
, orDEFAULT_POSITION
.
Font titleFont
The font for displaying the title text. If this value isnull
, the font will be retrieved from theUIManager
’s defaults table using the keyTitledBorder.font
.
Color titleColor
The color for displaying the title text. If this value isnull
, the color will be retrieved from theUIManager
’s defaults table using the keyTitledBorder.titleColor
.
serialVersionUID: -977469671210173863L
serialVersionUID: -8117143602864778804L
serialVersionUID: -8079801679695605002L
serialVersionUID: 5516075349620653480L
serialVersionUID: 5516075349620653480L
serialVersionUID: -5677132037850737084L
serialVersionUID: -2054640811732867012L
serialVersionUID: -5204823611874873183L
serialVersionUID: 2510353260071004774L
serialVersionUID: 5516075349620653480L
serialVersionUID: -991214153494842848L
serialVersionUID: 5516075349620653480L
serialVersionUID: -2352130953028126954L
serialVersionUID: 5516075349620653480L
serialVersionUID: 7162625831330845068L
private void writeObject(ObjectOutputStream stream) throws IOException
writeObject
- Parameters:
stream
- TODO
- Throws:
IOException
- TODO
private void readObject(ObjectInputStream stream) throws ClassNotFoundException, IOException
readObject
- Parameters:
stream
- TODO
- Throws:
ClassNotFoundException
- TODOIOException
- TODO
serialVersionUID: 5516075349620653480L
serialVersionUID: -7849342674552212824L
serialVersionUID: 5516075349620653480L
serialVersionUID: 5516075349620653480L
serialVersionUID: 5516075349620653480L
serialVersionUID: 4418044561759134484L
serialVersionUID: -6277518704513986346L
serialVersionUID: -3440553684010079691L
serialVersionUID: -1275542891108351642L
serialVersionUID: 7550017084975167341L
serialVersionUID: -4914187529340071708L
serialVersionUID: -8186391754165296656L
serialVersionUID: -6171232338180172310L
serialVersionUID: -8107923147541851122L
serialVersionUID: 7667113547406407427L
serialVersionUID: 118526816881161077L
serialVersionUID: -5429059542008604257L
serialVersionUID: 4723952579491349524L
serialVersionUID: -4206021311591459213L
serialVersionUID: 3327049506004830542L
serialVersionUID: -5429059542008604257L
serialVersionUID: 5622110143266315421L
serialVersionUID: -1907255238954382202L
serialVersionUID: -157053874580739687L
Color lightHighlight
The color for drawing the bright highlighted parts of the border.
serialVersionUID: 949220756998454908L
Color lightHighlight
The color for drawing the outer half of the bottom and right edges.
serialVersionUID: -3035848353448896090L
serialVersionUID: -6909056571935227506L
Color shadow
The shadow color, which is used for the upper line of the two-pixel thick bottom edge.
serialVersionUID: 1596945751743747369L
serialVersionUID: 1976364864896996846L
serialVersionUID: -3528666548001058394L
serialVersionUID: 5496508283662221534L
serialVersionUID: 5496508283662221534L
serialVersionUID: -8336996630009646009L
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 listening to the selection changes in the combo box
MouseListener listMouseListener
MouseListener listening to mouse events occuring in the combo box's list.
MouseMotionListener listMouseMotionListener
MouseMotionListener listening to mouse motion events occuring in the combo box's list
MouseListener mouseListener
MouseListener listening to mouse events occuring in the combo box
MouseMotionListener mouseMotionListener
MouseMotionListener listening to mouse motion events occuring in the combo box
PropertyChangeListener propertyChangeListener
PropertyChangeListener listening to changes occuring in the bound properties of the combo box
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -3285184064379168730L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: 5496508283662221534L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: 5605588811185324383L
serialVersionUID: -7908749299918704233L
Color notSelectedTextColor
The text color of the TitlePane when the JInternalFrame is not selected.
Color notSelectedTitleColor
The background color of the TitlePane when the JInternalFrame is not selected.
Color selectedTextColor
The text color of the titlePane when the JInternalFrame is selected.
Color selectedTitleColor
The background color of the TitlePane when the JInternalFrame is selected.
PropertyChangeListener propertyChangeListener
The Property Change listener that listens to the JInternalFrame.
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -8191026883931977036L
serialVersionUID: -6096995660290287879L
serialVersionUID: 1463404307042803342L
BasicSplitPaneDivider.DragController dragger
An object that performs the tasks associated with an ongoing drag operation, ornull
if the user is currently not dragging the divider.
BasicSplitPaneUI splitPaneUI
The delegate object that is responsible for the UI of theJSplitPane
that contains this divider.
BasicSplitPaneDivider.MouseHandler mouseHandler
The listener for handling mouse events from both the divider and the containingJSplitPane
. The reason for also handling MouseEvents from the containingJSplitPane
is that users should be able to start a drag gesture from inside the JSplitPane, but slightly outisde the divider.
int orientation
The current orientation of the containingJSplitPane
, which is eitherJSplitPane.HORIZONTAL_SPLIT
orJSplitPane.VERTICAL_SPLIT
.
JButton leftButton
The button for showing and hiding the left (or top) component of theJSplitPane
.
JButton rightButton
The button for showing and hiding the right (or bottom) component of theJSplitPane
.
serialVersionUID: 228155774675466193L
serialVersionUID: 4497834738069338734L
Color borderColor
The current border color. It changes depending on whether the JToolBar is over a place that allows it to dock.
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -2474455742719112368L
serialVersionUID: -545885975315191844L
serialVersionUID: -545885975315191844L
serialVersionUID: -545885975315191844L
serialVersionUID: 6680646159193457980L
serialVersionUID: -5798593159423650347L
serialVersionUID: 7878911414715528324L
serialVersionUID: 7878911414715528324L
serialVersionUID: 6580012493508960512L
ListSelectionModel selectionModel
Selection Model that keeps track of columns selection
EventListenerList listenerList
listenerList keeps track of all listeners registered with this model
serialVersionUID: 6680042567037222321L
serialVersionUID: 5144633983372967710L
serialVersionUID: -7047089700479897799L
serialVersionUID: -6113660025878112608L
serialVersionUID: -116069779446114664L
serialVersionUID: 1265312733007397733L
serialVersionUID: -8595176318868717313L
serialVersionUID: -7406103236022413522L
serialVersionUID: -1216620962142928304L
serialVersionUID: 5115368706941283802L
serialVersionUID: -7712259886815656766L
serialVersionUID: 9119851554465432389L
serialVersionUID: 5423279572591848797L
serialVersionUID: 228155774675466193L
serialVersionUID: 9017245433028523428L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -7369196326612908900L
boolean commitsOnValidEdit
Indicates if the value should be committed after every valid modification of the Document.
boolean overwriteMode
Iftrue
newly inserted characters overwrite existing values, otherwise insertion is done the normal way.
serialVersionUID: -116069779446114664L
serialVersionUID: -5044124649345887822L
serialVersionUID: 8374645204155842629L
serialVersionUID: 6941977820906408656L
serialVersionUID: -8796518220218978795L
serialVersionUID: 7664188944091413696L
serialVersionUID: 4758290289196893664L
serialVersionUID: 7002391892985555948L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -6803159439231523484L
serialVersionUID: -1534369342247250625L
serialVersionUID: -116069779446114664L
serialVersionUID: 8751997116710384592L
serialVersionUID: -2054640811732867012L
serialVersionUID: -1361214058742015233L
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.
String value
The default value of this attribute. Equals to null if no default value is specified.
Vector values
The explicit set of the allowed values of this attribute. Equals to null, if this parameter was not specified. Values, defined in DTD, are case insensitive.
int modifier
The modifier of this attribute. This field contains one of the following DTD constants:
- REQUIRED if the attribute value is always required,
- IMPLIED if the user agent must supply the default value itself,
- FIXED if the attribute value is fixed to some value and cannot be changed.
- DEFAULT if the attribute default value has been supplied.
- CURRENT the value that at any point in the document is the last value supplied for that element. A value is required to be supplied for the first* occurrence of an element
- CONREF specifies the IDREF value of the reference to content in another location of the document. The element with this attribute is empty, the content from that another location must be used instead.
int type
The type of the attribute. The possible values of this field (NUMBER, NAME, ID, CDATA and so on) are defined in DTDConstants.
serialVersionUID: -1130825523866321257L
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.
Object content
The document content, containing either Element or the enclosed content model (that would be in the parentheses in BNF expression).
int type
Specifies the BNF operation between this node and the node, stored in the fieldnext
(or for this node, if it is an unary operation.
serialVersionUID: -6717939384601675586L
BitSet exclusions
Contains refernces to elements that must NOT occur inside this element, at any level of hierarchy.
BitSet inclusions
Contains refernces to elements that must CAN occur inside this element, at any level of hierarchy.
ContentModel content
The content model, defining elements, entities and DTD text that may/may not occur inside this element.
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.
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.
int index
This field contains the unique integer identifier of this Element, used to refer the element (more exactly, the element flag) ininclusions
andexclusions
bit set.
int type
The element type, containing value, defined in DTDConstants. In this implementation, the element type can be CDATA, RCDATA, EMPTY or ANY.
serialVersionUID: -1276686502624777206L
HTMLEditorKit.ParserCallback callBack
The callback. This is package-private to avoid an accessor method.
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.
serialVersionUID: 7002391892985555948L
serialVersionUID: -4298474751201349152L
private void writeObject(ObjectOutputStream stream) throws IOException
writeObject
- Parameters:
stream
- the output stream
- Throws:
IOException
- If an error occurs
private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException
readObject
- Parameters:
stream
- the input stream
- Throws:
IOException
- If an error occursClassNotFoundException
- TODO
serialVersionUID: 353853209832607592L
serialVersionUID: 4613797578919906343L
serialVersionUID: 5496508283662221534L
serialVersionUID: -2621068368932566998L
private void writeObject(ObjectOutputStream value0) throws IOException
writeObject
- Parameters:
value0
- TODO
- Throws:
IOException
- TODO
private void readObject(ObjectInputStream value0) throws IOException, ClassNotFoundException
readObject
- Parameters:
value0
- TODO
- Throws:
IOException
- TODOClassNotFoundException
- TODO
serialVersionUID: 3288129636638950196L
private void writeObject(ObjectOutputStream value0) throws IOException
writeObject
- Parameters:
value0
- TODO
- Throws:
IOException
- TODO
private void readObject(ObjectInputStream value0) throws IOException, ClassNotFoundException
readObject
- Parameters:
value0
- TODO
- Throws:
IOException
- TODOClassNotFoundException
- TODO
serialVersionUID: -3387516993124229948L
serialVersionUID: 4380036194768077479L
private void writeObject(ObjectOutputStream value0) throws IOException
writeObject
- Parameters:
value0
- TODO
- Throws:
IOException
- TODO
private void readObject(ObjectInputStream value0) throws IOException, ClassNotFoundException
readObject
- Parameters:
value0
- TODO
- Throws:
IOException
- TODOClassNotFoundException
- TODO
serialVersionUID: 580150227676302096L
boolean hasBeenDone
Indicates whether this editing action has been executed. A value oftrue
means that the action was performed, or that a redo operation was successful. A value offalse
means that the action has not yet performed, or that an undo operation was successful.
serialVersionUID: -7034897190745766939L
serialVersionUID: -7034897190745766939L
serialVersionUID: -6512679249930119683L
boolean inProgress
Indicates whether the creation of this CompoundEdit is still in progress. Initially, the value of this flag istrue
. Theend()
method changes the flag tofalse
.
serialVersionUID: 580150227676302096L
serialVersionUID: -2077529998244066750L
int indexOfNextAdd
An index into the inheritedUndoManager
Vector that indicates at which position newly added editing actions would get inserted. Normally, the value ofindexOfNextAdd
equals the number of UndoableEdits stored by this UndoManager, i.e.edits.size()
. For each call toundo()
,indexOfNextAdd
is decremented by one. For each call toredo()
, it is incremented again.
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -5148567311918794206L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -5148567311918794206L
serialVersionUID: -5148567311918794206L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: 4980196508277280342L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: 4980196508277280342L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -2706218945227726672L
serialVersionUID: 1217179597823814463L
serialVersionUID: -5025677944847478264L
serialVersionUID: 7273325995832240406L
serialVersionUID: 1654621651720499682L
serialVersionUID: 1917109334939470379L
serialVersionUID: 6193364410915696901L
serialVersionUID: -6594940734566091244L
serialVersionUID: -9047319660881406859L
serialVersionUID: 294856734784364267L
serialVersionUID: 1874869932271600956L
serialVersionUID: -8601167576704143376L
serialVersionUID: -1333559476995791982L
serialVersionUID: -8086463494577448422L
serialVersionUID: -3753094599663690309L
serialVersionUID: 3771336866139357605L
serialVersionUID: 722572694720671863L
serialVersionUID: -4265126403821571697L
serialVersionUID: -4863924749863817671L
serialVersionUID: 4399295047946553530L
serialVersionUID: -7238811948257685034L
serialVersionUID: -7823113107689030975L
serialVersionUID: 7416408250336395546L
serialVersionUID: 7000741877654946223L
serialVersionUID: 3519190655657192112L
serialVersionUID: -4591569617929689285L
serialVersionUID: -1533969523582458479L
serialVersionUID: 8129246118235803597L
serialVersionUID: 1971973765161647047L
serialVersionUID: 7226958015420512389L
serialVersionUID: -1516541344234786928L
serialVersionUID: 1521598391932998229L
serialVersionUID: -6835478548864681965L
serialVersionUID: -9196809779974700103L
short reason
Holds the exception reason code, one ofBAD_POLICY
,BAD_POLICY_TYPE
,BAD_POLICY_VALUE
,UNSUPPORTED_POLICY
,UNSUPPORTED_POLICY_VALUE
.
serialVersionUID: -2761857189425106972L
serialVersionUID: 2762280796480753206L
serialVersionUID: -8486391734674855519L
serialVersionUID: -1900254548742148576L
serialVersionUID: -343903462439281571L
serialVersionUID: 8168539547719791425L
serialVersionUID: -6521025782489515676L
serialVersionUID: 5506049694216071974L
serialVersionUID: 3106202258203879281L
serialVersionUID: -3556426185741898205L
serialVersionUID: -6594940734566091244L
serialVersionUID: -2507594168537449114L
short access
The type of access (public, private) of this value member. This field can be equal to eitherPUBLIC_MEMBER.value
orPRIVATE_MEMBER.value
.
serialVersionUID: -6594940734566091244L
serialVersionUID: 9150293942452453626L
serialVersionUID: 2453656196708903849L
serialVersionUID: -8258194490767575588L
serialVersionUID: -5678460771857763522L
serialVersionUID: -4741963043279146697L
serialVersionUID: 2763424591181102501L
serialVersionUID: -4393472660722667060L
serialVersionUID: 6635923991559230168L
serialVersionUID: 1030443154456771956L
serialVersionUID: -5418177951071152101L
serialVersionUID: -2088103024111528125L
serialVersionUID: -1923858944380721643L
serialVersionUID: -7025491253080954918L
serialVersionUID: 1725238280802233450L
serialVersionUID: -3775583235364760385L
serialVersionUID: -5456929050527586560L
serialVersionUID: -8627405252527310782L
serialVersionUID: 786404864997961704L
serialVersionUID: 7120362687417045881L
serialVersionUID: -7539098836265502514L
NotFoundReason why
The reason, explaining, why the binding cannot be found. This might be either the missing node or the wrong binding type.
serialVersionUID: 892191606993734699L
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.
serialVersionUID: 3679785322052655944L
serialVersionUID: 4928947584617628504L
serialVersionUID: -6393641830493471034L
serialVersionUID: -1489257079856841992L
serialVersionUID: 1901439890645554948L
TaggedProfile[] profiles
The profiles, associated with this IOR reference. The possible profiles are listed inTaggedProfile
description.
serialVersionUID: -2232391417465261379L
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.
serialVersionUID: -2084695346022761692L
serialVersionUID: -461232684387903343L
int tag
The integer tag identifier, typically one of TAG_INTERNET_IOP.value or TAG_MULTIPLE_COMPONENTS.value.
byte[] profile_data
The profile_data, represented here in the form of the array of bytes.
serialVersionUID: 1613955753212049966L
serialVersionUID: 5818121867618342320L
serialVersionUID: 7951932210684443970L
serialVersionUID: -3544092104480759035L
serialVersionUID: 7748239257677851130L
serialVersionUID: -4599417794753377115L
serialVersionUID: 2024380631469554382L
serialVersionUID: 2698951826884611346L
serialVersionUID: 3826572456602949295L
serialVersionUID: 6604562925399671611L
serialVersionUID: 7646563512329907695L
serialVersionUID: -7476100336036943822L
serialVersionUID: 4345975812295650198L
serialVersionUID: 6945182851085567131L
serialVersionUID: -2451866258678193271L
serialVersionUID: -2678288222917790041L
serialVersionUID: -9166706041988650696L
serialVersionUID: 3204212102282117205L
serialVersionUID: -5893773687270266061L
serialVersionUID: -2919308871345098101L
serialVersionUID: 2269559915073532416L
serialVersionUID: 780130793809887260L
serialVersionUID: -7806868032412803953L
serialVersionUID: 7505320179916389200L
serialVersionUID: 1949765652955335195L
serialVersionUID: -1967190271952680697L
serialVersionUID: -7034897190745766939L
serialVersionUID: -7034897190745766939L
serialVersionUID: -7034897190745766939L
serialVersionUID: -7034897190745766939L
serialVersionUID: -7034897190745766939L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
serialVersionUID: -3387516993124229948L
GNU Classpath (0.17) |