This field has two possible interpretations:
endMode == DOW_IN_MONTH
-
endDay
indicates the day of the month of
endMonth
on which daylight
savings time ends, from 1 to 28, 30, or 31, depending on the
endMonth
.
endMode != DOW_IN_MONTH
-
endDay
indicates which endDayOfWeek
in th
month endMonth
daylight
savings time ends on. For example, a value of +1 and a
endDayOfWeek
of Calendar.SUNDAY
indicates the
first Sunday of endMonth
. Likewise, +2 would indicate the
second Sunday, and -1 the last Sunday. A value of 0 is illegal.
If useDaylight
is false, this value is ignored.
-
endDayOfWeek
int endDayOfWeek
- The day of the week on which daylight savings time ends. This value
must be between
Calendar.SUNDAY
and
Calendar.SATURDAY
inclusive.
If useDaylight
is false or
endMode == DAY_OF_MONTH
, this value is ignored.
-
endTime
int endTime
- The time in milliseconds after midnight at which daylight savings
time ends. This value is expressed as wall time, standard time,
or UTC time, depending on the setting of
endTimeMode
.
If useDaylight
is false, this value is ignored.
-
endTimeMode
int endTimeMode
- The format of endTime, either WALL_TIME, STANDARD_TIME, or UTC_TIME.
-
- Since:
- JDK 1.3
startYear
int startYear
- The year in which daylight savings time is first observed. This is an AD
value. If this value is less than 1 then daylight savings is observed
for all AD years.
If useDaylight
is false, this value is ignored.
-
rawOffset
int rawOffset
- The offset in milliseconds between this zone and GMT. Negative offsets
are to the west of Greenwich. To obtain local standard time,
add the offset to GMT time. To obtain local wall time it may also be
necessary to add
dstSavings
. -
useDaylight
boolean useDaylight
- A boolean value which is true if and only if this zone uses daylight
savings time. If this value is false, several other fields are ignored.
-
monthLength
byte[] monthLength
- This field was serialized in JDK 1.1, so we have to keep it that way
to maintain serialization compatibility. However, there's no need to
recreate the array each time we create a new time zone.
- An array of bytes containing the values {31, 28, 31, 30, 31, 30,
31, 31, 30, 31, 30, 31}. This is ignored as of the Java 2 platform v1.2, however, it must
be streamed out for compatibility with JDK 1.1.
startMode
int startMode
- Variables specifying the mode of the start rule. Takes the following
values:
DOM_MODE
-
Exact day of week; e.g., March 1.
DOW_IN_MONTH_MODE
-
Day of week in month; e.g., last Sunday in March.
DOW_GE_DOM_MODE
-
Day of week after day of month; e.g., Sunday on or after March 15.
DOW_LE_DOM_MODE
-
Day of week before day of month; e.g., Sunday on or before March 15.
The setting of this field affects the interpretation of the
startDay
field.
If useDaylight
is false, this value is ignored.
-
- Since:
- JDK1.1.4
endMode
int endMode
- Variables specifying the mode of the end rule. Takes the following
values:
DOM_MODE
-
Exact day of week; e.g., March 1.
DOW_IN_MONTH_MODE
-
Day of week in month; e.g., last Sunday in March.
DOW_GE_DOM_MODE
-
Day of week after day of month; e.g., Sunday on or after March 15.
DOW_LE_DOM_MODE
-
Day of week before day of month; e.g., Sunday on or before March 15.
The setting of this field affects the interpretation of the
endDay
field.
If useDaylight
is false, this value is ignored.
-
- Since:
- JDK1.1.4
dstSavings
int dstSavings
- A positive value indicating the amount of time saved during DST in
milliseconds.
Typically one hour (3600000); sometimes 30 minutes (1800000).
If useDaylight
is false, this value is ignored.
-
- Since:
- JDK1.1.4
serialVersionOnStream
int serialVersionOnStream
- The version of the serialized data on the stream. Possible values:
- 0 or not present on stream
-
JDK 1.1.3 or earlier.
- 1
-
JDK 1.1.4 or later. Includes three new fields:
startMode
,
endMode
, and dstSavings
.
- 2
-
JDK 1.3 or later. Includes two new fields:
startTimeMode
and endTimeMode
.
When streaming out this class, the most recent format
and the highest allowable serialVersionOnStream
is written. -
- Since:
- JDK1.1.4
ID
String ID
- The string identifier of this
TimeZone
. This is a
programmatic identifier used internally to look up TimeZone
objects from the system table and also to map them to their localized
display names. ID
values are unique in the system
table but may not be for dynamically created zones. -
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Reconstitute the TreeMap instance from a stream (i.e.,
deserialize it).
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Save the state of the TreeMap instance to a stream (i.e.,
serialize it).
- Serial Data:
- The size of the TreeMap (the number of key-value
mappings) is emitted (int), followed by the key (Object)
and value (Object) for each key-value mapping represented
by the TreeMap. The key-value mappings are emitted in
key-order (as determined by the TreeMap's Comparator,
or by the keys' natural ordering if the TreeMap has no
Comparator).
comparator
Comparator comparator
- The Comparator used to maintain order in this TreeMap, or
null if this TreeMap uses its elements natural ordering.
-
this$0
TreeMap this$0
fromStart
boolean fromStart
- fromKey is significant only if fromStart is false. Similarly,
toKey is significant only if toStart is false.
toEnd
boolean toEnd
- fromKey is significant only if fromStart is false. Similarly,
toKey is significant only if toStart is false.
fromKey
Object fromKey
toKey
Object toKey
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Reconstitute the TreeSet instance from a stream (that is,
deserialize it).
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Save the state of the TreeSet instance to a stream (that is,
serialize it).
- Serial Data:
- Emits the comparator used to order this set, or
null if it obeys its elements' natural ordering
(Object), followed by the size of the set (the number of
elements it contains) (int), followed by all of its
elements (each an Object) in order (as determined by the
set's Comparator, or by the elements' natural ordering if
the set has no Comparator).
elementData
Object[] elementData
- The array buffer into which the components of the vector are
stored. The capacity of the vector is the length of this array buffer,
and is at least large enough to contain all the vector's elements.
Any array elements following the last element in the Vector are null.
-
elementCount
int elementCount
- The number of valid components in this Vector object.
Components elementData[0] through
elementData[elementCount-1] are the actual items.
-
capacityIncrement
int capacityIncrement
- The amount by which the capacity of the vector is automatically
incremented when its size becomes greater than its capacity. If
the capacity increment is less than or equal to zero, the capacity
of the vector is doubled each time it needs to grow.
-
buf
byte[] buf
- Contains the bytes of the address.
This field is initialized by the constructor and returned
using getAddressBytes() and getAddressContents().
-
boundObj
Object boundObj
- Contains this binding's object.
It is initialized by the constuctor and can be updated using
setObject.
-
- See Also:
Binding.getObject()
,
Binding.setObject(java.lang.Object)
remainingNewName
Name remainingNewName
- Contains the remaining unresolved part of the second
"name" argument to Context.rename().
This information necessary for
continuing the Context.rename() operation.
This field is initialized to null.
It should not be manipulated directly: it should
be accessed and updated using getRemainingName() and setRemainingName().
-
- See Also:
CannotProceedException.getRemainingNewName()
,
CannotProceedException.setRemainingNewName(javax.naming.Name)
environment
Hashtable environment
- Contains the environment
relevant for the Context or DirContext method that cannot proceed.
This field is initialized to null.
It should not be manipulated directly: it should be accessed
and updated using getEnvironment() and setEnvironment().
-
- See Also:
CannotProceedException.getEnvironment()
,
CannotProceedException.setEnvironment(java.util.Hashtable)
altName
Name altName
- Contains the name of the resolved object, relative
to the context
altNameCtx
. It is a composite name.
If null, then no name is specified.
See the javax.naming.spi.ObjectFactory.getObjectInstance
method for details on how this is used.
This field is initialized to null.
It should not be manipulated directly: it should
be accessed and updated using getAltName() and setAltName().
-
- See Also:
CannotProceedException.getAltName()
,
CannotProceedException.setAltName(javax.naming.Name)
,
CannotProceedException.altNameCtx
,
ObjectFactory.getObjectInstance(java.lang.Object, javax.naming.Name, javax.naming.Context, java.util.Hashtable)
altNameCtx
Context altNameCtx
- Contains the context relative to which
altName
is specified. If null, then the default initial
context is implied.
See the javax.naming.spi.ObjectFactory.getObjectInstance
method for details on how this is used.
This field is initialized to null.
It should not be manipulated directly: it should
be accessed and updated using getAltNameCtx() and setAltNameCtx().
-
- See Also:
CannotProceedException.getAltNameCtx()
,
CannotProceedException.setAltNameCtx(javax.naming.Context)
,
CannotProceedException.altName
,
ObjectFactory.getObjectInstance(java.lang.Object, javax.naming.Name, javax.naming.Context, java.util.Hashtable)
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Overriden to avoid implementation dependency.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Overriden to avoid implementation dependency.
- Serial Data:
- The number of components (an int) followed by
the individual components (each a String).
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Overriden to avoid implementation dependency.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Overriden to avoid implementation dependency.
- Serial Data:
- The syntax Properties, followed by
the number of components (an int), and the individual
components (each a String).
linkResolvedName
Name linkResolvedName
- Contains the part of the link that has been successfully resolved.
It is a composite name and can be null.
This field is initialized by the constructors.
You should access and manipulate this field
through its get and set methods.
-
- See Also:
LinkException.getLinkResolvedName()
,
LinkException.setLinkResolvedName(javax.naming.Name)
linkResolvedObj
Object linkResolvedObj
- Contains the object to which resolution of the part of the link was successful.
Can be null. This field is initialized by the constructors.
You should access and manipulate this field
through its get and set methods.
-
- See Also:
LinkException.getLinkResolvedObj()
,
LinkException.setLinkResolvedObj(java.lang.Object)
linkRemainingName
Name linkRemainingName
- Contains the remaining link name that has not been resolved yet.
It is a composite name and can be null.
This field is initialized by the constructors.
You should access and manipulate this field
through its get and set methods.
-
- See Also:
LinkException.getLinkRemainingName()
,
LinkException.setLinkRemainingName(javax.naming.Name)
linkExplanation
String linkExplanation
- Contains the exception of why resolution of the link failed.
Can be null. This field is initialized by the constructors.
You should access and manipulate this field
through its get and set methods.
-
- See Also:
LinkException.getLinkExplanation()
,
LinkException.setLinkExplanation(java.lang.String)
name
String name
- Contains the name of this NameClassPair.
It is initialized by the constructor and can be updated using
setName().
-
- See Also:
NameClassPair.getName()
,
NameClassPair.setName(java.lang.String)
className
String className
- Contains the class name contained in this NameClassPair.
It is initialized by the constructor and can be updated using
setClassName().
-
- See Also:
NameClassPair.getClassName()
,
NameClassPair.setClassName(java.lang.String)
isRel
boolean isRel
- Records whether the name of this NameClassPair
is relative to the target context.
It is initialized by the constructor and can be updated using
setRelative().
-
- See Also:
NameClassPair.isRelative()
,
NameClassPair.setRelative(boolean)
,
NameClassPair.getName()
,
NameClassPair.setName(java.lang.String)
components
Vector components
syntaxDirection
String syntaxDirection
syntaxSeparator
String syntaxSeparator
syntaxSeparator2
String syntaxSeparator2
syntaxCaseInsensitive
boolean syntaxCaseInsensitive
syntaxTrimBlanks
boolean syntaxTrimBlanks
syntaxEscape
String syntaxEscape
syntaxBeginQuote1
String syntaxBeginQuote1
syntaxEndQuote1
String syntaxEndQuote1
syntaxBeginQuote2
String syntaxBeginQuote2
syntaxEndQuote2
String syntaxEndQuote2
syntaxAvaSeparator
String syntaxAvaSeparator
syntaxTypevalSeparator
String syntaxTypevalSeparator
STYLE_NONE
int STYLE_NONE
STYLE_QUOTE1
int STYLE_QUOTE1
STYLE_QUOTE2
int STYLE_QUOTE2
STYLE_ESCAPE
int STYLE_ESCAPE
escapingStyle
int escapingStyle
resolvedName
Name resolvedName
- Contains the part of the name that has been successfully resolved.
It is a composite name and can be null.
This field is initialized by the constructors.
You should access and manipulate this field
through its get and set methods.
-
- See Also:
NamingException.getResolvedName()
,
NamingException.setResolvedName(javax.naming.Name)
resolvedObj
Object resolvedObj
- Contains the object to which resolution of the part of the name was
successful. Can be null.
This field is initialized by the constructors.
You should access and manipulate this field
through its get and set methods.
-
- See Also:
NamingException.getResolvedObj()
,
NamingException.setResolvedObj(java.lang.Object)
remainingName
Name remainingName
- Contains the remaining name that has not been resolved yet.
It is a composite name and can be null.
This field is initialized by the constructors.
You should access and manipulate this field
through its get, set, "append" methods.
-
- See Also:
NamingException.getRemainingName()
,
NamingException.setRemainingName(javax.naming.Name)
,
NamingException.appendRemainingName(javax.naming.Name)
,
NamingException.appendRemainingComponent(java.lang.String)
rootException
Throwable rootException
- Contains the original exception that caused this NamingException to
be thrown. This field is set if there is additional
information that could be obtained from the original
exception, or if there original exception could not be
mapped to a subclass of NamingException.
Can be null. This field is initialized by the constructors.
You should access and manipulate this field
through its get and set methods.
-
- See Also:
NamingException.getRootCause()
,
NamingException.setRootCause(java.lang.Throwable)
addrType
String addrType
- Contains the type of this address.
-
className
String className
- Contains the fully-qualified name of the class of the object to which
this Reference refers.
-
- See Also:
Class.getName()
addrs
Vector addrs
- Contains the addresses contained in this Reference.
Initialized by constructor.
-
classFactory
String classFactory
- Contains the name of the factory class for creating
an instance of the object to which this Reference refers.
Initialized to null.
-
classFactoryLocation
String classFactoryLocation
- Contains the location of the factory class.
Initialized to null.
-
contents
String contents
- Contains the contents of this address.
Can be null.
-
Package javax.naming.directory |
unexecs
ModificationItem[] unexecs
- Contains the possibly null list of unexecuted modifications.
-
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Overriden to avoid exposing implementation details.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Overriden to avoid exposing implementation details
- Serial Data:
- Default field (the attribute ID -- a String),
followed by the number of values (an int), and the
individual values.
attrID
String attrID
- Holds the attribute's id. It is initialized by the public constructor and
cannot be null unless methods in BasicAttribute that use attrID
have been overridden.
-
ordered
boolean ordered
- A flag for recording whether this attribute's values are ordered.
-
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Overriden to avoid exposing implementation details.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Overriden to avoid exposing implementation details.
- Serial Data:
- Default field (ignoreCase flag -- a boolean), followed by
the number of attributes in the set
(an int), and then the individual Attribute objects.
ignoreCase
boolean ignoreCase
- Indicates whether case of attribute ids is ignored.
-
mod_op
int mod_op
- Contains an integer identify the modification
to be performed.
-
attr
Attribute attr
- Contains the attribute identifying
the attribute and/or its value to be applied for the modification.
-
searchScope
int searchScope
- Contains the scope with which to apply the search. One of
ONELEVEL_SCOPE, OBJECT_SCOPE, or
SUBTREE_SCOPE.
-
timeLimit
int timeLimit
- Contains the milliseconds to wait before returning
from search.
-
derefLink
boolean derefLink
- Indicates whether JNDI links are dereferenced during
search.
-
returnObj
boolean returnObj
- Indicates whether object is returned in SearchResult.
-
countLimit
long countLimit
- Contains the maximum number of SearchResults to return.
-
attributesToReturn
String[] attributesToReturn
- Contains the list of attributes to be returned in
SearchResult for each matching entry of search. null
indicates that all attributes are to be returned.
-
attrs
Attributes attrs
- Contains the attributes returned with the object.
-
Package javax.naming.event |
changeInfo
Object changeInfo
- Contains information about the change that generated this event.
-
type
int type
- Contains the type of this event.
-
- See Also:
NamingEvent.OBJECT_ADDED
,
NamingEvent.OBJECT_REMOVED
,
NamingEvent.OBJECT_RENAMED
,
NamingEvent.OBJECT_CHANGED
oldBinding
Binding oldBinding
- Contains information about the object before the change.
-
newBinding
Binding newBinding
- Contains information about the object after the change.
-
exception
NamingException exception
- Contains the exception that was thrown
-
Package javax.naming.ldap |
notice
UnsolicitedNotification notice
- The notification that caused this event to be fired.
-
resolvedObj
Object resolvedObj
- Field containing the Object that was resolved to successfully.
It can be null only when constructed using a subclass.
Constructors should always initialize this.
-
remainingName
Name remainingName
- Field containing the remaining name yet to be resolved.
It can be null only when constructed using a subclass.
Constructors should always initialize this.
-
repid
String repid
- The class's RepositoryId.
codebase
String codebase
- A space-separated list of codebase URLs.
readObject
private void readObject(ObjectInputStream stream)
throws IOException,
ClassNotFoundException
- Serialization method to restore the IOR state.
writeObject
private void writeObject(ObjectOutputStream stream)
throws IOException
- Serialization method to save the IOR state.
- Serial Data:
- The length of the IOR type ID (int), followed by the IOR type ID
(byte array encoded using ISO8859-1), followed by the number of IOR profiles
(int), followed by the IOR profiles. Each IOR profile is written as a
profile tag (int), followed by the length of the profile data (int), followed
by the profile data (byte array).
Package javax.sound.sampled |
type
LineEvent.Type type
- The kind of line event (
OPEN
, CLOSE
,
START
, or STOP
). -
- See Also:
LineEvent.getType()
position
long position
- The media position when the event occurred, expressed in sample frames.
Note that this field is only relevant to certain events generated by
data lines, such as
START
and STOP
. For
events generated by lines that do not count sample frames, and for any
other events for which this value is not known, the position value
should be AudioSystem.NOT_SPECIFIED
. -
- See Also:
LineEvent.getFramePosition()
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
enabled
boolean enabled
- Specifies whether action is enabled; the default is true.
changeSupport
SwingPropertyChangeSupport changeSupport
- If any
PropertyChangeListeners
have been registered, the
changeSupport
field describes them.
model
ButtonModel model
- The data model that determines the button's state.
text
String text
margin
Insets margin
defaultMargin
Insets defaultMargin
defaultIcon
Icon defaultIcon
pressedIcon
Icon pressedIcon
disabledIcon
Icon disabledIcon
selectedIcon
Icon selectedIcon
disabledSelectedIcon
Icon disabledSelectedIcon
rolloverIcon
Icon rolloverIcon
rolloverSelectedIcon
Icon rolloverSelectedIcon
paintBorder
boolean paintBorder
paintFocus
boolean paintFocus
rolloverEnabled
boolean rolloverEnabled
contentAreaFilled
boolean contentAreaFilled
verticalAlignment
int verticalAlignment
horizontalAlignment
int horizontalAlignment
verticalTextPosition
int verticalTextPosition
horizontalTextPosition
int horizontalTextPosition
accessibleIcon
AccessibleIcon accessibleIcon
changeListener
ChangeListener changeListener
- The button model's
changeListener
.
actionListener
ActionListener actionListener
- The button model's
ActionListener
.
itemListener
ItemListener itemListener
- The button model's
ItemListener
.
action
Action action
actionPropertyChangeListener
PropertyChangeListener actionPropertyChangeListener
this$0
AbstractButton this$0
this$0
AbstractButton this$0
this$0
AbstractButton this$0
this$0
AbstractButton this$0
listenerList
EventListenerList listenerList
listenerList
EventListenerList listenerList
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
parent
ActionMap parent
- Parent that handles any bindings we don't contain.
firstInvisibleAncestor
Component firstInvisibleAncestor
listenerList
EventListenerList listenerList
root
JComponent root
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
component
JComponent component
accessibleContext
AccessibleContext accessibleContext
- The currently set AccessibleContext object.
this$0
Box this$0
reqMin
Dimension reqMin
reqPref
Dimension reqPref
reqMax
Dimension reqMax
accessibleContext
AccessibleContext accessibleContext
- The currently set AccessibleContext object.
this$0
Box.Filler this$0
axis
int axis
target
Container target
buttons
Vector buttons
selection
ButtonModel selection
- The current choice.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Description copied from class:
Container
- Writes default serializable fields to stream. Writes
a list of serializable ItemListener(s) as optional data.
The non-serializable ItemListner(s) are detected and
no attempt is made to serialize them.
accessibleContext
AccessibleContext accessibleContext
this$0
CellRendererPane this$0
initialColor
Color initialColor
chooserPane
JColorChooser chooserPane
chooser
JColorChooser chooser
color
Color color
component
JComponent component
- Component binding is created for.
listenerList
EventListenerList listenerList
- The listeners waiting for model changes.
value
int value
extent
int extent
min
int min
max
int max
isAdjusting
boolean isAdjusting
stateMask
int stateMask
actionCommand
String actionCommand
group
ButtonGroup group
mnemonic
int mnemonic
listenerList
EventListenerList listenerList
editorComponent
JComponent editorComponent
delegate
DefaultCellEditor.EditorDelegate delegate
clickCountToStart
int clickCountToStart
this$0
DefaultCellEditor this$0
value
Object value
objects
Vector objects
selectedObject
Object selectedObject
dragMode
int dragMode
delegate
Vector delegate
selectionMode
int selectionMode
minIndex
int minIndex
maxIndex
int maxIndex
anchorIndex
int anchorIndex
leadIndex
int leadIndex
firstAdjustedIndex
int firstAdjustedIndex
lastAdjustedIndex
int lastAdjustedIndex
isAdjusting
boolean isAdjusting
firstChangedIndex
int firstChangedIndex
lastChangedIndex
int lastChangedIndex
value
BitSet value
listenerList
EventListenerList listenerList
leadAnchorNotificationEnabled
boolean leadAnchorNotificationEnabled
this$0
DefaultPopupFactory this$0
desiredLocationX
int desiredLocationX
desiredLocationY
int desiredLocationY
this$0
DefaultPopupFactory this$0
desiredLocationX
int desiredLocationX
desiredLocationY
int desiredLocationY
rootPane
JRootPane rootPane
this$0
DefaultPopupFactory this$0
saveX
int saveX
saveY
int saveY
firstShow
boolean firstShow
this$1
DefaultPopupFactory.WindowPopup this$1
accessibleContext
AccessibleContext accessibleContext
listenerList
EventListenerList listenerList
- The collection of registered listeners
index
int index
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
imageObserver
ImageObserver imageObserver
description
String description
width
int width
height
int height
accessibleContext
ImageIcon.AccessibleImageIcon accessibleContext
- --- Accessibility Support ---
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
this$0
ImageIcon this$0
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
parent
InputMap parent
- Parent that handles any bindings we don't contain.
rootPane
JRootPane rootPane
- See Also:
JApplet.getRootPane()
,
JApplet.setRootPane(javax.swing.JRootPane)
rootPaneCheckingEnabled
boolean rootPaneCheckingEnabled
- See Also:
JApplet.isRootPaneCheckingEnabled()
,
JApplet.setRootPaneCheckingEnabled(boolean)
accessibleContext
AccessibleContext accessibleContext
this$0
JApplet this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
defaultCapable
boolean defaultCapable
this$0
JButton this$0
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- See JComponent.readObject() for information about serialization
in Swing.
flat
boolean flat
this$0
JCheckBox this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
this$0
JCheckBoxMenuItem this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
selectionModel
ColorSelectionModel selectionModel
previewPanel
JComponent previewPanel
chooserPanels
AbstractColorChooserPanel[] chooserPanels
accessibleContext
AccessibleContext accessibleContext
this$0
JColorChooser this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent for more
information about serialization in Swing.
dataModel
ComboBoxModel dataModel
renderer
ListCellRenderer renderer
editor
ComboBoxEditor editor
maximumRowCount
int maximumRowCount
isEditable
boolean isEditable
selectedItemReminder
Object selectedItemReminder
keySelectionManager
JComboBox.KeySelectionManager keySelectionManager
actionCommand
String actionCommand
lightWeightPopupEnabled
boolean lightWeightPopupEnabled
firedActionEventOnContentsChanged
boolean firedActionEventOnContentsChanged
firingActionEvent
boolean firingActionEvent
action
Action action
actionPropertyChangeListener
PropertyChangeListener actionPropertyChangeListener
this$0
JComboBox this$0
this$0
JComboBox this$0
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- We use the ObjectInputStream "registerValidation" callback to
update the UI for the entire tree of components after they've
all been read in.
- See Also:
JComponent.ReadObjectCallback
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Before writing a JComponent to an ObjectOutputStream we temporarily
uninstall its UI. This is tricky to do because we want to uninstall
the UI before any of the JComponent's children (or its LayoutManager etc.)
are written, and we don't want to restore the UI until the most derived
JComponent subclass has been been stored.
preferredSize
Dimension preferredSize
minimumSize
Dimension minimumSize
maximumSize
Dimension maximumSize
alignmentX
Float alignmentX
alignmentY
Float alignmentY
ancestorNotifier
AncestorNotifier ancestorNotifier
_bounds
Rectangle _bounds
listenerList
EventListenerList listenerList
clientProperties
Hashtable clientProperties
vetoableChangeSupport
VetoableChangeSupport vetoableChangeSupport
autoscroller
Autoscroller autoscroller
border
Border border
flags
int flags
inputVerifier
InputVerifier inputVerifier
verifyInputWhenFocusTarget
boolean verifyInputWhenFocusTarget
focusInputMap
InputMap focusInputMap
- Used for WHEN_FOCUSED bindings.
ancestorInputMap
InputMap ancestorInputMap
- Used for WHEN_ANCESTOR_OF_FOCUSED_COMPONENT bindings.
windowInputMap
ComponentInputMap windowInputMap
- Used for WHEN_IN_FOCUSED_KEY bindings.
actionMap
ActionMap actionMap
- ActionMap.
accessibleContext
AccessibleContext accessibleContext
- The AccessibleContext associated with this JComponent.
htmlView
Object htmlView
changeSupport
SwingPropertyChangeSupport changeSupport
paintImmediatelyClip
Rectangle paintImmediatelyClip
this$0
JComponent this$0
accessibleContainerHandler
ContainerListener accessibleContainerHandler
accessibleFocusHandler
FocusListener accessibleFocusHandler
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
this$0
JComponent this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
dragMode
int dragMode
this$0
JDesktopPane this$0
defaultCloseOperation
int defaultCloseOperation
rootPane
JRootPane rootPane
- See Also:
JDialog.getRootPane()
,
JDialog.setRootPane(javax.swing.JRootPane)
rootPaneCheckingEnabled
boolean rootPaneCheckingEnabled
- See Also:
JDialog.isRootPaneCheckingEnabled()
,
JDialog.setRootPaneCheckingEnabled(boolean)
accessibleContext
AccessibleContext accessibleContext
this$0
JDialog this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
kit
EditorKit kit
- Current content binding of the editor.
pageProperties
Hashtable pageProperties
typeHandlers
Hashtable typeHandlers
- Table of registered type handlers for this editor.
managingFocus
boolean managingFocus
- Indicates whether we are managing focus.
- See Also:
JEditorPane.processComponentKeyEvent(java.awt.event.KeyEvent)
,
JEditorPane.isManagingFocus()
this$0
JEditorPane this$0
this$0
JEditorPane this$0
this$0
JEditorPane this$0
hyperlinks
JEditorPane.JEditorPaneAccessibleHypertextSupport.LinkVector hyperlinks
linksValid
boolean linksValid
this$1
JEditorPane.JEditorPaneAccessibleHypertextSupport this$1
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
dialogTitle
String dialogTitle
approveButtonText
String approveButtonText
approveButtonToolTipText
String approveButtonToolTipText
approveButtonMnemonic
int approveButtonMnemonic
actionListener
ActionListener actionListener
filters
Vector filters
dialog
JDialog dialog
dialogType
int dialogType
returnValue
int returnValue
accessory
JComponent accessory
fileView
FileView fileView
uiFileView
FileView uiFileView
controlsShown
boolean controlsShown
useFileHiding
boolean useFileHiding
fileSelectionMode
int fileSelectionMode
multiSelectionEnabled
boolean multiSelectionEnabled
useAcceptAllFileFilter
boolean useAcceptAllFileFilter
fileFilter
FileFilter fileFilter
fileSystemView
FileSystemView fileSystemView
currentDirectory
File currentDirectory
selectedFile
File selectedFile
selectedFiles
File[] selectedFiles
accessibleContext
AccessibleContext accessibleContext
this$0
JFileChooser this$0
defaultCloseOperation
int defaultCloseOperation
rootPane
JRootPane rootPane
- The
JRootPane
instance that manages the
contentPane
and optional menuBar
for this frame, as well as the
glassPane
.
- See Also:
JRootPane
,
RootPaneContainer
rootPaneCheckingEnabled
boolean rootPaneCheckingEnabled
- If true then calls to
add
and setLayout
will cause an exception to be thrown. The default is false.
- See Also:
JFrame.isRootPaneCheckingEnabled()
,
JFrame.setRootPaneCheckingEnabled(boolean)
accessibleContext
AccessibleContext accessibleContext
- The accessible context property.
this$0
JFrame this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
rootPane
JRootPane rootPane
- The
JRootPane
instance that manages the
contentPane
and optional menuBar
for this frame, as well as the
glassPane
.
- See Also:
JRootPane
,
RootPaneContainer
rootPaneCheckingEnabled
boolean rootPaneCheckingEnabled
- If true then calls to
add
and setLayout
cause an exception to be thrown.
closable
boolean closable
- The frame can be closed.
isClosed
boolean isClosed
- The frame has been closed.
maximizable
boolean maximizable
- The frame can be expanded to the size of the desktop pane.
isMaximum
boolean isMaximum
- The frame has been expanded to its maximum size.
- See Also:
JInternalFrame.maximizable
iconable
boolean iconable
- The frame can "iconized" (shrunk down and displayed as
an icon-image).
- See Also:
JInternalFrame.JDesktopIcon
isIcon
boolean isIcon
- The frame has been iconized.
- See Also:
JInternalFrame.iconable
resizable
boolean resizable
- The frame's size can be changed.
isSelected
boolean isSelected
- The frame is currently selected.
frameIcon
Icon frameIcon
- The icon shown in the top-left corner of the frame.
title
String title
- The title displayed in the frame's title bar.
desktopIcon
JInternalFrame.JDesktopIcon desktopIcon
- The icon that is displayed when the frame is iconized.
- See Also:
JInternalFrame.iconable
opened
boolean opened
normalBounds
Rectangle normalBounds
defaultCloseOperation
int defaultCloseOperation
lastFocusOwner
Component lastFocusOwner
isDragging
boolean isDragging
danger
boolean danger
this$0
JInternalFrame this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in JComponent
for more
information about serialization in Swing.
internalFrame
JInternalFrame internalFrame
this$0
JInternalFrame.JDesktopIcon this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
mnemonic
int mnemonic
text
String text
defaultIcon
Icon defaultIcon
disabledIcon
Icon disabledIcon
disabledIconSet
boolean disabledIconSet
verticalAlignment
int verticalAlignment
horizontalAlignment
int horizontalAlignment
verticalTextPosition
int verticalTextPosition
horizontalTextPosition
int horizontalTextPosition
iconTextGap
int iconTextGap
labelFor
Component labelFor
accessibleIcon
AccessibleIcon accessibleIcon
this$0
JLabel this$0
componentToLayer
Hashtable componentToLayer
optimizedDrawingPossible
boolean optimizedDrawingPossible
this$0
JLayeredPane this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Description copied from class:
JComponent
- Before writing a JComponent to an ObjectOutputStream we temporarily
uninstall its UI. This is tricky to do because we want to uninstall
the UI before any of the JComponent's children (or its LayoutManager etc.)
are written, and we don't want to restore the UI until the most derived
JComponent subclass has been been stored.
fixedCellWidth
int fixedCellWidth
fixedCellHeight
int fixedCellHeight
horizontalScrollIncrement
int horizontalScrollIncrement
prototypeCellValue
Object prototypeCellValue
visibleRowCount
int visibleRowCount
selectionForeground
Color selectionForeground
selectionBackground
Color selectionBackground
selectionModel
ListSelectionModel selectionModel
dataModel
ListModel dataModel
cellRenderer
ListCellRenderer cellRenderer
selectionListener
ListSelectionListener selectionListener
this$0
JList this$0
leadSelectionIndex
int leadSelectionIndex
this$0
JList this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
popupMenu
JPopupMenu popupMenu
menuChangeListener
ChangeListener menuChangeListener
menuEvent
MenuEvent menuEvent
delay
int delay
receivedKeyPressed
boolean receivedKeyPressed
- Set to true when a KEY_PRESSED event is received and the menu is
selected, and false when a KEY_RELEASED (or focus lost) is received.
If processKeyEvent is invoked with a KEY_TYPED or KEY_RELEASED event,
and this is false, a MenuKeyEvent is NOT created. This is needed to
avoid activating a menuitem when the menu and menuitem share the
same mnemonic.
popupListener
JMenu.WinListener popupListener
- The window-closing listener for the popup.
- See Also:
JMenu.WinListener
this$0
JMenu this$0
this$0
JMenu this$0
isSelected
boolean isSelected
this$0
JMenu this$0
popupMenu
JPopupMenu popupMenu
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- See JComponent.readObject() for information about serialization
in Swing.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Description copied from class:
JComponent
- Before writing a JComponent to an ObjectOutputStream we temporarily
uninstall its UI. This is tricky to do because we want to uninstall
the UI before any of the JComponent's children (or its LayoutManager etc.)
are written, and we don't want to restore the UI until the most derived
JComponent subclass has been been stored.
paintBorder
boolean paintBorder
margin
Insets margin
this$0
JMenuBar this$0
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- See JComponent.readObject() for information about serialization
in Swing.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Description copied from class:
JComponent
- Before writing a JComponent to an ObjectOutputStream we temporarily
uninstall its UI. This is tricky to do because we want to uninstall
the UI before any of the JComponent's children (or its LayoutManager etc.)
are written, and we don't want to restore the UI until the most derived
JComponent subclass has been been stored.
accelerator
KeyStroke accelerator
this$0
JMenuItem this$0
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Description copied from class:
JComponent
- We use the ObjectInputStream "registerValidation" callback to
update the UI for the entire tree of components after they've
all been read in.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Description copied from class:
JComponent
- Before writing a JComponent to an ObjectOutputStream we temporarily
uninstall its UI. This is tricky to do because we want to uninstall
the UI before any of the JComponent's children (or its LayoutManager etc.)
are written, and we don't want to restore the UI until the most derived
JComponent subclass has been been stored.
messageType
int messageType
- Message type.
optionType
int optionType
- Option type, one of DEFAULT_OPTION, YES_NO_OPTION,
YES_NO_CANCEL_OPTION or OK_CANCEL_OPTION.
wantsInput
boolean wantsInput
- If true, a UI widget will be provided to the user to get input.
this$0
JOptionPane this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
this$0
JPanel this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
echoChar
char echoChar
this$0
JPasswordField this$0
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Description copied from class:
JComponent
- We use the ObjectInputStream "registerValidation" callback to
update the UI for the entire tree of components after they've
all been read in.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Description copied from class:
JComponent
- Before writing a JComponent to an ObjectOutputStream we temporarily
uninstall its UI. This is tricky to do because we want to uninstall
the UI before any of the JComponent's children (or its LayoutManager etc.)
are written, and we don't want to restore the UI until the most derived
JComponent subclass has been been stored.
desiredLocationX
int desiredLocationX
desiredLocationY
int desiredLocationY
label
String label
paintBorder
boolean paintBorder
margin
Insets margin
lightWeightPopupEnabled
boolean lightWeightPopupEnabled
selectionModel
SingleSelectionModel selectionModel
this$0
JPopupMenu this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
orientation
int orientation
- The orientation to display the progress bar.
The default is HORIZONTAL.
paintBorder
boolean paintBorder
- Whether to display the border around the progress bar.
The default is true.
model
BoundedRangeModel model
- The data structure that holds the various values for the progress bar.
progressString
String progressString
- A optional String that can be displayed on the progress bar.
The default is null. Setting this to a non-null value does not
imply that the String will be displayed.
paintString
boolean paintString
- Whether to textually display a String on the progress bar.
The default is false. Setting this to true will cause a textual
display of the progress to de rendered on the progress bar. If
the progressString is null, the percentage done to be displayed
on the progress bar. If the progressString is non-null, it is
rendered on the progress bar.
changeListener
ChangeListener changeListener
this$0
JProgressBar this$0
this$0
JProgressBar this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
this$0
JRadioButton this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
this$0
JRadioButtonMenuItem this$0
focusOwner
JComponent focusOwner
- The subcomponent that currently has focus, or null if no subcomponent
currently has focus
previousFocusOwner
JComponent previousFocusOwner
menuBar
JMenuBar menuBar
- The menu bar.
contentPane
Container contentPane
- The content pane.
layeredPane
JLayeredPane layeredPane
- The layered pane that manages the menu bar and content pane.
glassPane
Component glassPane
- The glass pane that overlays the menu bar and content pane,
so it can intercept mouse movements and such.
defaultButton
JButton defaultButton
- The button that gets activated when the pane has the focus and
a UI-specific action like pressing the Enter key occurs.
defaultPressAction
JRootPane.DefaultAction defaultPressAction
- Deprecated. As of Java 2 platform v1.3.
- As of Java 2 platform v1.3 this unusable field is no longer used.
To override the default button you should replace the Action
in the JRootPane's ActionMap. Please refer to
the key bindings specification for further details.
- See Also:
JRootPane.defaultButton
defaultReleaseAction
JRootPane.DefaultAction defaultReleaseAction
- Deprecated. As of Java 2 platform v1.3.
- As of Java 2 platform v1.3 this unusable field is no longer used.
To override the default button you should replace the Action
in the JRootPane's ActionMap. Please refer to
the key bindings specification for further details.
- See Also:
JRootPane.defaultButton
this$0
JRootPane this$0
owner
JButton owner
root
JRootPane root
press
boolean press
this$0
JRootPane this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
fwdAdjustmentEvents
ChangeListener fwdAdjustmentEvents
- All changes from the model are treated as though the user moved
the scrollbar knob.
model
BoundedRangeModel model
- The model that represents the scrollbar's minimum, maximum, extent
(aka "visibleAmount") and current value.
- See Also:
JScrollBar.setModel(javax.swing.BoundedRangeModel)
orientation
int orientation
- See Also:
JScrollBar.setOrientation(int)
unitIncrement
int unitIncrement
- See Also:
JScrollBar.setUnitIncrement(int)
blockIncrement
int blockIncrement
- See Also:
JScrollBar.setBlockIncrement(int)
this$0
JScrollBar this$0
this$0
JScrollBar this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
viewportBorder
Border viewportBorder
verticalScrollBarPolicy
int verticalScrollBarPolicy
- The display policy for the vertical scrollbar.
The default is
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED
.
- See Also:
JScrollPane.setVerticalScrollBarPolicy(int)
horizontalScrollBarPolicy
int horizontalScrollBarPolicy
- The display policy for the horizontal scrollbar.
The default is
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED
.
- See Also:
JScrollPane.setHorizontalScrollBarPolicy(int)
viewport
JViewport viewport
- The scrollpane's viewport child. Default is an empty
JViewport
.
- See Also:
JScrollPane.setViewport(javax.swing.JViewport)
verticalScrollBar
JScrollBar verticalScrollBar
- The scrollpane's vertical scrollbar child.
Default is a
JScrollBar
.
- See Also:
JScrollPane.setVerticalScrollBar(javax.swing.JScrollBar)
horizontalScrollBar
JScrollBar horizontalScrollBar
- The scrollpane's horizontal scrollbar child.
Default is a
JScrollBar
.
- See Also:
JScrollPane.setHorizontalScrollBar(javax.swing.JScrollBar)
rowHeader
JViewport rowHeader
- The row header child. Default is
null
.
- See Also:
JScrollPane.setRowHeader(javax.swing.JViewport)
columnHeader
JViewport columnHeader
- The column header child. Default is
null
.
- See Also:
JScrollPane.setColumnHeader(javax.swing.JViewport)
lowerLeft
Component lowerLeft
- The component to display in the lower left corner.
Default is
null
.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
lowerRight
Component lowerRight
- The component to display in the lower right corner.
Default is
null
.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
upperLeft
Component upperLeft
- The component to display in the upper left corner.
Default is
null
.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
upperRight
Component upperRight
- The component to display in the upper right corner.
Default is
null
.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
this$0
JScrollPane this$0
viewPort
JViewport viewPort
this$0
JScrollPane this$0
unitIncrementSet
boolean unitIncrementSet
- Set to true when the unit increment has been explicitly set.
If this is false the viewport's view is obtained and if it
is an instance of
Scrollable
the unit increment
from it is used.
blockIncrementSet
boolean blockIncrementSet
- Set to true when the block increment has been explicitly set.
If this is false the viewport's view is obtained and if it
is an instance of
Scrollable
the block increment
from it is used.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
orientation
int orientation
this$0
JSeparator this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
paintTicks
boolean paintTicks
paintTrack
boolean paintTrack
paintLabels
boolean paintLabels
isInverted
boolean isInverted
sliderModel
BoundedRangeModel sliderModel
- The data model that handles the numeric maximum value,
minimum value, and current-position value for the slider.
majorTickSpacing
int majorTickSpacing
- The number of values between the major tick marks -- the
larger marks that break up the minor tick marks.
minorTickSpacing
int minorTickSpacing
- The number of values between the minor tick marks -- the
smaller marks that occur between the major tick marks.
- See Also:
JSlider.setMinorTickSpacing(int)
snapToTicks
boolean snapToTicks
- If true, the knob (and the data value it represents)
resolve to the closest tick mark next to where the user
positioned the knob. The default is false.
- See Also:
JSlider.setSnapToTicks(boolean)
snapToValue
boolean snapToValue
- If true, the knob (and the data value it represents)
resolve to the closest slider value next to where the user
positioned the knob.
orientation
int orientation
- See Also:
JSlider.setOrientation(int)
labelTable
Dictionary labelTable
changeListener
ChangeListener changeListener
- The changeListener (no suffix) is the listener we add to the
Sliders model. By default this listener just forwards events
to ChangeListeners (if any) added directly to the slider.
- See Also:
JSlider.addChangeListener(javax.swing.event.ChangeListener)
,
JSlider.createChangeListener()
this$1
javax.swing.JSlider.1$SmartHashtable this$1
this$0
JSlider this$0
this$0
JSlider this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
orientation
int orientation
- How the views are split.
continuousLayout
boolean continuousLayout
- Whether or not the views are continuously redisplayed while
resizing.
leftComponent
Component leftComponent
- The left or top component.
rightComponent
Component rightComponent
- The right or bottom component.
dividerSize
int dividerSize
- Size of the divider.
oneTouchExpandable
boolean oneTouchExpandable
- Is a little widget provided to quickly expand/collapse the
split pane?
lastDividerLocation
int lastDividerLocation
- Previous location of the split pane.
resizeWeight
double resizeWeight
- How to distribute extra space.
dividerLocation
int dividerLocation
- Location of the divider, at least the value that was set, the UI may
have a different value.
this$0
JSplitPane this$0
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
tabPlacement
int tabPlacement
- Where the tabs are placed.
- See Also:
JTabbedPane.setTabPlacement(int)
model
SingleSelectionModel model
- The default selection model
haveRegistered
boolean haveRegistered
changeListener
ChangeListener changeListener
- The changeListener is the listener we add to the
model.
pages
Vector pages
this$0
JTabbedPane this$0
this$0
JTabbedPane this$0
this$0
JTabbedPane this$0
title
String title
background
Color background
foreground
Color foreground
icon
Icon icon
disabledIcon
Icon disabledIcon
parent
JTabbedPane parent
component
Component component
tip
String tip
enabled
boolean enabled
needsUIUpdate
boolean needsUIUpdate
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Description copied from class:
JComponent
- We use the ObjectInputStream "registerValidation" callback to
update the UI for the entire tree of components after they've
all been read in.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
dataModel
TableModel dataModel
- The
TableModel
of the table.
columnModel
TableColumnModel columnModel
- The
TableColumnModel
of the table.
selectionModel
ListSelectionModel selectionModel
- The
ListSelectionModel
of the table, used to keep track of row selections.
tableHeader
JTableHeader tableHeader
- The
TableHeader
working with the table.
rowHeight
int rowHeight
- The height in pixels of each row in the table.
rowMargin
int rowMargin
- The height in pixels of the margin between the cells in each row.
gridColor
Color gridColor
- The color of the grid.
showHorizontalLines
boolean showHorizontalLines
- The table draws horizontal lines between cells if
showHorizontalLines
is true.
showVerticalLines
boolean showVerticalLines
- The table draws vertical lines between cells if
showVerticalLines
is true.
autoResizeMode
int autoResizeMode
- Determines if the table automatically resizes the
width of the table's columns to take up the entire width of the
table, and how it does the resizing.
autoCreateColumnsFromModel
boolean autoCreateColumnsFromModel
- The table will query the
TableModel
to build the default
set of columns if this is true.
preferredViewportSize
Dimension preferredViewportSize
- Used by the
Scrollable
interface to determine the initial visible area.
rowSelectionAllowed
boolean rowSelectionAllowed
- True if row selection is allowed in this table.
cellSelectionEnabled
boolean cellSelectionEnabled
- Obsolete as of Java 2 platform v1.3. Please use the
rowSelectionAllowed
property and the
columnSelectionAllowed
property of the
columnModel
instead. Or use the
method getCellSelectionEnabled
.
selectionForeground
Color selectionForeground
- The foreground color of selected cells.
selectionBackground
Color selectionBackground
- The background color of selected cells.
reentrantCall
boolean reentrantCall
rowModel
SizeSequence rowModel
this$0
JTable this$0
lastSelectedRow
int lastSelectedRow
lastSelectedCol
int lastSelectedCol
caption
Accessible caption
summary
Accessible summary
rowDescription
Accessible[] rowDescription
columnDescription
Accessible[] columnDescription
formatter
DateFormat formatter
formatter
NumberFormat formatter
argTypes
Class[] argTypes
constructor
Constructor constructor
value
Object value
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
rows
int rows
columns
int columns
columnWidth
int columnWidth
rowHeight
int rowHeight
wrap
boolean wrap
word
boolean word
this$0
JTextArea this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
action
Action action
actionPropertyChangeListener
PropertyChangeListener actionPropertyChangeListener
visibility
BoundedRangeModel visibility
horizontalAlignment
int horizontalAlignment
columns
int columns
columnWidth
int columnWidth
command
String command
this$0
JTextField this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See readObject() and writeObject() in JComponent for more
information about serialization in Swing.
this$0
JToggleButton this$0
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
paintBorder
boolean paintBorder
margin
Insets margin
floatable
boolean floatable
orientation
int orientation
this$0
JToolBar this$0
separatorSize
Dimension separatorSize
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in JComponent
for more
information about serialization in Swing.
tipText
String tipText
component
JComponent component
this$0
JToolTip this$0
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Description copied from class:
JComponent
- We use the ObjectInputStream "registerValidation" callback to
update the UI for the entire tree of components after they've
all been read in.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Description copied from class:
JComponent
- Before writing a JComponent to an ObjectOutputStream we temporarily
uninstall its UI. This is tricky to do because we want to uninstall
the UI before any of the JComponent's children (or its LayoutManager etc.)
are written, and we don't want to restore the UI until the most derived
JComponent subclass has been been stored.
rootVisible
boolean rootVisible
- True if the root node is displayed, false if its children are
the highest visible nodes.
rowHeight
int rowHeight
- Height to use for each display row. If this is <= 0 the renderer
determines the height for each row.
showsRootHandles
boolean showsRootHandles
- True if handles are displayed at the topmost level of the tree.
A handle is a small icon that displays adjacent to the node which
allows the user to click once to expand or collapse the node. A
common interface shows a plus sign (+) for a node which can be
expanded and a minus sign (-) for a node which can be collapsed.
Handles are always shown for nodes below the topmost level.
If the rootVisible
setting specifies that the root
node is to be displayed, then that is the only node at the topmost
level. If the root node is not displayed, then all of its
children are at the topmost level of the tree. Handles are
always displayed for nodes other than the topmost.
If the root node isn't visible, it is generally a good to make
this value true. Otherwise, the tree looks exactly like a list,
and users may not know that the "list entries" are actually
tree nodes.
- See Also:
JTree.rootVisible
editable
boolean editable
- Is the tree editable? Default is false.
largeModel
boolean largeModel
- Is this tree a large model? This is a code-optimization setting.
A large model can be used when the cell height is the same for all
nodes. The UI will then cache very little information and instead
continually message the model. Without a large model the UI caches
most of the information, resulting in fewer method calls to the model.
This value is only a suggestion to the UI. Not all UIs will
take advantage of it. Default value is false.
visibleRowCount
int visibleRowCount
- Number of rows to make visible at one time. This value is used for
the
Scrollable
interface. It determines the preferred
size of the display area.
invokesStopCellEditing
boolean invokesStopCellEditing
- If true, when editing is to be stopped by way of selection changing,
data in tree changing or other means
stopCellEditing
is invoked, and changes are saved. If false,
cancelCellEditing
is invoked, and changes
are discarded. Default is false.
scrollsOnExpand
boolean scrollsOnExpand
- If true, when a node is expanded, as many of the descendants are
scrolled to be visible.
toggleClickCount
int toggleClickCount
- Number of mouse clicks before a node is expanded.
leadPath
TreePath leadPath
- Lead selection path, may not be
null
.
anchorPath
TreePath anchorPath
- Anchor path.
expandsSelectedPaths
boolean expandsSelectedPaths
- True if paths in the selection should be expanded.
settingUI
boolean settingUI
- This is set to true for the life of the setUI call.
this$0
JTree this$0
leadSelectionPath
TreePath leadSelectionPath
leadSelectionAccessible
Accessible leadSelectionAccessible
hasChildren
boolean hasChildren
- Does the this
JTree
have children?
This property is currently not implemented.
childValue
Object childValue
- Value to create children with.
loadedChildren
boolean loadedChildren
- Have the children been loaded yet?
this$0
JTree this$0
isViewSizeSet
boolean isViewSizeSet
- True when the viewport dimensions have been determined.
The default is false.
lastPaintPosition
Point lastPaintPosition
- The last
viewPosition
that we've painted, so we know how
much of the backing store image is valid.
backingStore
boolean backingStore
- Deprecated. As of Java 2 platform v1.3
- True when this viewport is maintaining an offscreen image of its
contents, so that some scrolling can take place using fast "bit-blit"
operations instead of by accessing the view object to construct the
display. The default is false.
- See Also:
JViewport.setScrollMode(int)
scrollUnderway
boolean scrollUnderway
- The
scrollUnderway
flag is used for components like
JList
. When the downarrow key is pressed on a
JList
and the selected
cell is the last in the list, the scrollpane
autoscrolls.
Here, the old selected cell needs repainting and so we need
a flag to make the viewport do the optimized painting
only when there is an explicit call to
setViewPosition(Point)
.
When setBounds
is called through other routes,
the flag is off and the view repaints normally. Another approach
would be to remove this from the JViewport
class and have the JList
manage this case by using
setBackingStoreEnabled
. The default is false.
viewListener
ComponentListener viewListener
scrollMode
int scrollMode
- See Also:
JViewport.setScrollMode(int)
- Since:
- 1.3
this$0
JViewport this$0
this$0
JViewport this$0
rootPane
JRootPane rootPane
- The
JRootPane
instance that manages the
contentPane
and optional menuBar
for this frame, as well as the
glassPane
.
- See Also:
JWindow.getRootPane()
,
JWindow.setRootPane(javax.swing.JRootPane)
rootPaneCheckingEnabled
boolean rootPaneCheckingEnabled
- If true then calls to
add
and setLayout
will cause an exception to be thrown.
- See Also:
JWindow.isRootPaneCheckingEnabled()
,
JWindow.setRootPaneCheckingEnabled(boolean)
accessibleContext
AccessibleContext accessibleContext
- The accessible context property.
this$0
JWindow this$0
keyChar
char keyChar
keyCode
int keyCode
modifiers
int modifiers
onKeyRelease
boolean onKeyRelease
tables
UIDefaults[] tables
target
Container target
xChildren
SizeRequirements[] xChildren
yChildren
SizeRequirements[] yChildren
xTotal
SizeRequirements xTotal
yTotal
SizeRequirements yTotal
this$0
ProgressMonitor this$0
viewport
JViewport viewport
- The scrollpanes viewport child. Default is an empty JViewport.
- See Also:
JScrollPane.setViewport(javax.swing.JViewport)
vsb
JScrollBar vsb
- The scrollpanes vertical scrollbar child. Default is a JScrollBar.
- See Also:
JScrollPane.setVerticalScrollBar(javax.swing.JScrollBar)
hsb
JScrollBar hsb
- The scrollpanes horizontal scrollbar child. Default is a JScrollBar.
- See Also:
JScrollPane.setHorizontalScrollBar(javax.swing.JScrollBar)
rowHead
JViewport rowHead
- The row header child. Default is null.
- See Also:
JScrollPane.setRowHeader(javax.swing.JViewport)
colHead
JViewport colHead
- The column header child. Default is null.
- See Also:
JScrollPane.setColumnHeader(javax.swing.JViewport)
lowerLeft
Component lowerLeft
- The component to display in the lower left corner. Default is null.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
lowerRight
Component lowerRight
- The component to display in the lower right corner. Default is null.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
upperLeft
Component upperLeft
- The component to display in the upper left corner. Default is null.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
upperRight
Component upperRight
- The component to display in the upper right corner. Default is null.
- See Also:
JScrollPane.setCorner(java.lang.String, java.awt.Component)
vsbPolicy
int vsbPolicy
- The display policy for the vertical scrollbar.
The default is JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED.
This field is obsolete, please use the JScrollPane field instead.
- See Also:
JScrollPane.setVerticalScrollBarPolicy(int)
hsbPolicy
int hsbPolicy
- The display policy for the horizontal scrollbar.
The default is JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED.
This field is obsolete, please use the JScrollPane field instead.
- See Also:
JScrollPane.setHorizontalScrollBarPolicy(int)
minimum
int minimum
- The minimum size required.
For a component
comp
, this should be equal to either
comp.getMinimumSize().width
or
comp.getMinimumSize().height
.
preferred
int preferred
- The preferred (natural) size.
For a component
comp
, this should be equal to either
comp.getPreferredSize().width
or
comp.getPreferredSize().height
.
maximum
int maximum
- The maximum size allowed.
For a component
comp
, this should be equal to either
comp.getMaximumSize().width
or
comp.getMaximumSize().height
.
alignment
float alignment
- The alignment, specified as a value between 0.0 and 1.0,
inclusive.
To specify centering, the alignment should be 0.5.
runnableEvents
Vector runnableEvents
isRegistered
boolean isRegistered
doRun
Runnable doRun
lock
Object lock
exception
Exception exception
listenerList
EventListenerList listenerList
eventQueued
boolean eventQueued
initialDelay
int initialDelay
delay
int delay
repeats
boolean repeats
coalesce
boolean coalesce
doPostEvent
Runnable doPostEvent
expirationTime
long expirationTime
nextTimer
Timer nextTimer
running
boolean running
this$0
Timer this$0
changeSupport
SwingPropertyChangeSupport changeSupport
Package javax.swing.border |
bevelType
int bevelType
highlightOuter
Color highlightOuter
highlightInner
Color highlightInner
shadowInner
Color shadowInner
shadowOuter
Color shadowOuter
outsideBorder
Border outsideBorder
insideBorder
Border insideBorder
left
int left
right
int right
top
int top
bottom
int bottom
etchType
int etchType
highlight
Color highlight
shadow
Color shadow
thickness
int thickness
lineColor
Color lineColor
roundedCorners
boolean roundedCorners
color
Color color
tileIcon
Icon tileIcon
title
String title
border
Border border
titlePosition
int titlePosition
titleJustification
int titleJustification
titleFont
Font titleFont
titleColor
Color titleColor
textLoc
Point textLoc
Package javax.swing.colorchooser |
chooser
JColorChooser chooser
colorListener
ChangeListener colorListener
dirty
boolean dirty
this$0
AbstractColorChooserPanel this$0
listenerList
EventListenerList listenerList
selectedColor
Color selectedColor
hsb
float[] hsb
palette
DefaultHSBChooserPanel.AbstractHSBImage palette
sliderPalette
DefaultHSBChooserPanel.AbstractHSBImage sliderPalette
slider
JSlider slider
hField
JIntegerTextField hField
sField
JIntegerTextField sField
bField
JIntegerTextField bField
redField
JTextField redField
greenField
JTextField greenField
blueField
JTextField blueField
isAdjusting
boolean isAdjusting
isUpdatingOften
boolean isUpdatingOften
paletteSelection
Point paletteSelection
paletteLabel
JLabel paletteLabel
sliderPaletteLabel
JLabel sliderPaletteLabel
hRadio
JRadioButton hRadio
sRadio
JRadioButton sRadio
bRadio
JRadioButton bRadio
paletteImage
Image paletteImage
sliderImage
Image sliderImage
sliderType
int sliderType
squareSize
int squareSize
squareGap
int squareGap
innerGap
int innerGap
textGap
int textGap
font
Font font
sampleText
String sampleText
swatchWidth
int swatchWidth
oldColor
Color oldColor
redSlider
JSlider redSlider
greenSlider
JSlider greenSlider
blueSlider
JSlider blueSlider
redField
JIntegerTextField redField
blueField
JIntegerTextField blueField
greenField
JIntegerTextField greenField
minValue
int minValue
maxValue
int maxValue
isAdjusting
boolean isAdjusting
this$0
DefaultRGBChooserPanel this$0
swatchPanel
SwatchPanel swatchPanel
recentSwatchPanel
RecentSwatchPanel recentSwatchPanel
mainSwatchListener
MouseListener mainSwatchListener
recentSwatchListener
MouseListener recentSwatchListener
this$0
DefaultSwatchChooserPanel this$0
this$0
DefaultSwatchChooserPanel this$0
this$0
JIntegerTextField this$0
delta
int delta
min
int min
max
int max
currentVal
int currentVal
checkingEnabled
boolean checkingEnabled
rows
int rows
columns
int columns
xGap
int xGap
yGap
int yGap
componentCount
int componentCount
layoutGrid
Component[][] layoutGrid
colors
Color[] colors
swatchSize
Dimension swatchSize
numSwatches
Dimension numSwatches
gap
Dimension gap
Package javax.swing.event |
ancestor
Container ancestor
ancestorParent
Container ancestorParent
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
type
HyperlinkEvent.EventType type
u
URL u
desc
String desc
type
int type
index0
int index0
index1
int index1
firstIndex
int firstIndex
lastIndex
int lastIndex
isAdjusting
boolean isAdjusting
path
MenuElement[] path
manager
MenuSelectionManager manager
path
MenuElement[] path
manager
MenuSelectionManager manager
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
children
Hashtable children
source
Object source
fromIndex
int fromIndex
- The index of the column from where it was moved or removed
toIndex
int toIndex
- The index of the column to where it was moved or added from
type
int type
firstRow
int firstRow
lastRow
int lastRow
column
int column
path
TreePath path
- Path to the value this event represents.
path
TreePath path
- Path to the parent of the nodes that have changed.
childIndices
int[] childIndices
- Indices identifying the position of where the children were.
children
Object[] children
- Children that have been removed.
paths
TreePath[] paths
- Paths this event represents.
areNew
boolean[] areNew
- For each path identifies if that is path is in fact new.
oldLeadSelectionPath
TreePath oldLeadSelectionPath
- leadSelectionPath before the paths changed, may be null.
newLeadSelectionPath
TreePath newLeadSelectionPath
- leadSelectionPath after the paths changed, may be null.
myEdit
UndoableEdit myEdit
Package javax.swing.filechooser |
delegate
Border delegate
delegate
Icon delegate
Package javax.swing.plaf.basic |
direction
int direction
shadow
Color shadow
darkShadow
Color darkShadow
highlight
Color highlight
lightHighlight
Color lightHighlight
shadow
Color shadow
darkShadow
Color darkShadow
highlight
Color highlight
lightHighlight
Color lightHighlight
shadow
Color shadow
highlight
Color highlight
b
AbstractButton b
b
AbstractButton b
keyCode
int keyCode
comboBox
JComboBox comboBox
list
JList list
scroller
JScrollPane scroller
valueIsAdjusting
boolean valueIsAdjusting
mouseMotionListener
MouseMotionListener mouseMotionListener
mouseListener
MouseListener mouseListener
keyListener
KeyListener keyListener
listSelectionListener
ListSelectionListener listSelectionListener
listDataListener
ListDataListener listDataListener
listMouseListener
MouseListener listMouseListener
listMouseMotionListener
MouseMotionListener listMouseMotionListener
propertyChangeListener
PropertyChangeListener propertyChangeListener
itemListener
ItemListener itemListener
autoscrollTimer
Timer autoscrollTimer
hasEntered
boolean hasEntered
isAutoScrolling
boolean isAutoScrolling
scrollDirection
int scrollDirection
lightNav
boolean lightNav
this$0
BasicDesktopPaneUI this$0
this$0
BasicDesktopPaneUI this$0
this$0
BasicDesktopPaneUI this$0
this$0
BasicDesktopPaneUI this$0
command
String command
this$0
BasicDesktopPaneUI this$0
this$0
BasicDesktopPaneUI this$0
this$0
BasicDesktopPaneUI this$0
filechooser
JFileChooser filechooser
fileCache
Vector fileCache
loadThread
BasicDirectoryModel.LoadFilesThread loadThread
files
Vector files
directories
Vector directories
fetchID
int fetchID
this$0
BasicFileChooserUI this$0
this$0
BasicFileChooserUI this$0
this$0
BasicFileChooserUI this$0
this$0
BasicFileChooserUI this$0
this$0
BasicFileChooserUI this$0
this$0
BasicFileChooserUI this$0
host
JComponent host
- The host, that is where we are rendering.
height
int height
width
int width
menuBar
JMenuBar menuBar
iconButton
JButton iconButton
maxButton
JButton maxButton
closeButton
JButton closeButton
windowMenu
JMenu windowMenu
frame
JInternalFrame frame
selectedTitleColor
Color selectedTitleColor
selectedTextColor
Color selectedTextColor
notSelectedTitleColor
Color notSelectedTitleColor
notSelectedTextColor
Color notSelectedTextColor
maxIcon
Icon maxIcon
minIcon
Icon minIcon
iconIcon
Icon iconIcon
closeIcon
Icon closeIcon
propertyChangeListener
PropertyChangeListener propertyChangeListener
closeAction
Action closeAction
maximizeAction
Action maximizeAction
iconifyAction
Action iconifyAction
restoreAction
Action restoreAction
moveAction
Action moveAction
sizeAction
Action sizeAction
this$0
BasicInternalFrameTitlePane this$0
this$0
BasicInternalFrameTitlePane this$0
this$0
BasicInternalFrameTitlePane this$0
this$0
BasicInternalFrameTitlePane this$0
this$0
BasicInternalFrameTitlePane this$0
this$0
BasicInternalFrameTitlePane this$0
this$0
BasicInternalFrameTitlePane this$0
show
boolean show
this$0
BasicInternalFrameTitlePane this$0
this$0
BasicInternalFrameTitlePane this$0
amount
int amount
- Amount to offset, subclasses will define what this means.
selectionType
int selectionType
- One of CHANGE_LEAD, CHANGE_SELECTION or EXTEND_SELECTION.
menu
JMenu menu
force
boolean force
this$0
BasicMenuUI this$0
root
JRootPane root
press
boolean press
dir
int dir
block
boolean block
orientation
int orientation
- Direction to scroll.
direction
int direction
- 1 indicates scroll down, -1 up.
block
boolean block
- True indicates a block scroll, otherwise a unit scroll.
this$0
BasicSliderUI this$0
dir
int dir
block
boolean block
slider
JSlider slider
dir
int dir
block
boolean block
dragger
BasicSplitPaneDivider.DragController dragger
- Handles mouse dragging message to do the actual dragging.
splitPaneUI
BasicSplitPaneUI splitPaneUI
- UI this instance was created from.
dividerSize
int dividerSize
- Size of the divider.
hiddenDivider
Component hiddenDivider
- Divider that is used for noncontinuous layout mode.
splitPane
JSplitPane splitPane
- JSplitPane the receiver is contained in.
mouseHandler
BasicSplitPaneDivider.MouseHandler mouseHandler
- Handles mouse events from both this class, and the split pane.
Mouse events are handled for the splitpane since you want to be able
to drag when clicking on the border of the divider, which is not
drawn by the divider.
orientation
int orientation
- Orientation of the JSplitPane.
leftButton
JButton leftButton
- Button for quickly toggling the left component.
rightButton
JButton rightButton
- Button for quickly toggling the right component.
border
Border border
- Border.
dx
int dx
dy
int dy
toggle
boolean toggle
extend
boolean extend
inSelection
boolean inSelection
anchorRow
int anchorRow
anchorColumn
int anchorColumn
leadRow
int leadRow
leadColumn
int leadColumn
forwards
boolean forwards
vertically
boolean vertically
toLimit
boolean toLimit
this$0
BasicTextUI this$0
this$0
BasicToolBarUI this$0
borderColor
Color borderColor
orientation
int orientation
offset
Point offset
component
JComponent component
direction
int direction
amount
int amount
this$0
BasicTreeUI this$0
changeAnchor
boolean changeAnchor
this$0
BasicTreeUI this$0
this$0
BasicTreeUI this$0
this$0
BasicTreeUI this$0
this$0
BasicTreeUI this$0
direction
int direction
addToSelection
boolean addToSelection
- Set to true if append to selection.
changeSelection
boolean changeSelection
this$0
BasicTreeUI this$0
direction
int direction
- Specifies the direction to adjust the selection by.
addToSelection
boolean addToSelection
- If true the new item is added to the selection, if false the
selection is reset.
changeSelection
boolean changeSelection
this$0
BasicTreeUI this$0
direction
int direction
- Specifies the direction to adjust the selection by.
addToSelection
boolean addToSelection
- True indicates should set selection from anchor path.
changeSelection
boolean changeSelection
this$0
BasicTreeUI this$0
direction
int direction
- Specifies the direction to adjust the selection by.
addToSelection
boolean addToSelection
changeSelection
boolean changeSelection
this$0
BasicTreeUI this$0
selectAll
boolean selectAll
this$0
BasicTreeUI this$0
this$0
BasicTreeUI this$0
direction
int direction
- Determines direction to traverse, 1 means expand, -1 means
collapse.
changeSelection
boolean changeSelection
- True if the selection is reset, false means only the lead path
changes.
Package javax.swing.plaf.metal |
titleHeight
int titleHeight
titleHeight
int titleHeight
editorBorderInsets
Insets editorBorderInsets
bumps
MetalBumps bumps
comboBox
JComboBox comboBox
listBox
JList listBox
rendererPane
CellRendererPane rendererPane
comboIcon
Icon comboIcon
iconOnly
boolean iconOnly
this$0
MetalComboBoxEditor this$0
this$0
MetalComboBoxUI this$0
this$0
MetalFileChooserUI this$0
this$0
MetalFileChooserUI this$0
directories
Vector directories
topIndex
int topIndex
pathCount
int pathCount
selectedDirectory
File selectedDirectory
this$0
MetalFileChooserUI this$0
ii
MetalFileChooserUI.IndentIcon ii
this$0
MetalFileChooserUI this$0
this$0
MetalFileChooserUI this$0
filters
FileFilter[] filters
this$0
MetalFileChooserUI this$0
iconSize
int iconSize
iconSize
int iconSize
iconSize
int iconSize
iconSize
int iconSize
iconSize
int iconSize
isLight
boolean isLight
isPalette
boolean isPalette
paletteCloseIcon
Icon paletteCloseIcon
paletteTitleHeight
int paletteTitleHeight
buttonsWidth
int buttonsWidth
activeBumps
MetalBumps activeBumps
inactiveBumps
MetalBumps inactiveBumps
paletteBumps
MetalBumps paletteBumps
isFreeStanding
boolean isFreeStanding
buttonWidth
int buttonWidth
bumps
MetalBumps bumps
focusBumps
MetalBumps focusBumps
inset
int inset
controlColor
Color controlColor
primaryControlColor
Color primaryControlColor
Package javax.swing.plaf.multi |
Package javax.swing.table |
listenerList
EventListenerList listenerList
- List of listeners
unselectedForeground
Color unselectedForeground
unselectedBackground
Color unselectedBackground
tableColumns
Vector tableColumns
- Array of TableColumn objects in this model
selectionModel
ListSelectionModel selectionModel
- Model for keeping track of column selections
columnMargin
int columnMargin
- Width margin between each column
listenerList
EventListenerList listenerList
- List of TableColumnModelListener
columnSelectionAllowed
boolean columnSelectionAllowed
- Column selection allowed in this column model
totalColumnWidth
int totalColumnWidth
- A local cache of the combined width of all columns
dataVector
Vector dataVector
- The
Vector
of Vectors
of
Object
values.
columnIdentifiers
Vector columnIdentifiers
- The
Vector
of column identifiers.
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- See
readObject
and writeObject
in
JComponent
for more
information about serialization in Swing.
table
JTable table
- The table for which this object is the header;
the default is
null
.
columnModel
TableColumnModel columnModel
- The
TableColumnModel
of the table header.
reorderingAllowed
boolean reorderingAllowed
- If true, reordering of columns are allowed by the user;
the default is true.
resizingAllowed
boolean resizingAllowed
- If true, resizing of columns are allowed by the user;
the default is true.
updateTableInRealTime
boolean updateTableInRealTime
- Obsolete as of Java 2 platform v1.3. Real time repaints, in response
to column dragging or resizing, are now unconditional.
defaultRenderer
TableCellRenderer defaultRenderer
- The default renderer to be used when a
TableColumn
does not define a headerRenderer
.
this$0
JTableHeader this$0
modelIndex
int modelIndex
- The index of the column in the model which is to be displayed by
this
TableColumn
. As columns are moved around in the
view modelIndex
remains constant.
identifier
Object identifier
- This object is not used internally by the drawing machinery of
the
JTable
; identifiers may be set in the
TableColumn
as as an
optional way to tag and locate table columns. The table package does
not modify or invoke any methods in these identifer objects other
than the equals
method which is used in the
getColumnIndex()
method in the
DefaultTableColumnModel
.
width
int width
- The width of the column.
minWidth
int minWidth
- The minimum width of the column.
preferredWidth
int preferredWidth
- The preferred width of the column.
maxWidth
int maxWidth
- The maximum width of the column.
headerRenderer
TableCellRenderer headerRenderer
- The renderer used to draw the header of the column.
headerValue
Object headerValue
- The header value of the column.
cellRenderer
TableCellRenderer cellRenderer
- The renderer used to draw the data cells of the column.
cellEditor
TableCellEditor cellEditor
- The editor used to edit the data cells of the column.
isResizable
boolean isResizable
- If true, the user is allowed to resize the column; the default is true.
changeSupport
SwingPropertyChangeSupport changeSupport
- If any
PropertyChangeListeners
have been registered, the
changeSupport
field describes them.
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
documentProperties
Dictionary documentProperties
- Storage for document-wide properties.
listenerList
EventListenerList listenerList
- The event listener list for the document.
data
AbstractDocument.Content data
- Where the text is actually stored, and a set of marks
that track change as the document is edited are managed.
context
AbstractDocument.AttributeContext context
- Factory for the attributes. This is the strategy for
attribute compression and control of the lifetime of
a set of attributes as a collection. This may be shared
with other documents.
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
this$0
AbstractDocument this$0
parent
Element parent
this$0
AbstractDocument this$0
this$0
AbstractDocument this$0
this$0
AbstractDocument this$0
children
AbstractDocument.AbstractElement[] children
nchildren
int nchildren
lastIndex
int lastIndex
this$0
AbstractDocument this$0
offset
int offset
length
int length
changeLookup
Hashtable changeLookup
type
DocumentEvent.EventType type
e
Element e
index
int index
removed
Element[] removed
added
Element[] added
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
this$0
AbstractDocument this$0
offs
int offs
charSetSpec
String charSetSpec
charSetKey
boolean charSetKey
this$0
ComponentView this$0
min
Dimension min
pref
Dimension pref
max
Dimension max
yalign
float yalign
xalign
float xalign
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
listenerList
EventListenerList listenerList
- The event listener list.
component
JTextComponent component
async
boolean async
- flag to indicate if async updates should
move the caret.
visible
boolean visible
dot
int dot
mark
int mark
selectionTag
Object selectionTag
selectionVisible
boolean selectionVisible
flasher
Timer flasher
magicCaretPosition
Point magicCaretPosition
dotLTR
boolean dotLTR
markLTR
boolean markLTR
select
boolean select
select
boolean select
select
boolean select
select
boolean select
select
boolean select
select
boolean select
select
boolean select
select
boolean select
select
boolean select
direction
int direction
select
boolean select
select
boolean select
left
boolean left
select
boolean select
select
boolean select
select
boolean select
start
Action start
end
Action end
start
Action start
end
Action end
start
Action start
end
Action end
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
buffer
DefaultStyledDocument.ElementBuffer buffer
newAttributes
AttributeSet newAttributes
copy
AttributeSet copy
isReplacing
boolean isReplacing
element
Element element
this$0
DefaultStyledDocument this$0
root
Element root
this$0
DefaultStyledDocument this$0
element
AbstractDocument.AbstractElement element
- Element to change resolve parent of.
newStyle
Style newStyle
- New style.
oldStyle
AttributeSet oldStyle
- Old style, before setting newStyle.
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
this$0
GapContent this$0
offset
int offset
- Where string was inserted.
length
int length
- Length of string inserted.
string
String string
- The string that was inserted. This will only be valid after an
undo.
posRefs
Vector posRefs
- An array of instances of UndoPosRef for the Positions in the
range that was removed, valid after undo.
this$0
GapContent this$0
offset
int offset
- Where the string was removed from.
length
int length
- Length of string removed.
string
String string
- The string that was removed. This is valid when redo is valid.
posRefs
Vector posRefs
- An array of instances of UndoPosRef for the Positions in the
range that was removed, valid before undo.
array
Object array
- The array of items. The type is determined by the subclass.
g0
int g0
- start of gap in the array
g1
int g1
- end of gap in the array
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
- Description copied from class:
JComponent
- We use the ObjectInputStream "registerValidation" callback to
update the UI for the entire tree of components after they've
all been read in.
model
Document model
- The document model.
caretColor
Color caretColor
selectionColor
Color selectionColor
selectedTextColor
Color selectedTextColor
disabledTextColor
Color disabledTextColor
editable
boolean editable
margin
Insets margin
focusAccelerator
char focusAccelerator
canAccessSystemClipboard
boolean canAccessSystemClipboard
- Indicates if it is safe to access the system clipboard. Once false,
access will never be checked again.
editor
JTextComponent editor
inputMethodRequestsHandler
InputMethodRequests inputMethodRequestsHandler
composedText
AttributedString composedText
composedTextContent
String composedTextContent
composedTextStart
Position composedTextStart
composedTextEnd
Position composedTextEnd
composedTextCaret
JTextComponent.ComposedTextCaret composedTextCaret
needToSendKeyTypedEvent
boolean needToSendKeyTypedEvent
this$0
JTextComponent this$0
caretPos
int caretPos
this$0
JTextComponent this$0
bg
Color bg
this$0
JTextComponent this$0
keymap
Keymap keymap
keymap
Keymap keymap
dragActive
boolean dragActive
dot
int dot
mark
int mark
defaultRoot
AbstractDocument.AbstractElement defaultRoot
added
Vector added
removed
Vector removed
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
data
char[] data
count
int count
this$0
StringContent this$0
offset
int offset
length
int length
string
String string
posRefs
Vector posRefs
this$0
StringContent this$0
offset
int offset
length
int length
string
String string
posRefs
Vector posRefs
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
styles
Style styles
unusedSets
int unusedSets
- Number of immutable sets that are not currently
being used. This helps indicate when the sets need
to be cleaned out of the hashtable they are stored
in.
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
this$0
StyleContext this$0
listenerList
EventListenerList listenerList
- The change listeners for the model.
currentRun
Element currentRun
currentParagraph
Element currentParagraph
inputAttributes
MutableAttributeSet inputAttributes
- This is the set of attributes used to store the
input attributes.
inputAttributeUpdater
StyledEditorKit.AttributeTracker inputAttributeUpdater
- This listener will be attached to the caret of
the text component that the EditorKit gets installed
into. This should keep the input attributes updated
for use by the styled actions.
a
int a
this$0
StyledEditorKit this$0
family
String family
size
int size
fg
Color fg
tabs
TabStop[] tabs
- TabStops this TabSet contains.
alignment
int alignment
- Tab type.
position
float position
- Location, from the left margin, that tab is at.
leader
int leader
Package javax.swing.text.html |
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
baseFontSize
int baseFontSize
- Size used for relative units.
loadedImage
boolean loadedImage
image
ImageIcon image
horizontalPosition
float horizontalPosition
verticalPosition
float verticalPosition
relative
short relative
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
index
int index
- Index into values.
c
Color c
svalue
String svalue
- The value as a string... before conversion to a
binary format.
family
String family
this$0
CSS this$0
value
float value
index
boolean index
lu
CSS.LengthUnit lu
weight
int weight
type
short type
value
float value
percentage
boolean percentage
- If true, span is a percentage value, and that to determine
the length another value needs to be passed in.
span
float span
- Either the absolute value (percentage == false) or
a percentage value.
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
frameDocument
boolean frameDocument
preservesUnknownTags
boolean preservesUnknownTags
radioButtonGroup
ButtonGroup radioButtonGroup
base
URL base
- The location to resolve relative URLs against. By
default this will be the document's URL if the document
was loaded from a URL. If a base tag is found and
can be parsed, it will be used as the base location.
parser
HTMLEditorKit.Parser parser
- The parser that is used when inserting html into the existing
document.
this$0
HTMLDocument this$0
this$0
HTMLDocument this$0
input
MutableAttributeSet input
linkHandler
HTMLEditorKit.LinkController linkHandler
defaultCursor
Cursor defaultCursor
linkCursor
Cursor linkCursor
html
String html
- HTML to insert.
parentTag
HTML.Tag parentTag
- Tag to check for in the document.
addTag
HTML.Tag addTag
- Tag in HTML to start adding tags from.
alternateParentTag
HTML.Tag alternateParentTag
- Alternate Tag to check for in the document if parentTag is
not found.
alternateAddTag
HTML.Tag alternateAddTag
- Alternate tag in HTML to start adding tags from if parentTag
is not found and alternateParentTag is found.
adjustSelection
boolean adjustSelection
- True indicates the selection should be adjusted after an insert.
curElem
Element curElem
href
String href
bias
Position.Bias[] bias
- This is used by viewToModel to avoid allocing a new array each
time.
focusPainter
HTMLEditorKit.NavigateLinkAction.FocusHighlightPainter focusPainter
selectionTag
Object selectionTag
focusBack
boolean focusBack
targetFrame
String targetFrame
sourceElement
Element sourceElement
percentValues
float[] percentValues
- If any value is a percent there will be an entry here for the
percent value. Use percentIndex to find out the index for it.
percentIndexs
int[] percentIndexs
lastWidth
int lastWidth
- Last value of width passed in.
lastHeight
int lastHeight
- Last value of height passed in.
percents
float[] percents
- Will be non-null if one of the values is a percent, and any value
that is non null indicates it is a percent
(order is x, y, width, height).
lastWidth
int lastWidth
- Last value of width passed in.
lastHeight
int lastHeight
- Last value of height passed in.
selectedOption
Option selectedOption
selectionMode
int selectionMode
minIndex
int minIndex
maxIndex
int maxIndex
anchorIndex
int anchorIndex
leadIndex
int leadIndex
firstChangedIndex
int firstChangedIndex
lastChangedIndex
int lastChangedIndex
isAdjusting
boolean isAdjusting
value
BitSet value
initialValue
BitSet initialValue
listenerList
EventListenerList listenerList
leadAnchorNotificationEnabled
boolean leadAnchorNotificationEnabled
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
css
CSS css
selectorMapping
Hashtable selectorMapping
- An inverted graph of the selectors. Each key will be a String tag,
and each value will be a Hashtable. Further the key RULE is used
for the styles attached to the particular location, and
SPECIFICITY is used to indicate the specificity.
resolvedStyles
Hashtable resolvedStyles
- Maps from selector (as a string) to Style that includes all
relevant styles.
linkedStyleSheets
Vector linkedStyleSheets
- Vector of StyleSheets that the rules are to reference.
base
URL base
- Where the style sheet was found. Used for relative imports.
backgroundImage
ImageIcon backgroundImage
hPosition
float hPosition
vPosition
float vPosition
flags
short flags
paintX
int paintX
paintY
int paintY
paintMaxX
int paintMaxX
paintMaxY
int paintMaxY
topMargin
float topMargin
bottomMargin
float bottomMargin
leftMargin
float leftMargin
rightMargin
float rightMargin
marginFlags
short marginFlags
border
Border border
binsets
Insets binsets
css
CSS css
ss
StyleSheet ss
bg
Color bg
bgPainter
StyleSheet.BackgroundImagePainter bgPainter
this$0
StyleSheet this$0
start
int start
type
CSS.Value type
imageurl
URL imageurl
img
Icon img
bulletgap
int bulletgap
attrs
AttributeSet[] attrs
name
String name
- The name of the Style, which is the selector.
This will NEVER change!
extendedIndex
int extendedIndex
- Start index of styles coming from other StyleSheets.
cache
boolean cache
name
String name
this$0
StyleSheet this$0
host
View host
- View created for.
initialText
String initialText
Package javax.swing.text.html.parser |
name
String name
type
int type
values
Vector values
modifier
int modifier
value
String value
next
AttributeList next
type
int type
- Type. Either '*', '?', '+', ',', '|', '&'.
content
Object content
- The content. Either an Element or a ContentModel.
next
ContentModel next
- The next content model (in a ',', '|' or '&' expression).
valSet
boolean[] valSet
val
boolean[] val
index
int index
name
String name
oStart
boolean oStart
oEnd
boolean oEnd
inclusions
BitSet inclusions
exclusions
BitSet exclusions
type
int type
content
ContentModel content
atts
AttributeList atts
data
Object data
- A field to store user data. Mostly used to store
style sheets.
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
Package javax.swing.text.rtf |
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
parent
MutableTreeNode parent
- this node's parent, or null if this node has no parent
children
Vector children
- array of children, may be null if this node has no children
allowsChildren
boolean allowsChildren
- true if the node is able to have children
this$0
DefaultTreeCellEditor this$0
border
Border border
- Border to use.
this$0
DefaultTreeCellEditor this$0
selected
boolean selected
- Is the value currently selected.
hasFocus
boolean hasFocus
- True if has focus.
drawsFocusBorderAroundIcon
boolean drawsFocusBorderAroundIcon
- True if draws focus border around icon as well.
textSelectionColor
Color textSelectionColor
- Color to use for the foreground for selected nodes.
textNonSelectionColor
Color textNonSelectionColor
- Color to use for the foreground for non-selected nodes.
backgroundSelectionColor
Color backgroundSelectionColor
- Color to use for the background when a node is selected.
backgroundNonSelectionColor
Color backgroundNonSelectionColor
- Color to use for the background when the node isn't selected.
borderSelectionColor
Color borderSelectionColor
- Color to use for the background when the node isn't selected.
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
root
TreeNode root
- Root of the tree.
listenerList
EventListenerList listenerList
- Listeners.
asksAllowsChildren
boolean asksAllowsChildren
- Determines how the
isLeaf
method figures
out if a node is a leaf node. If true, a node is a leaf
node if it does not allow children. (If it allows
children, it is not a leaf node, even if no children
are present.) That lets you distinguish between folder
nodes and file nodes in a file system, for example.
If this value is false, then any node which has no
children is a leaf node, and any node may acquire
children.
- See Also:
TreeNode.getAllowsChildren()
,
TreeModel.isLeaf(java.lang.Object)
,
DefaultTreeModel.setAsksAllowsChildren(boolean)
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
changeSupport
SwingPropertyChangeSupport changeSupport
- Used to messaged registered listeners.
selection
TreePath[] selection
- Paths that are currently selected. Will be null if nothing is
currently selected.
listenerList
EventListenerList listenerList
- Event listener list.
listSelectionModel
DefaultListSelectionModel listSelectionModel
- Handles maintaining the list selection model. The RowMapper is used
to map from a TreePath to a row, and the value is then placed here.
selectionMode
int selectionMode
- Mode for the selection, will be either SINGLE_TREE_SELECTION,
CONTIGUOUS_TREE_SELECTION or DISCONTIGUOUS_TREE_SELECTION.
leadPath
TreePath leadPath
- Last path that was added.
leadIndex
int leadIndex
- Index of the lead path in selection.
leadRow
int leadRow
- Lead row.
uniquePaths
Hashtable uniquePaths
- Used to make sure the paths are unique, will contain all the paths
in
selection
.
lastPaths
Hashtable lastPaths
tempPaths
TreePath[] tempPaths
event
TreeExpansionEvent event
- The event that the exception was created for.
this$0
FixedHeightLayoutCache this$0
isExpanded
boolean isExpanded
- Is this node expanded?
childIndex
int childIndex
- Index of this node from the model.
row
int row
- Row of the receiver. This is only valid if the row is expanded.
path
TreePath path
- Path of this node.
readObject
private void readObject(ObjectInputStream s)
throws IOException,
ClassNotFoundException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
parentPath
TreePath parentPath
- Path representing the parent, null if lastPathComponent represents
the root.
this$0
VariableHeightLayoutCache this$0
preferredWidth
int preferredWidth
- Preferred size needed to draw the user object.
preferredHeight
int preferredHeight
xOrigin
int xOrigin
- X location that the user object will be drawn at.
yOrigin
int yOrigin
- Y location that the user object will be drawn at.
expanded
boolean expanded
- Is this node currently expanded?
hasBeenExpanded
boolean hasBeenExpanded
- Has this node been expanded at least once?
path
TreePath path
- Path of this node.
hasBeenDone
boolean hasBeenDone
- Defaults to true. Becomes false if this edit is undone, true
again if it is redone.
alive
boolean alive
- True if this edit has not received die().
inProgress
boolean inProgress
- True iff this edit has never received end()
edits
Vector edits
- The collection of UndoableEdits undone/redone en masse by this
CompoundEdit
object
StateEditable object
- The object being edited
preState
Hashtable preState
- The state information prior to the edit
postState
Hashtable postState
- The state information after the edit
undoRedoName
String undoRedoName
- The undo/redo presentation name
indexOfNextAdd
int indexOfNextAdd
limit
int limit
Package javax.transaction |
readObject
private void readObject(ObjectInputStream s)
writeObject
private void writeObject(ObjectOutputStream s)
readObject
private void readObject(ObjectInputStream s)
writeObject
private void writeObject(ObjectOutputStream s)
_value
int _value
_value
int _value
- The field that holds a value for a
DefinitionKind
object. -
members
StructMember[] members
- members contains the reference to all the Initializers of non abstract
value types.
id
String id
- The name to be associated with a value by this
NameValuePair
object.
value
Any value
- The value to be associated with a name by this
NameValuePair
object.
reason
short reason
- The reason for the
PolicyError
exception being thrown. -
service_detail_type
int service_detail_type
- The type of the ORB service that this
ServiceDetail
object represents.
service_detail
byte[] service_detail
- The data describing the ORB service that this
ServiceDetail
object represents.
service_options
int[] service_options
service_details
ServiceDetail[] service_details
_value
int _value
name
String name
- The name of the struct member described by
this
StructMember
object. -
type
TypeCode type
- The type of the struct member described by
this
StructMember
object. -
type_def
IDLType type_def
- The typedef that represents the IDL type of the struct member described by
this
StructMember
object. -
minor
int minor
- The CORBA Exception minor code.
-
completed
CompletionStatus completed
- The status of the operation that threw this exception.
-
name
String name
- The name of the union member described by this
UnionMember
object. -
label
Any label
- The label of the union member described by this
UnionMember
object. -
type
TypeCode type
- The type of the union member described by this
UnionMember
object. -
type_def
IDLType type_def
- The typedef that represents the IDL type of the union member described by this
UnionMember
object. -
except
Any except
- The
Any
instance that contains the actual user exception thrown
by the server. -
name
String name
- The name of the
value
member described by this
ValueMember
object. -
id
String id
- The name of the
value
member described by this
ValueMember
object. -
defined_in
String defined_in
- The name of the
value
member described by this
ValueMember
object. -
version
String version
- The name of the
value
member described by this
ValueMember
object. -
type
TypeCode type
- The type of the
value
member described by this
ValueMember
object. -
type_def
IDLType type_def
- The typedef that represents the IDL type of the
value
member described by this ValueMember
object. -
access
short access
- The type of access (public, private) for the
value
member described by this ValueMember
object. -
Package org.omg.CORBA.DynAnyPackage |
Package org.omg.CORBA.ORBPackage |
Package org.omg.CORBA.portable |
id
String id
ins
InputStream ins
offset
int offset
- Points to the stream's offset.
originalEx
Throwable originalEx
- A throwable--the original exception that was wrapped in a CORBA
UnknownException.
Package org.omg.CORBA.TypeCodePackage |
Package org.omg.CosNaming |
binding_name
NameComponent[] binding_name
binding_type
BindingType binding_type
_value
int _value
id
String id
kind
String kind
Package org.omg.CosNaming.NamingContextPackage |
cxt
NamingContext cxt
rest_of_name
NameComponent[] rest_of_name
why
NotFoundReason why
rest_of_name
NameComponent[] rest_of_name
_value
int _value
Package org.omg.stub.java.rmi |
Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.