Constructs an implementation of
listenerInterface
to dispatch events.
You can use such an implementation to simply call a public
no-argument method of an arbitrary target object or to forward
the first argument of the listener method to the target method.
Call this method like:
button.addActionListener((ActionListener)
EventHandler.create(ActionListener.class, target, "dispose"));
to achieve the following behavior:
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
target.dispose();
}
});
That means if you need a listener implementation that simply calls a
a no-argument method on a given instance for
each
method of the listener interface.
Note: The
action
is interpreted as a method name.
Constructs an implementation of
listenerInterface
to dispatch events.
Use this method if you want to create an implementation that retrieves
a property value from the
first argument of the listener method
and applies it to the target's property or method.
Constructs an implementation of
listenerInterface
to dispatch events.
Besides the functionality described for
create(Class, Object, String)
and
create(Class, Object, String, String)
this method allows you
to filter the listener method that should have an effect.
Calls the run()
method of the given action with as
(initial) access control context only the protection domain of the
calling class.
Calls the run()
method of the given action with as
(initial) access control context the given context combined with the
protection domain of the calling class.
Calls the run()
method of the given action with as
(initial) access control context only the protection domain of the
calling class.
Calls the run()
method of the given action with as
(initial) access control context the given context combined with the
protection domain of the calling class.
Returns one of the service providers that is a subclass of the
specified class.
Find the maximum element in a Collection, according to a specified
Comparator.
Find the minimum element in a Collection, according to a specified
Comparator.
Returns a proxy for a standard management bean, using
the specified connection to access the named implementation.
Returns a proxy for a standard management bean, using
the specified connection to access the named implementation,
as with newMBeanProxy(MBeanServerConnection, ObjectName,
Class)
.
Returns a proxy for a
MXBean
, using the specified
connection to access the named implementation.
Returns a proxy for the specified platform bean.
Returns a copy of the supplied array, truncating or padding as
necessary with null
to obtain the specified length.
Returns a copy of the supplied array, truncating or padding as
necessary with null
to obtain the specified length.
Copies the specified range of the supplied array to a new
array, padding as necessary with null
if to
is greater than the length of the original
array.
Copies the specified range of the supplied array to a new
array, padding as necessary with null
if to
is greater than the length of the original
array.
Copy the collection into a given array if it will fit, or into a
dynamically created array of the same run-time type as the given array if
not.
Returns an Array whose component type is the runtime component type of
the passed-in Array.
Copy the current contents of this collection into an array.
Returns an Array whose component type is the runtime component type of the
passed-in Array.
Copy the current contents of this list into an array.
Returns an array containing the elements of this set, of the same runtime
type of the argument.
TAB - static field in class java.awt.
Event The background color used for the tab area.
The insets around the tab area.
Specifies the region of a tabbed pane.
This specifies the region for the content of a tabbed pane.
This specifies the region of a tab of a tabbed pane.
This specifies the region underneath the tabs of a tabbed pane.
A LayoutManager responsible for placing all the tabs and the visible
component inside the JTabbedPane.
Creates a new instance of the layout manager.
An abstract base class for delegates that implement the pluggable
look and feel for a JTabbedPane
.
Constructs a new TabbedPaneUI
.
The listener that listens for change events.
This method returns the tab index given a coordinate.
Determines which tab lies at a given position.
The insets around each and every tab.
An object for presenting data in rows and columns.
The <table> tag , block tag.
TABLE - static field in class javax.swing.plaf.synth.
Region Specifies the region of a table.
Specifies the region of a table header.
This class is deprecated and not used anymore.
TableCellEditor public interface
TableCellRenderer public interface
Invoked when the table changes.
Receives notification when the table model changes.
Called to notify the listener that the
TableModel
has been updated.
Represents the attributes of a column in a table, including the column index,
width, minimum width, preferred width and maximum width.
Creates a new TableColumn
that maps to column 0 in the
related table model.
Creates a new TableColumn
that maps to the specified column
in the related table model.
Creates a new TableColumn
that maps to the specified column
in the related table model, and has the specified width
.
Creates a new TableColumn
that maps to the specified column
in the related table model, and has the specified width
,
cellRenderer
and cellEditor
.
The interface used by
JTable
to access the columns in the table
view.
Constructor TableColumnModelEvent
A
TableColumnModelListener
can register with a
TableColumnModel
to receive notification of changes to the model.
Storage for the table columns.
The tableHeader property.
A border for table header cells.
Creates a new instance of TableHeaderBorder
.
An abstract base class for delegates that implement the pluggable
look and feel for a JTableHeader
.
Constructs a new TableHeaderUI
.
This table index is clustered.
This table index is hashed.
This table index is of another type.
This column contains table statistics.
A
TableModel
is a two dimensional data structure that
can store arbitrary
Object
instances, usually for the
purpose of display in a
JTable
component.
Creates a new
TableModelEvent
indicating an
UPDATE
to the data in all columns and rows.
Creates a new
TableModelEvent
indicating an
UPDATE
to the data in a single row across all columns.
Creates a new
TableModelEvent
indicating an
UPDATE
to the data in the specified rows across all columns.
Creates a new
TableModelEvent
indicating an
UPDATE
to the data in the specified rows and column.
Creates a new TableModelEvent
indicating an operation of
the specified type
on the data in the specified rows and
column.
A
TableModelListener
can register with a
TableModel
and receive notification of updates to
the model.
A view implementation that renders a row of a TableView
.
Creates a new instance of TableRow
.
Receives notification when one or more rows have been deleted from the
table.
Receives notification when one or more rows have been inserted into the
table and fires appropriate property change events.
An abstract base class for delegates that implement the pluggable
look and feel for a JTable
.
Constructs a new TableUI
.
A
View
implementation for rendering tables inside styled text.
Creates a new instance of TableView
.
Tabloid size, 11 inch x 17 inch.
The tabloid size: 11 inches by 17 inches.
The tab pane that this UI paints.
The current tabPlacement of the TabbedPane.
The amount of space each run overlaps the previous by.
This array keeps track of which tabs are in which run.
This class handles ChangeEvents from the JTabbedPane.
A key for the tabset paragraph attribute.
Creates a new TabSet
containing the specified tab stops.
Represents a tab position in some text.
Creates a new TabStop
for the specified tab position.
Creates a new TabStop
with the specified attributes.
Provides an interface to a specific type of composite
data structure, where keys (the columns) map to the
CompositeData
objects that form the rows of
the table.
Constructs a new empty
TabularDataSupport
with the
specified type and the supplied initial capacity and load factor
being used for the underlying
HashMap
.
The open type descriptor for instances of the
TabularData
class.
Constructs a new
TabularType
instance for the given
type name, description, row type and index names.
TAG - static field in class gnu.javax.swing.text.html.parser.support.low.
Constants Ordinary HTML tag heading pattern.
The integer tag identifier, for instance, TAG_CODE_SETS.value.
The integer tag identifier, typically one of TAG_INTERNET_IOP.value or
TAG_MULTIPLE_COMPONENTS.value.
Create the unitialised instance of HTML.Tag.
Tag() - method in class gnu.javax.swing.text.html.parser.support.
Parser Read a html tag.
Creates a new Tag with the specified id, and with causesBreak
and isBlock set to false.
Creates a new Tag with the specified tag name and
causesBreak and isBlock properties.
Holds an integer constant of the TAG_ALTERNATE_IIOP_ADDRESS Component that
may occur zero or more times in the Internet of Multiple components profile.
Ordinary HTML tag closing pattern.
The agreed tag for the Codesets profile.
Holds the integer identifier of the code sets profile.
The agreed tag for the Internet profile.
Holds the integer identifier of the internet profile.
Holds an integer identifier of the TAG_JAVA_CODEBASE profile.
Holds the integer identifier of the multiple components profile.
Holds an integer constant of the TAG_ORB_TYPE Component that defines
the kind or CORBA implementation of ORB the reference is comming from.
An integer identifier for the TAG_POLICIES component.
A single constant interface, defining the
TAG_RMI_CUSTOM_MAX_STREAM_FORMAT (= 38) tagged component.
The SGML element, defining a single html tag.
Creates the html tag element from the defintion, stored in the
given element.
Creates the html tag element from the defintion, stored in the
given element, setting the flag 'fictional' to the given value.
TagEntry - stores a profile tag.
Create the unitialised instance, assigning to
the all fields java default values.
Create the instance, initialising the fields to the given values.
Create the unitialised instance, leaving the value field
with default null
value.
Create the initialised instance.
The TaggedProfile if part of the
IOR
, defining a single specific
aspect of the object related information.
Create the unitialised instance, assigning to
the all fields java default values.
Create the instance, initialising the fields to the given values.
Create the unitialised instance, leaving the value field
with default null
value.
Create the initialised instance.
Check if this tag is valid for the current context.
Returns a view of the portion of the set greater than or equal to
fromElement.
Returns a view of this Set including all elements greater or equal to
from
.
Returns a view of this Set including all elements greater (or equal to,
if inclusive
is true) from
.
Locale which represents Taiwan.
Constant representing the Unicode TAMIL range.
The trigonometric function tan.
The trigonometric function tan.
Some clients tend to submit multiple requests over the same socket.
Returns the hyperbolic tangent of the given value.
Returns the hyperbolic tangent of x
, which is defined as
(exp(x) - exp(-x)) / (exp(x) + exp(-x)), i.e. sinh(x) / cosh(x).
The pre-created instance of the object being written (avoid
re-instantiation).
Returns the object on that the client has invoked the the operation.
Return the CORBA object on that the method would be invoked.
Check if the target is an instance of the type, represented by the given
repository Id.
Checks if the servant is the given repository id.
Get the first member of the object repository id array.
Get the most derived (most specific) repository Id of the servant.
Problems with converting between stubs, ties, interfaces and
implementations.
This is a DataLine from which data may be read.
Wraps a notification with an identifier that specifies
the listener which received it.
Constructs a new
TargetedNotification
which connects
the supplied notification with the specified identifier.
The objects, exposing the tie.
TBC - class gnu.javax.crypto.pad.
TBC The implementation of the Trailing Bit Complement (TBC) padding algorithm.
Trailing Bit Complement padding scheme.
Token value to designate a new array is next in the stream.
Token value to designate a block of primitive data is next in the stream.
Token value to designate a long block of primitive data is next in the
stream.
Token reference to designate a reference to a class.
Token value to designate a class descriptor is next in the stream.
Token value to designate the end of a block of primitve data.
Token value to designate an enum constant is next in the stream.
Token value to designate an exception occured during serialization.
Token value to designate a long string is next in the stream.
Token value to designate a null
reference in the stream.
Token value to designate a new object is next in the stream.
Token value to designate a proxy class descriptor is next in the stream.
Token value to designate a reference to an already serialized object.
Token value to designate a reset of the stream state.
Token value to designate a new string is next in the stream.
The basic constants, used in java to IDL mapping.
Creates a new TCKind instance with the given integer constant value.
Option id for the TCP_NODELAY value
TD - static field in class javax.swing.text.html.
HTML.Tag The <td> tag , breaks flow, block tag.
The termination phase of the concrete mode implementation.
The termination phase of the concrete mode implementation.
The termination phase of the concrete mode implementation.
The termination phase of the concrete mode implementation.
The termination phase of the concrete mode implementation.
Fans its events out to two other consumers, a "tee" filter stage in an
event pipeline.
Constructs a consumer which sends all its events to the first
consumer, and then the second one.
An input stream that copies all its input to a byte sink.
Constructs a tee input stream.
An output stream that copies all its output to an additional byte sink.
Constructs a tee output stream.
A reader that copies all characters read to an output sink.
A writer that copies all its output to an additional character sink.
Constant representing the Unicode TELUGU range.
A compiled, reusable XSL transformation.
A content handler that processes SAX parse events into a compiled
transformation template.
The constant ten as a BigDecimal with scale zero.
The constant ten as a BigInteger.
This constant is a strength value which indicates that tertiary,
secondary, and primary differences will be considered during sorting.
This method returns the tertiary order value for the given collation
value.
Interface which all GNU Classpath tests must implement.
A test that can be performed on a node to determine whether to include it
in a selection.
The basic symmetric test for a padder given a specific block size.
An object which represents text, usually editable by the user.
The text of the sequence.
The
Text
interface inherits from
CharacterData
and represents the textual content (termed
character data in XML) of an
Element
or
Attr
.
The text background color.
Output the text of the indicated Element, properly clipping it to
the range of the Document specified when the AbstractWriter was
created.
Writes out text, within the appropriate range if it is specified.
The CSS attribute 'text-align'.
Specifies the region of a text area.
A constant used to identify the background color of text of a component.
Fired in a PropertyChangeEvent when the "text" property changes.
Constant for a cursor over a text field.
Constant for a cursor over a text field.
The CSS attribute 'text-decoration'.
Specifies the region of a text field.
This is the first id in the range of event ids used by this class.
A constant used to identify the foreground color of text of a component.
Array index of the highlighted text background color.
Array index of the highlighted text foreground color.
Char array doc flavor with a MIME Type of "text/html; charset=utf-16".
Reader doc flavor with a MIME Type of "text/html; charset=utf-16".
String doc flavor with a MIME Type of "text/html; charset=utf-16".
Byte array doc flavor with a MIME Type of "text/html" in the host encoding.
InputStream doc flavor with a MIME Type of "text/html" in the host encoding.
URL doc flavor with a MIME Type of "text/html" in the host encoding.
Byte array doc flavor with a MIME Type of "text/html; charset=us-ascii".
InputStream doc flavor with a MIME Type of "text/html; charset=us-ascii".
URL doc flavor with a MIME Type of "text/html; charset=us-ascii".
Byte array doc flavor with a MIME Type of "text/html; charset=utf-16".
InputStream doc flavor with a MIME Type of "text/html; charset=utf-16".
URL doc flavor with a MIME Type of "text/html; charset=utf-16".
Byte array doc flavor with a MIME Type of "text/html; charset=utf-16be".
InputStream doc flavor with a MIME Type of "text/html; charset=utf-16be".
URL doc flavor with a MIME Type of "text/html; charset=utf-16be".
Byte array doc flavor with a MIME Type of "text/html; charset=utf-16le".
InputStream doc flavor with a MIME Type of "text/html; charset=utf-16le".
URL doc flavor with a MIME Type of "text/html; charset=utf-16le".
Byte array doc flavor with a MIME Type of "text/html; charset=utf-8".
InputStream doc flavor with a MIME Type of "text/html; charset=utf-8".
URL doc flavor with a MIME Type of "text/html; charset=utf-8".
Array index of the inactive text foreground color.
The CSS attribute 'text-indent'.
The number of pixels between the outside of this TitledBorder
and the beginning (if left-aligned) or end (if right-aligned)
of the title text.
This is the last id in the range of event ids used by this class.
Specifies the region of a text pane.
Char array doc flavor with a MIME Type of "text/plain; charset=utf-16".
Reader doc flavor with a MIME Type of "text/plain; charset=utf-16".
String doc flavor with a MIME Type of "text/plain; charset=utf-16".
Byte array doc flavor with a MIME Type of "text/plain" in the host encoding.
InputStream doc flavor with a MIME Type of "text/plain" in the host encoding.
URL doc flavor with a MIME Type of "text/plain" in the host encoding.
Byte array doc flavor with a MIME Type of "text/plain; charset=us-ascii".
InputStream doc flavor with a MIME Type of "text/plain; charset=us-ascii".
URL doc flavor with a MIME Type of "text/plain; charset=us-ascii".
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-16".
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-16".
URL doc flavor with a MIME Type of "text/plain; charset=utf-16".
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-16be".
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-16be".
URL doc flavor with a MIME Type of "text/plain; charset=utf-16be".
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-16le".
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-16le".
URL doc flavor with a MIME Type of "text/plain; charset=utf-16le".
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-8".
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-8".
URL doc flavor with a MIME Type of "text/plain; charset=utf-8".
The number of pixels between the title text and
border
.
Array index of the text foreground color.
The CSS attribute 'text-transform'.
This event id indicates that the text of an object has changed.
Indicates a value of syntax type text with language.
Indicates a value of syntax type text without language.
The <textarea> tag , preformatted.
A TextArea is a text component capable of displaying multiple lines
of user-editable text.
Initialize a new instance of TextArea
that is empty.
Initialize a new instance of TextArea
that is empty
and can display the specified number of rows and columns of text,
without the need to scroll.
Initialize a new instance of TextArea
that contains
the specified text.
Initialize a new instance of TextArea
that can
display the specified number of rows and columns of text, without
the need to scroll.
Initialize a new instance of TextArea
that initially
contains the specified text.
Adds the given text to the textarea document.
Writes out the contents of a textarea.
Attributes (and associated values) that can be used to define an
AttributedString
.
A key object to be used when caching pre-rendered text.
Creates a new TextCacheKey.
Creates a new TextCacheKey with initial values.
This class provides common functionality for widgets than
contain text.
Terminates a pipeline, consuming events to print them as well formed
XML (or XHTML) text.
Constructs a consumer that writes its input as XML text,
encoded in UTF-8.
Constructs a consumer that writes its input as XML text.
Constructs an event consumer which echoes its input as text,
optionally adhering to some basic XHTML formatting options
which increase interoperability with old (v3) browsers.
Simple text editor component.
Initialize a new instance of TextArea
that is empty.
This event is generated when a text box changes contents.
Initializes a new instance of TextEvent
with the specified
source and id.
This class implements a single line text entry field widget
Initializes a new instance of TextField
that is empty
and has one column.
Initializes a new instance of TextField
that is empty
and has the specified number of columns.
Initializes a new instance of TextField
containing
the specified text.
Initializes a new instance of TextField
with the
specified text and number of columns.
Creates a new border instance.
The highlighted text background color.
The highlighted text foreground color.
The gap between text and label
Underlying security services instantiate and pass a
TextInputCallback
to the
handle()
method of a
CallbackHandler
to retrieve
generic text information.
Construct a TextInputCallback
with a prompt.
Construct a TextInputCallback
with a prompt and default
input value.
This interface is for classes that wish to be notified when text changes
in a component.
A list of listeners that will receive events from this object.
TextMeasurer is a small utility class for measuring the length of laid-out
text objects.
Creates a TextMeasurer from a given text in the form of an
AttributedCharacterIterator
and a
FontRenderContext
.
The color used for text in non-selected cells.
Underlying security services instantiate and pass a
TextOutputCallback
to the
handle()
method of a
CallbackHandler
to display information messages, warning messages and
error messages.
Construct a TextOutputCallback
with a message type and
message to be displayed.
Pre - processes text in text parts of the html document.
The color used for text in selected cells.
TextSyntax
is the abstract base class of all attribute
classes which provide a string as value (e.g. the location of the printer).
Creates a TextSyntax
object with the given value
and locale.
The text foreground color.
An abstract base class for delegates that provide the user
interface for text editors.
This class provides a way to fill a Shape with a texture that is
specified by a BufferedImage.
Creates a new TexturePaintContext for the specified TexturePaint object.
Handles this event by dispatching it to the "a" and "b" listener
instances.
This method is called when the text being monitored changes.
Simple text display component.
Initialize a new instance of TextArea
that is empty.
TH - static field in class javax.swing.text.html.
HTML.Tag The <th> tag , breaks flow, block tag.
Constant representing the Unicode THAI range.
Returns the adapter activator, associated with this POA.
Returns the adapter activator, associated with this POA.
Set the adapter activator for this POA.
Set the adapter activator for this POA.
The children of this POA.
The children of this POA.
Return the name of this POA.
Return the name of this POA.
Return the parent of this POA.
Return the parent of this POA.
Return the POA manager, associated with this POA.
Return the POA manager, associated with this POA.
The width of the line in pixels.
Job should be processed as third-shift
(after midnight).
Job should be processed as third-shift
(after midnight).
Obtains the CORBA object reference that is an invocation target for the
given servant.
Get the object, exposing the servant.
Get the object that delegates calls to this tie.
Thread represents a single thread of execution in the VM.
Thread object (objectID size)
Allocates a new Thread
object.
Allocates a new Thread
object.
Allocates a new Thread
object.
Allocates a new Thread
object.
Allocates a new Thread
object.
Allocate a new Thread object, with the specified ThreadGroup and name, and
using the specified Runnable object's run()
method to
execute.
Allocate a new Thread object, as if by
Thread(group, null, name)
, and give it the specified stack
size, in bytes.
Allocates a new Thread
object.
ThreadGroup object (objectID size)
The object name for the threading bean.
Specified thread has not been suspended by an event
Restricts reported events to those in the given thread.
ThreadDeath is thrown in a thread when someone calls stop()
on that thread.
Create an error without a message.
"Notification of a completed thread in the target VM.
Constructs a new ThreadEndEvent
ThreadGroup allows you to group Threads together.
Create a new ThreadGroup using the given name and the current thread's
ThreadGroup as a parent.
Create a new ThreadGroup using the given name and parent group.
A class which represents a JDWP thread group id
Constructs a new ThreadGroupId
A class representing the ThreadGroupReference Command Set.
A class which represents a JDWP thread id
Constructs a new ThreadId
A class which maintains information about a particular
thread.
ThreadLocal objects have a different state associated with every
Thread that accesses them.
Creates a ThreadLocal object without associating any value to it yet.
Provides access to information about the threads
of the virtual machine.
Provides access to information about the threads
of the virtual machine.
Default constructor to set up flag states.
An event filter which allows only events within a specific
thread
Constructs a new ThreadOnlyFilter
for the given
thread id
Defines the POA thread policy.
Defines the operations, applicable to the ThreadPolicy.
Defines the possible values for the POA thread policy.
Normally, no new instances are required, so the constructor is protected.
A class representing the ThreadReference Command Set.
Too many parallel calls (too many parallel threads).
"Notification of a new running thread in the target VM.
Constructs a new ThreadStartEvent object
Throwable is the superclass of all exceptions that can be raised.
Instantiate this Throwable with an empty message.
Instantiate this Throwable with the given message.
Instantiate this Throwable with the given message and cause.
Instantiate this Throwable with the given cause.
The thumb color (unused, because an icon is used to draw the thumb).
The outer shadow of the thumb.
The top and left edge color for the thumb.
The outer light shadow for the thumb.
Reports that a thumbnail read operation has completed.
Reports that a thumbnail write operation has completed.
Reports that the current thumbnail read operation has completed a progressive pass.
Reports that the current thumbnail read operation is about to begin a progressive pass.
Reports the approximate percentage of completion of a thumbnail read
operation.
Reports the approximate percentage of completion of a thumbnail write
operation.
Reports that a thumbnail read operation is beginning.
Reports that a thumbnail write operation is beginning.
Reports that a given region of a thumbnail image has been updated.
The size and position of the thumb.
Rectangle describing the thumb's bounds.
Constant representing Thursday.
Constant representing the Unicode TIBETAN range.
The gap between the track and the tick marks.
The length of the major tick marks.
Rectangle describing the tick bounds.
Get the length of the track in MIDI ticks.
Tie - interface javax.rmi.CORBA.
Tie
A Tie serves as a CORBA Servant or implementation base.
Represents a Tie, connected to possibly multiple invocation targets.
The Tiger message digest.
Tiger() - constructor for class gnu.java.security.hash.
Tiger Trivial 0-arguments constructor.
The implementation of the Tiger based SecureRandom Service Provider
Interface (SPI) adapter.
The implementation of the Tiger Service Provider Interface
(SPI) adapter.
Trivial 0-arguments constructor.
The amount by which the tile grid origin should be offset
horizontally from the image origin if tiling has been set.
The amount by which the tile grid origin should be offset
vertically from the image origin if tiling has been set.
The height of each tile if tiling has been set.
The icon is used for filling the border with a tile, or
null
if the border is filled with a solid
color.
The width of each tile if tiling has been set.
The mode controlling tiling settings, which must be
set to one of the four MODE_* values.
True if the tiling parameters have been specified.
The time in milliseconds since the epoch.
The qualified-name for the time
data type.
This class is a wrapper around java.util.Date to allow the JDBC
driver to identify the value as a SQL Time.
This method initializes a new instance of this class with the
specified year, month, and day.
This method initializes a new instance of this class with the
specified time value representing the number of milliseconds since
Jan 1, 1970 at 12:00 midnight GMT.
The connection to the device has timed out.
Creates a new NamingException without a message.
Creates a new NamingException with a detailed message.
The read timeout on sockets.
The read timeout for reads on the underlying socket.
Raised when no delivery has been made during the specified timeout duration.
Creates TIMEOUT with the default minor code of 0 and a
completion state COMPLETED_NO.
Creates a TIMEOUT exception with the specified minor
code and completion status.
Creates TIMEOUT with the default minor code of 0,
completion state COMPLETED_NO and the given explaining message.
Created TIMEOUT exception, providing full information.
Timer used when inside a scrollpane and the scrollbar is adjusting
Used before starting the editing session.
Timer that can run TimerTasks at a later time.
Fires one or more action events after the specified delay.
Creates a new Timer with a non daemon Thread as Scheduler, with normal
priority and a default name.
Creates a new Timer with a daemon Thread as scheduler if daemon is true,
with normal priority and a default name.
Creates a new Timer object.
Create a new Timer whose Thread has the indicated name.
Create a new Timer whose Thread has the indicated name.
Task that can be run at a later time if given to a Timer.
Creates a TimerTask and marks it as not yet scheduled.
TIMES - static field in class javax.management.
Query A code representing the
Returns a value expression which evaluates to the result of
multiplying v1
by v2
.
This class is a wrapper around java.util.Date to allow the JDBC
driver to identify the value as a SQL Timestamp.
Returns the 60-bit timestamp value of the UUID in a long.
This method initializes a new instance of this class with the
specified year, month, and day.
This method initializes a new instance of this class with the
specified time value representing the number of milliseconds since
Jan 1, 1970 at 12:00 midnight GMT.
This class represents a time zone offset and handles daylight savings.
Represents the position of the generic
timezone pattern character in the array of
localized pattern characters.
A
TimeZoneNameProvider
provides localized
versions of the names that represent a particular
timezone.
Status byte for Timing Clock message.
This is the listing of titlecase special cases (all other characters
can use UPPER
to determine their titlecase).
title - field in class javax.swing.text.html.parser.
DTD The title element for this DTD.
The <title> tag , breaks flow, block tag.
The title on the TitlePane of the JInternalFrame.
The title, or null
to display no title.
The property fired in a PropertyChangeEvent when the title property
changes.
Lt = Letter, Titlecase (Informative).
The color for displaying the title text.
A border that paints a title on top of another border.
Constructs a TitledBorder given the text of its title.
Constructs an initially untitled TitledBorder given another border.
Constructs a TitledBorder given its border and title text.
Constructs a TitledBorder given its border, title text, horizontal
alignment, and vertical position.
Constructs a TitledBorder given its border, title text, horizontal
alignment, vertical position, and font.
Constructs a TitledBorder given its border, title text, horizontal
alignment, vertical position, font, and color.
Constructs a TitledBorderUIResource given the text of its title.
Constructs an initially untitled TitledBorderUIResource
given another border.
Constructs a TitledBorder given its border and title text.
Constructs a TitledBorderUIResource given its border, title
text, horizontal alignment, and vertical position.
Constructs a TitledBorder given its border, title text,
horizontal alignment, vertical position, and font.
Constructs a TitledBorder given its border, title text,
horizontal alignment, vertical position, font, and color.
The font for displaying the title text.
The TitlePane displayed at the top of the JInternalFrame.
This class acts as the Layout Manager for the TitlePane.
Creates a new TitlePaneLayout
object.
The key for the property that is the title of a document.
Names of the primitve types.
The TCKind constant, indicating IDL data type
abstract_interface
The TCKind constant, indicating IDL data type
alias
The TCKind constant, indicating IDL data type
any
The TCKind constant, indicating IDL data type
array
The TCKind constant, indicating IDL data type
boolean
The TCKind constant, indicating IDL data type
char
The TCKind constant, indicating IDL data type
double
The TCKind constant, indicating IDL data type
enum
The TCKind constant, indicating IDL data type
except
The TCKind constant, indicating IDL data type
fixed
The TCKind constant, indicating IDL data type
float
The TCKind constant, indicating IDL data type
long
The TCKind constant, indicating IDL data type
longdouble
The TCKind constant, indicating IDL data type
longlong
The TCKind constant, indicating IDL data type
native
The TCKind constant, indicating IDL data type
null
The TCKind constant, indicating IDL data type
objref
The TCKind constant, indicating IDL data type
octet
The TCKind constant, indicating IDL data type
Principal
The TCKind constant, indicating IDL data type
sequence
The TCKind constant, indicating IDL data type
short
The TCKind constant, indicating IDL data type
string
The TCKind constant, indicating IDL data type
struct
The TCKind constant, indicating IDL data type
TypeCode
The TCKind constant, indicating IDL data type
ulong
The TCKind constant, indicating IDL data type
ulonglong
The TCKind constant, indicating IDL data type
union
The TCKind constant, indicating IDL data type
ushort
The TCKind constant, indicating IDL data type
value
The TCKind constant, indicating IDL data type
value_box
The TCKind constant, indicating IDL data type
void
The TCKind constant, indicating IDL data type
wchar
The TCKind constant, indicating IDL data type
wstring
The URI has TLS (RFC 2246) communication
The padding scheme used by the Transport Layer Security protocol, version 1.
TLS1() - constructor for class gnu.javax.crypto.pad.
TLS1 The basic constructor.
TMMH is a universal hash function suitable for message
authentication in the Wegman-Carter paradigm, as in the Stream Cipher
Security Transform.
The Truncated Multi-Modular Hash Function -v1 (David McGrew).
Trivial 0-arguments constructor.
The implementation of the TMMH16 Service Provider Interface
(SPI) adapter.
Create a new MacSpi instance.
This class represents the algorithm parameters for the Truncated
Multi-Modular Hash function for use with JCE-derived instances of
TMMH16
.
Create a new parameter specification with no prefix.
Create a new parameter specification.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
Involved in equal(DynAny).
Returns the enclosed
Any
.
Returns a shallow copy of the enclosed
Any
,
Returns the enclosed
Any
.
Wrap the enumeration value into any.
Create and return Any, holding this DynFixed value.
Returns a shallow copy of the enclosed
Any
,
Converts the string name representation into the array
name representation.
Convert the name string representation into array representation.
Converts the name, represented in the form of the string,
into the older name representation (array of the name
components).
Convert the name array representation to the name string
representation.
Convert a name component array representation into string representation.
Converts the older representation for the name (array
of the name components) into the string form of the name.
This method is not yet implemented.
Return an array containing the elements of this collection.
Return the relation set as an array.
Return the state set as an array.
Returns an Object array containing all of the elements in this ArrayList.
Returns the content of the attribute set as an array
An array of the children.
Returns an array containing the children of this BeanContext
.
Copy the current contents of this collection into an array.
Returns an Object array containing all of the elements in this ArrayList.
Gets an array containing the elements of the list.
Gets an array representation of the List of events.
Returns the content of the attribute set as an array
Returns an array which contains the elements of the list in order.
Copy the current contents of this list into an array.
Copy the current contents of this collection into an array.
Returns an array containing the elements of this set.
Returns an Object array with the contents of this Vector, in the order
they are stored within this Vector.
Populates, then returns, the supplied array with the children of this
BeanContext
.
Gets an array representation of the List of events.
Returns the URI as US-ASCII string.
This method causes the JInternalFrame to be brough to back in the
z-order.
Sends this window to the back so that all other windows display in
front of it.
Converts a designated byte array to a Base-64 representation, with the
exceptions that (a) leading 0-byte(s) are ignored, and (b) the character
'.' (dot) shall be used instead of "+' (plus).
Converts this BigDecimal to a BigInteger.
Converts this BigDecimal into a BigInteger, throwing an
ArithmeticException if the conversion is not exact.
Converts the int
to a String
assuming it is
unsigned in base 2.
Converts the long
to a String
assuming it is
unsigned in base 2.
Return this bit string as a boolean array.
The single pages are arranged on the media in columns starting
at the top right towards the bottom left.
The single pages are arranged on the media in columns starting
at the top left towards the bottom left.
Return this bit string as a byte array, with the ignored bits
trimmed off.
This method returns a byte array containing the bytes that have been
written to this stream so far.
This method returns the collation bit sequence as a byte array.
Returns the encoded form of the current message including the 4-byte length
header.
Convert a hexadecimal string into its byte representation.
Convert a hexadecimal string into its byte representation.
Returns a byte array from a string of hexadecimal digits.
This method returns a char array containing the chars that have been
written to this stream so far.
Copies the contents of this String into a character array.
Converts a unicode code point to a UTF-16 representation of that
code point.
Converts a unicode code point to its UTF-16 representation.
Transforms a color value assumed to be in this ColorSpace into the
CS_CIEXYZ conversion color space.
Linear RGB --> CIE XYZ (D50 relative)
Uses the inverse of the above matrix.
Converts the given IDL name to class name.
Given a valid surrogate pair, this returns the corresponding
code point.
Returns the specified UTF-16 char array as an array of Unicode code
points.
Convert from radians to degrees.
Convert from radians to degrees.
Obtains the key as a localized string, using the default locale.
Obtains the key as a localized string, falling back to the
locale-independent version if necessary.
Obtains the key as a localized string, falling back to the
locale-independent version if necessary.
Returns the String representation of this BigDecimal, using engineering
notation if necessary.
Returns a String representing this URL.
This method converts a Jar URL object into a String.
This method converts a URL object into a String.
This method causes the JInternalFrame to be brought to front in the
z-order.
Brings this window to the front so that it displays in front of
any other windows.
A specialized button which can be on or off, with no separate indicator.
Specifies the region of a toggle button.
The name of an action which toggles the expansion of a tree node.
The name of an action which toggles the state of a popup, causing a
hidden popup to be displayed and a visible popup to be hidden.
A border for toggle buttons in the Basic look and feel.
Creates a new border instance.
Constructs a new border for drawing a JToggleButton in
the Basic look and feel.
The model handles the storage and maintenance of the state of
the toggle button.
Expands path if it is not expanded, or collapses row if it is expanded.
Displays combo box popup if the popup is not currently shown
on the screen and hides it if it is currently shown
This method displays combo box popup if the popup is not currently shown
on the screen and hides it if it is currently visible
Convert the
Name
into array of the name components, required to the
CORBA naming service.
Convert the
Name
into array of the name components, required to the
CORBA naming service.
Returns a string representation of this Date
object using GMT rather than the local timezone.
Gets the helper class name from the string like
'IDL:test/org/omg/CORBA/ORB/communication/ourUserException:1.0'
Converts to hexadecimal string, supplementing leading zeros.
Convert a byte array to a hexadecimal string, as though it were a
big-endian arbitrarily-sized integer.
Convert a byte array to a hexadecimal string, as though it were a
big-endian arbitrarily-sized integer.
Convert a byte array to a hexadecimal string, separating octets
with the given character.
Convert a byte array to a hexadecimal string, separating octets
with the given character.
Convert a double value to a hexadecimal string.
Convert a float value to a hexadecimal string.
Converts the int
to a String
assuming it is
unsigned in base 16.
Converts the long
to a String
assuming it is
unsigned in base 16.
Converts the object Id into the IOR key.
Translates the returned open data type to the value
required by the interface.
Token - class gnu.javax.swing.text.html.parser.support.low.
Token A token.
token - field in class gnu.javax.swing.text.html.parser.models.
node The token to match (can be instance of list).
Token() - constructor for class gnu.javax.swing.text.html.parser.support.low.
Token Creates a new token with fields, initialized to the default values.
classifies current token.
Creates a new token, where location fields are set as for token,
spanning over two provided tokens and any tokens between them.
Creates a new token of the given kind and given single char image.
Creates a new token of the given kind.
Creates a new token of the given kind, category and given string image.
Creates a new token of the given kind and given string image.
The single pages are arranged on the media in rows starting
at the top right towards the left bottom.
The single pages are arranged on the media in rows starting
at the bottom right towards the left top.
Returns a locale-dependent string representation of this
Date
object.
This method returns a string with the formatting pattern being used
by this object.
This method returns a string with the formatting pattern being used
by this object.
Converts a Unicode character into its lowercase equivalent mapping.
Converts a Unicode character into its lowercase equivalent mapping.
Lowercases this String according to a particular locale.
Calculate the bit mask based on the values of the
leastSignificantBit and bitWidth fields.
Convert the string name representation into the array name
representation.
The printer device is out of toner.
The printer device is low on toner.
ToneReproductionCurve - TRCs are used to describe RGB
and Grayscale profiles.
Constructs a TRC from a gamma values
Constructs a TRC from a set of float values
Constructs a TRC from a set of short values normalized to
the 0-65535 range (as in the ICC profile file).
Converts the int
to a String
assuming it is
unsigned in base 8.
Converts the long
to a String
assuming it is
unsigned in base 8.
A bar or pallete with buttons for common actions in an application.
Specifies the region of a tool bar.
Specifies the content region of a tool bar.
Specifies the drag window region of a tool bar.
Specifies the region of a separator of a tool bar.
An object which provides information about another object.
Specifies the region of a tool tip.
The JToolBar this UI delegate is responsible for.
The JToolBar being dragged.
A border used for the
JToolBar
component.
Creates a new border instance.
This helper class listens for components added to and removed from the
JToolBar.
Creates a new ToolBarFocusListener object.
An abstract base class for delegates that implement the pluggable
look and feel for a JToolBar
.
Constructs a new ToolBarUI
.
The AWT system uses a set of native peer objects to implement its
widgets.
The toolkit which manufactured this peer.
Default constructor for subclasses.
This class is responsible for the registration of JToolTips to Components
and for displaying them when appropriate.
An abstract base class for delegates that implement the pluggable
look and feel for a JToolTip
.
Constructs a new ToolTipUI
.
This exception is part of the java event model.
Constructs a TooManyListenersException with no detail message.
Constructs a TooManyListenersException with a detail message.
The number of pixels required at the top edge.
The constraints string used to add components to the top.
TOP - static field in class javax.print.attribute.standard.
MediaTray Top tray
A value for the titlePosition
property that vertically
positions the title text at the middle of the top line
of the border.
Constant returned by the getAlignmentY
method to indicate
that the component wishes to be aligned to the top relative to
other components.
Converts the events into to a single JDWP Event.COMPOSITE packet
This method returns the range terminator list and format string list
as a String
suitable for using with the
applyPattern
method.
This method returns a string with the formatting pattern being used
by this object.
This method returns a string with the formatting pattern being used
by this object.
The pixel order is top-down, left-right.
Returns a String representation of this BigDecimal without using
scientific notation.
Convert from degrees to radians.
Convert from degrees to radians.
Returns a byte array from a string of hexadecimal digits, interpreting them
as a large big-endian integer and returning it as a large little-endian
integer.
Returns a string of hexadecimal digits from a byte array.
Returns a string of hexadecimal digits from a byte array, starting at
offset
and consisting of length
bytes.
Transforms a color value assumed to be in this ColorSpace into a value in
the default CS_sRGB color space.
Transforms a color value assumed to be in this ColorSpace into a value in
the default CS_sRGB color space.
linear RGB --> sRGB
Use the inverse gamma curve
The single pages are arranged on the media in rows starting
at the top left towards the right bottom.
The single pages are arranged on the media in rows starting
at the bottom left towards the right top.
Returns the string representation of the given policy.
Creates a String representation of the Collection.
Returns a string representation of this element.
Returns a String description of the change event.
Returns a string representation of this Element
.
Returns a String representation of this map.
This provides a string representation of the entry.
Returns the String given by
(isUserNode() ?
Convert this Object to a human-readable String.
Obtains the key as a localized string, using the default locale.
Return a localized, comma-separated string representing all relations
in the set.
Return a localized, comma-separated string representing all states
in the set.
This method returns the ACL as a String
This method returns this object as a String
.
Get the string representation
Return the content based string representation.
Returns a string representation of the transform, in the format:
"AffineTransform[[" + m00 + ", " + m01 + ", " + m02 + "], ["
+ m10 + ", " + m11 + ", " + m12 + "]]"
.
Returns a string representation of the encoded form.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a textual representation of the annotation.
This method returns a String
representation of this
object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a textual representation of this instance.
Returns a String
representation of this object.
Returns the attribute name.
Returns a string representation of this exception.
Returns the string representation of this Name as given to the
constructor (not neccesarily the lower case representation).
Returns the attribute name, quoted.
Return a description of this AudioFileFormat.
Return the name of this Type.
Return a description of this format.
Return the name of this encoding.
Convert this Object to a human-readable String.
Create a string that represents this event in the format
classname[eventstring] on sourcecomponentname
.
Returns a string representation of this keystroke.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Creates a String with some information about this SampleModel.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Return a String describing the internal state of this object.
Returns the String representation of this BigDecimal, using scientific
notation if necessary.
Convert this Object to a human-readable String.
Returns a String representation of the RefAddr.
Returns the string representation.
Convert this Object to a human-readable String.
Returns the string representation of this bit set.
Convert this Object to a human-readable String.
Returns "true" if the value of this object is true
and
returns "false" if the value of this object is false
.
Return a string describing this control.
Returns a string representation of this layout manager.
toString() - method in class gnu.javax.swing.text.html.parser.support.low.
Buffer Convert this Object to a human-readable String.
Converts the Byte
value to a String
and
assumes a radix of 10.
Convert this Object to a human-readable String.
Returns the bytes in the internal array as a String
.
Returns a string summarizing the state of this buffer.
Returns a string representation of the byte order.
Convert this Object to a human-readable String.
Returns a string representation of this object.
Returns a string representation of this layout manager.
Returns a string representing the Certificate.
Returns a printable representation of this certificate.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this to a string, including its cause.
Convert this to a string, including its cause.
Convert this to a string, including its cause.
Converts the wrapped character into a String.
Returns the name of the subset.
Returns the chars in the internal array as a String
.
Returns the remaining content of the buffer as a string.
Returns the complete CharSequence
as a String
.
Convert this Object to a human-readable String.
Returns a string representing the object.
Returns a string representation of this checkbox group.
Convert this Object to a human-readable String.
Return the human-readable form of this Object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Return a string representation.
This method returns a String
that represents this object.
Returns the name of the CodingErrorAction.
Return a string representation of these parameters.
Returns a string representation of this object.
Convert this Object to a human-readable String.
Returns the textual description of the color type.
Returns a short string representation.
Returns a string representation of this component.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Return a string description of this compound control.
Calculates a string that may be useful for debugging.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Get a String representation of the Constructor.
Returns a string representation (an expression) of this content model.
Convert this Object to a human-readable String.
Return a String descrsibing this control.
Return the name of this Type.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this CPStringBuilder
to a String
.
Returns a string representing the CRL.
Convert this Object to a human-readable String.
Returns the string representation of this attribute as specified
in the CSS specification.
Convert this Object to a human-readable String.
Returns the international ISO4217 currency code of this currency.
Returns a string representation of this DataFlavor.
Return a description of this Info object.
This method returns this date in JDBC format.
Returns a string representation of this date using
the following date format:
day mon dd hh:mm:ss zz yyyy
where the fields used here are:
-
day
-- the day of the week
(Sunday through to Saturday).
Returns the string representation for this object.
Returns a string with all relevant properties of this range
model.
Convert the list to a string representation.
Returns a string representation of the node.
Returns a String representation of this ElementSpec
describing the type, direction and length of this
ElementSpec
.
Returns a string that shows this object's properties.
Converts the input stream and underlying message digest to a string.
Converts the output stream and underlying message digest to a string.
Returns a string representation of this object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a string representation of this doc flavor object.
Returns a basic printable description of the event's type,
state, and delivery conditions
Convert the double
value of this Double
to a String
.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns the name of this instance of DTD.
Returns the lexical representation of this duration.
Returns the name of this element.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a textual representation of this enumeration constant.
Return a string describing this control.
Returns the string representation for this object.
Convert this Object to a human-readable String.
Returns a string representation of this object that may be useful
for debugging purposes.
Converts the event to a String.
Return a string representation of this expression.
Convert this Object to a human-readable String.
Get a String representation of the Field.
This method returns a String
representation of this
object.
This method returns a String
that is the path name of the
file as returned by getPath
.
Returns a string representation of the MapMode
object.
Convert this Object to a human-readable String.
Returns a string describing the range, type, and validity of this lock.
Convert the float
value of this Float
to a String
.
Return a string describing this control.
Return String description of this object.
Returns a string representation of this font.
Returns a string representation of this object.
Returns the string representation.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Get the string representation, separating the name components by slashes
Returns the representation of this POA tree.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Gets a string representation.
Returns a string representation of this object.
Return a string representation of this GridBagLayout.
Return String description of this object.
Returns a textual representation of both the major and minor status
codes.
Returns a textual representation of the GSSName object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Converts this Hashtable to a String, surrounded by braces, and with
key/value pairs listed with an equals sign between, separated by a
comma and space.
Get a string representation.
Convert this Object to a human-readable String.
Returns the attribute name.
Returns a String
of this object.
Returns a short string representation.
Returns a string representation of this Identity.
Returns a string representing this instance.
Convert this Object to a human-readable String.
Returns a short string representation.
Returns a short string representation.
Converts this address to a String.
Returns the InetSocketAddress
as string
Returns a string representation of this object, which will be non-null.
Converts the Integer
value to a String
and
assumes a radix of 10.
Returns the string representation for this object.
Returns a textual representation of this instance.
Returns a human readable string representation of this IOR object.
Returns a string representation.
Get a string representation.
Return the human readable representation.
Get a string reference for this object.
Returns "IppPrinter: " + getName()
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Create a string representation of this JPEG Huffman table.
Create a string representing this JPEG quantization table.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns the string representation of this exception.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Return a string representation of these parameters.
Get the string representation of this lease
Convert this Object to a human-readable String.
Returns the name of the Level without localizing it, for example
"WARNING".
Returns a short string representation.
Return a description of this Info object.
Return a description of this event.
Return the name of this Type.
Returns a string representation of this exception.
toString() - method in class gnu.javax.swing.text.html.parser.models.
list Returns a string representation of the list.
Returns a string representing the state of this event.
Returns a string representation of the event, typically used for debugging
purposes.
Gets the string representation of the current locale.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Converts the Location to a String
Returns a textual representation of the lock,
constructed by concatenating the class name,
'@'
and the identity hash code
in unsigned hexadecimal form.
Converts the Long
value to a String
and
assumes a radix of 10.
Returns a string that displays and identifies this object's properties.
Convert this Object to a human-readable String.
Returns "precision=p roundingMode=MODE" where p is an int giving the
precision and MODE is UP, DOWN, HALF_UP, HALF_DOWN, HALF_EVEN, CEILING,
FLOOR, or UNNECESSARY corresponding to rounding modes.
Convert this Object to a human-readable String.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns the string representation for this object in units of millimeters..
Returns a string representation of this component.
Returns a string representation of this shortcut.
Returns a string representation of this instance.
Get the short string summary of the message.
Get a String representation of the Method.
Simple return the name of the device.
Returns the complete string representation of this MIME type.
Returns an RFC 2045-compliant string representation of this parameter
list.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Creates a String with some information about this SampleModel.
Returns the string representation.
Get a string representation (id.kind).
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a string representation of this exception.
Returns a string representing the object.
Returns a string representation of the interface
toString() - method in class gnu.javax.swing.text.html.parser.models.
node Returns a string representation of the list.
Convert this Object to a human-readable String.
A textual representation of the notification.
Returns a textual representation of the object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Return the string representation of the passed object.
Returns a textual representation of the object name.
Returns a textual representation of this
ObjectStreamClass
object including the name of the
class it represents as well as that class's serial version
stream-unique identifier.
Returns a string representing this object.
Get the string representation.
Returns the value of this OID in dotted-decimal format.
Returns a string representation of the oid's integer components in
dot separated notation (e.g.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this type.
Return the name of the operation.
Returns a string representation of this <option>
tag.
Convert this Object to a human-readable String.
Returns a string representation of this package.
Convert this Object to a human-readable String.
This method returns a String
representation of this
object.
Return the regular expression used to construct this object.
This method returns a String
representation of this
Permission
object.
This method returns this Permission
as a String
.
This method returns a String
representation of this
collection.
Returns a printable representation of these parameters.
Returns a printable string representation of this result.
Returns a printable representation of these parameters.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a string representation of this object.
Returns a string representation of this object.
Returns a string representation of this object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a printable string representation of this object.
Return a description of this Info object.
Convert this Object to a human-readable String.
Returns the String given by
(isUserNode() ?
This method returns a String
representation of this
Principal
.
Returns a string representation of this object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this to a String.
Convert this Object to a human-readable String.
Returns a string representation of this object.
Convert this Object to a human-readable String.
This method returns a String
representation of this
object.
Returns a string representation of this Proxy
object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns the contents of a Range as a string.
Create a String representing the state of this Raster.
Return a human readable form of the compiled regular expression,
useful for debugging.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a string representation of this rectangle.
Returns a string representation of this rectangle.
Returns a string representation of this rectangle.
Returns a String representation of the RefAddr.
Return the string representation.
Returns the name of the region.
Returns the string matching the pattern.
Get the string representation of this remote object.
Returns a string representation of this instance.
Returns a short string representation.
Returns a short string representation.
Returns the string representation for this object.
Return a string representation.
Return a string representation.
Return a string representation.
Returns a short string representation.
Returns the string representation for this object.
Convert this Object to a human-readable String.
Return a description of this ReverbType.
Convert this Object to a human-readable String.
Return a string representation of this Robot.
Convert this Object to a human-readable String.
Returns the string representation of this exception.
Override toString to pick up any embedded exception.
Returns a string representation.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a String
containing the same characters as this
Segment
.
Returns a string representation of the selector.
Convert this Object to a human-readable String.
Use the SyncMode name as the string representation.
Returns a short string representation.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns the value of this socket as a String
.
Return a string representation.
Returns the string representation for this object.
Returns a short string representation.
Converts the Short
value to a String
and
assumes a radix of 10.
Returns a rstring representation of this instance.
Returns a string representation of this instance, typically used for
debugging purposes.
Returns a string representation of this
class.
Returns a string representation of this SimpleTimeZone object.
Returns a textual representation of this instance.
Creates a String with some information about this SampleModel.
Returns the string representation for this object.
Returns a String representation of this SizeRequirements object,
containing information about the minimum, preferred, maximum and
alignment value.
Converts this Socket
to a String
.
Returns a String
representing the remote host and port of
this socket.
Convert this Object to a human-readable String.
Returns a string representation of this stack trace element.
toString() - method in class org.omg.PortableServer.POAManagerPackage.
State Returns a short string representation.
Returns a string representation of this Statement
.
Convert this Object to a human-readable String.
This method returns the current token value as a String
in
the form "Token[x], line n", where 'n' is the current line numbers and
'x' is determined as follows.
Returns this, as it is already a String!
Convert this StringBuffer
to a String
.
Convert this StringBuffer
to a String
.
Convert this StringBuilder
to a String
.
Convert this Object to a human-readable String.
Returns the value in quotes.
This method returns the contents of the internal StringBuffer
as a String
.
Get the string representation of this Stub.
Returns a string representation of the attribute key.
Returns a string representation of this StyleContext.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a string describing this color.
Returns a string representation of this TabSet
.
Returns a string describing this TabStop
.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns a textual representation of this instance.
Returns string representation of this object.
Convert this Object to a human-readable String.
Returns a textual representation of the object.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a string representing the object.
Returns a string representation of this thread, including the
thread's name, priority, and thread group.
Return a human-readable String representing this ThreadGroup.
Returns a short string representation.
Get a human-readable representation of this Throwable.
This method returns this date in JDBC format.
This method returns this date in JDBC format.
toString() - method in class gnu.javax.swing.text.html.parser.support.low.
Token Returns the string image or, if null, the bounding positions.
Returns the string representation of this exception.
Returns a string representation of this path.
Return a printable representation of this trust anchor.
Convert this Object to a human-readable String.
Get the string representation of this UID.
Returns a String representation of the LookAndFeelInfo object.
Returns a string representation of this object that may be useful
for debugging.
Returns a string representation for this UndoManager.
Get the string representation, describing the connection.
Convert this Object to a human-readable String.
Provides a string representation for some default
tag types (e.g. int, rangeofinteger, string, uri).
Convert this Object to a human-readable String.
This method returns a String
representation of this
class.
Returns the URI as a String.
Returns the string representation for this object.
Returns a String representing this URL.
Returns a String representation of this URLClassLoader giving the
actual Class name, the URLs that are searched and the parent
ClassLoader.
The methods prints the value of this object as a String by calling the
toString() method of its associated URL.
Returns a String representation of the UUID.
Convert this Object to a human-readable String.
Returns a string representation of this Vector in the form
"[element0, element1, ... elementN]".
Return the string representation, in the form
major.minor.
Convert this Object to a human-readable String.
Get the string representation of this VMID.
Returns a string representation of this method (not
required but nice for debugging).
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Returns a string that represents this X509CRLEntry.
Returns a string representation of this selector.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Convert this Object to a human-readable String.
Gets the string representation of this ZipEntry.
Returns a string representation of this ZoneInfo object.
Returns "true" if the value of the give boolean is true
and
returns "false" if the value of the given boolean is false
.
This method returns a String
representation of the contents
of this certificate.
Returns a detailed string representation of this Identity.
Returns a String representation of this exception and possibly including
the part object that could be resolved if the given flag is set to true.
Returns a String representation of this exception and possibly including
the part object that could be resolved if the given flag is set to true.
Returns a String representation of the argument array.
Converts the byte
to a String
and assumes
a radix of 10.
Returns a String representation of the argument array.
Returns a string of hexadecimal digits from a byte array.
Returns a string of hexadecimal digits from a byte array, starting at
offset
and consisting of length
bytes.
Returns a String of length 1 representing the specified character.
Returns a String representation of the argument array.
Convert the double
to a String
.
Returns a String representation of the argument array.
Convert the float
to a String
.
Returns a String representation of the argument array.
This method returns the bytes in the internal array as a
String
.
Makes a string representation of a fixed-point number.
Converts the int
to a String
and assumes
a radix of 10.
Get a string representation of all the modifiers represented by the
given int.
Returns the string matching the given subexpression.
Returns a string of 8 hexadecimal digits (most significant digit first)
corresponding to the unsigned integer n
.
Converts the int
to a String
using
the specified radix (base).
Returns the string representation for this object in units of millimeters..
Returns the string representation for this object.
Returns the string representation for this object.
Returns a String representation of the argument array.
Returns a string of hexadecimal digits from an integer array.
Returns a String representation of the argument array.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns the bytes in the internal array as a String
.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Returns a printable representation of this structure, with the
given prefix prepended to each line.
Get the string representation of this stub.
Returns the IOR reference of the connected ORB.
Converts the long
to a String
and assumes
a radix of 10.
Returns a string of 16 hexadecimal digits (most significant digit first)
corresponding to the unsigned long n
.
Converts the long
to a String
using
the specified radix (base).
Returns a String representation of the argument array.
Return a string representation of the passed object.
Converts the name into its string representation, as defined in
the specification CORBA naming service.
Converts the short
to a String
and assumes
a radix of 10.
Returns a String representation of the argument array.
Returns a multiline formatted human readable string representation of
this IOR object.
Get a better formatted multiline string representation.
Returs a stringified reference.
Takes a server implementation object (name pattern *imp) and returns a stub
object that can be used to access that server object (target), name
(pattern _*_Stub).
Takes a server implementation object and returns a stub object that can be
used to access that server object (target).
Get stub for the given implementation, searching by class name pattern.
Total fistance that will be indented.
The total width of all the columns in this model.
Find out how much memory total is available on the heap for allocating
Objects.
Converts a Unicode character into its titlecase equivalent mapping.
Converts a Unicode character into its titlecase equivalent mapping.
The single pages are arranged on the media in columns starting
at the bottom right towards the top left.
The single pages are arranged on the media in columns starting
at the bottom left towards the top right.
Similar to the toString()
method except that the Unicode
escape character is inserted before every pair of bytes.
Similar to the toString()
method except that the Unicode
escape character is inserted before every pair of bytes.
Similar to the toString()
method except that the Unicode
escape character is inserted before every pair of bytes.
Converts a Unicode character into its uppercase equivalent mapping.
Converts a Unicode character into its uppercase equivalent mapping.
Uppercases this String according to a particular locale.
Returns a URI that represents this file object.
Returns the equivalent URI
object for this URL
.
This method returns a URL
with the file:
protocol that represents this file.
Creates an URL from an URI
If the message body is received, the time out changes to the specifice
value.
The if the client has once opened a socket, it should start sending the
message header in a given time.
If the client has started to send the request message, the socket time out
changes to the specified value.
Returns the XML Schema lexical representation of this calendar.
TR - static field in class javax.swing.text.html.
HTML.Tag The <tr> tag , block tag.
Tell the VM to trace every bytecode instruction that executes (print out
a trace of it).
Tell the VM to trace every method call that executes (print out a trace
of it).
Adjustment type for tracking adjustments.
A Track contains a list of timecoded MIDI events for processing
by a Sequencer.
The gap between the edges of the contentRect and trackRect.
The MediaTracker used to monitor the loading of images.
The current highlight status.
The color that is used when the mouse press occurs in the track.
Helper class that listens for movement on the track.
Helper class that listens for mouse events.
The size and position of the track.
Rectangle describing the track bounds.
The MIDI tracks used by this sequence.
Locale which represents the Chinese language as used in Taiwan.
Constant for all Han characters used in writing Traditional Chinese,
including a subset of the CJK unified ideographs as well as Traditional
Chinese Han characters that may be defined as surrogate characters.
Constant that specifies alignment to trailing edge of container's
orientation.
A value for the titleJustification
property that
horizontally aligns the title text with either the right or the
left edge of the border, depending on the orientation of the
component nested into the border.
Raised when the TransactionPolicy in the IOR is not the same as the current
transaction mode.
Creates TRANSACTION_MODE with the default minor code of 0 and a
completion state COMPLETED_NO.
Creates a TRANSACTION_MODE exception with the specified minor
code and completion status.
Creates TRANSACTION_MODE with the default minor code of 0,
completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_MODE exception, providing full information.
This transaction isolation level indicates that transactions are not
supported.
This transaction isolation level indicates that only committed data from
other transactions will be read.
This transaction isolation level indicates that one transaction can
read modifications by other transactions before the other transactions
have committed their changes.
This transaction isolation level indicates that only committed data from
other transactions will be read.
Means that request carried a null transaction context, but an
active transaction is required.
Creates TRANSACTION_REQUIRED with the default minor code of 0 and a
completion state COMPLETED_NO.
Creates a TRANSACTION_REQUIRED exception with the specified minor
code and completion status.
Creates a TRANSACTION_REQUIRED with the default minor code of 0,
completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_REQUIRED exception, providing full information.
Means that transaction associated with the request has already
been rolled back or marked to roll back.
Creates TRANSACTION_ROLLEDBACK with the default minor code of 0 and a
completion state COMPLETED_NO.
Creates a TRANSACTION_ROLLEDBACK exception with the specified minor
code and completion status.
Creates a TRANSACTION_ROLLEDBACK with the default minor code of 0,
completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_ROLLEDBACK exception, providing full information.
This transaction isolation level indicates that only committed data from
other transactions will be read.
Raised in response to the abnormal termination of the transaction
service.
Creates TRANSACTION_UNAVAILABLE with the default minor code of 0 and a
completion state COMPLETED_NO.
Creates a TRANSACTION_UNAVAILABLE exception with the specified minor
code and completion status.
Creates TRANSACTION_UNAVAILABLE with the default minor code of 0,
completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_UNAVAILABLE exception, providing full information.
Create an exception with no message, and cause initialized to null.
Create an exception with the given message, and cause initialized to null.
Holds the integer identifier of the TransactionService context.
This interface is implemented by classes that can transfer data.
This function tells the peer that the DataFlavors have been modified.
Transfers focus to the next component in the focus traversal
order, as though this were the current focus owner.
Transfers focus to the previous component in the focus traversal
order, as though this were the current focus owner.
Transfer focus down one focus traversal cycle.
Transfers focus to the focus cycle root of this component.
Transfers bytes from the given readable channel into this channel.
The current transfer mode.
Transfers bytes from this channel's file to the given writable byte
channel.
The transformation for this Graphics2D instance
The affine transformation the font is currently subject to.
A key for the TRANFORM attribute.
The block digest transformation per se.
Adds BLOCK_LENGTH
bytes to the running digest.
The block digest transformation per se.
The block digest transformation per se.
The block digest transformation per se.
The block digest transformation per se.
Perform this transformation on an array of points, in (x,y) pairs,
storing the results in another (possibly same) array.
Perform this transformation on an array of points, in (x,y) pairs,
storing the results in another array.
Perform this transformation on an array of points, in (x,y) pairs,
storing the results in another array.
Perform this transformation on an array of points, in (x,y) pairs,
storing the results in another (possibly same) array.
Transforms the coordinate system using the specified transform
t
.
Transforms this area by the AffineTransform at.
Applies a transform to the path.
Sets the current transform to a concatenation of transform
and the existing transform.
Sets the current transform to a concatenation of transform
and the existing transform.
Sets the current transform to a concatenation of transform
and the existing transform.
Perform this transformation on the given source point, and store the
result in the destination (creating it if necessary).
Perform this transformation on an array of points, storing the results
in another (possibly same) array.
Implementation of this method transforms a class by redefining its
bytecodes.
Transform into internal representation without usind dtd.
Transform into internal representation.
Transforms the given source and writes the result to the
given target.
Transforms the source XML to a result tree.
Creates a new attribute that contains a copy of the given transform.
A Transformer
is an abstract representation of a two-way
transformation that can be chained together with other instances of
this type.
Transforms the standard ContentModel tree into the internal representation,
used in this implementation.
Trivial protected constructor.
An exception occurred during configuration of the transformer.
Constructor with no detail message.
Constructor with a detail message.
Constructor with detail message and underlyinmg cause.
Constructor with detail message and locator.
Constructor with detail message, locator and underlying cause.
Constructor with underlying cause.
An exception occurred during the transformation process.
Create an exception without a message.
Create an exception with a message.
Constructor with a detail message.
Create an exception with a message and a cause.
Constructor with a detail message and underlying cause.
Constructor with a detail message and locator.
Constructor with detail message, locator and underlying cause.
Create an exception with a given cause, and a message of
cause == null ?
Constructor with an underlying cause.
Factory for obtaining transformation contexts.
An error occurred during configuration of the transformer factory.
Constructor with no detail message.
Constructor with an underlying cause.
Constructor with an underlying cause and detail message.
Constructor with a detail message.
GNU transformer factory implementation.
A content handler that transforms SAX events into a result tree.
Indicates that this object is transient.
An instance of LifespanPolicyValue, initialized to TRANSIENT.
Transient: Field: not serialized or deserialized.
Means that the ORB cannot reach the object.
Creates TRANSIENT with the default minor code of 0 and a
completion state COMPLETED_NO.
Creates a TRANSIENT exception with the specified minor
code and completion status.
Creates a TRANSIENT with the default minor code of 0,
completion state COMPLETED_NO and the given explaining message.
Created TRANSIENT exception, providing full information.
This class implements the transient naming service, defined by
NamingContext
.
Create the naming conetxt with default (transient) naming maps.
Create the naming conetxt with the two provided naming maps.
Translates the coordinate system by (tx, ty).
Concatenate a translation onto this transform.
Translate the system of the co-ordinates.
Translates the coordinate system by (x, y).
Translates this context so that its new origin point is the point
(x, y).
Changes the coordinates of this point such that the specified
dx
parameter is added to the existing X coordinate and
dy
is added to the existing Y coordinate.
Translates the polygon by adding the specified values to all X and Y
coordinates.
Translate the location of this rectangle by the given amounts.
Converts a set of HTML attributes to an equivalent set of CSS attributes.
Translates the key from an unknown or untrusted provider into a key from
this key factory.
Translate a secret key into another form.
Translates the event coordinates by the specified x and y offsets.
Translate the HTML character attribute to the Swing style constant.
Translates Java data types to their equivalent
open data type, and vice versa, according to the
MXBean
rules.
Image data which is translucent, for a non-integer alpha value.
This interface specifies the methods required by objects which send
MIDI events to Receivers, including MIDI IN ports and Sequencers.
A common transparency mode for layering graphics.
This image's transparency type.
Unablie to initialize the transport
Unable to load the transport
A reply status, indicating the necessity of the transport retry.
A transport configury or initialization exception thrown by
JDWP transports.
Constructs a TransportException
with the
given message
Constructs a TransportException
with the
given Throwable
root cause
A factory class that constructs transports for use by
the JDWP back-end.
Traverses the elements in the object tree
and creates their XML representation in the output
stream of the given
Writer
.
Finally the
Writer
is flushed.
An object which represents a hierachical view of data.
Component that we're going to be drawing onto.
JTree instance listening too.
TREE - static field in class javax.swing.plaf.synth.
Region Specifies the region of a tree.
Specifies the region of a tree cell.
The action to cancel editing on this tree.
Creates the new tree cancel editing action.
A
TreeCellEditor
is used by the
JTree
component to
edit individual tree elements (nodes).
A
TreeCellRenderer
is used by the
JTree
component to
paint individual tree elements (nodes).
Called whenever an item in the tree has been collapsed.
Tree Collapsed notification
Sent when the tree has changed enough that we need to resize the bounds,
but not enough that we need to remove the expanded node set (e.g nodes were
expanded or collapsed, or nodes were inserted into the tree).
Called whenever an item in the tree has been expanded.
Tree Model Expansion notification.
Constructor TreeExpansionEvent
Updates the TreeState in response to nodes expanding/collapsing.
TreeExpansionListener public interface
TreeHomeAction is used to handle end/home actions.
Creates a new TreeHomeAction instance.
TreeIncrementAction is used to handle up/down actions.
Creates a new TreeIncrementAction.
This class provides a red-black tree implementation of the SortedMap
interface.
Instantiate a new TreeMap with no elements, using the keys' natural
ordering to sort.
Instantiate a new TreeMap, initializing it with all of the elements in
the provided Map.
Instantiate a new TreeMap with no elements, using the provided comparator
to sort.
Instantiate a new TreeMap, initializing it with all of the elements in
the provided SortedMap.
Used to determine what to display.
TreeModel public interface
Constructor TreeModelEvent
Constructor TreeModelEvent
Constructor TreeModelEvent
Constructor TreeModelEvent
Forwards all TreeModel events to the TreeState.
Listens to the model of the JTree and updates the property
expandedState
if nodes are removed or changed.
Creates a new instance of TreeModelHandler.
TreeModelListener public interface
Handles TreeModelEvents to update the expandedState.
Invoked after a node (or a set of siblings) has changed in some way.
The listener method, called when the tree nodes are changed.
Tree Model Node change notification.
Notifies when a node has changed in some ways.
The listener method, called when the tree nodes are changed.
Invoked after nodes have been inserted into the tree.
The listener method, called when the tree nodes are inserted.
Tree Model Node change notification.
Notifies when a node is inserted into the tree.
The listener method, called when the tree nodes are inserted.
Invoked after nodes have been removed from the tree.
The listener method, called when the tree nodes are removed.
Tree Model Node change notification.
Notifies when a node is removed from the tree.
The listener method, called when the tree nodes are removed.
TreePageAction handles page up and page down events.
A TreePath
represents a sequence of tree elements that form
a path starting from the root of a tree.
Creates a new path from a single element.
Creates a path from the list of objects representing tree elements.
Creates a new tree path using the first length
elements
from the given array.
Creates a new tree path by adding the specified element
to
the path
.
Creates a new TreeSelectionEvent
.
Creates a new TreeSelectionEvent
.
Listens for changes in the selection model and updates the display
accordingly.
Model maintaining the selection.
TreeSelectionModel public interface
This redirects TreeSelectionEvents and rewrites the source of it to be
this JTree.
Creates a new instance of TreeSelectionRedirector
This class provides a TreeMap-backed implementation of the SortedSet
interface.
Construct a new TreeSet whose backing TreeMap using the "natural"
ordering of keys.
Construct a new TreeSet, using the same key ordering as the supplied
SortedSet and containing all of the elements in the supplied SortedSet.
Construct a new TreeSet whose backing TreeMap uses the "natural"
orering of the keys and which contains all of the elements in the
supplied Collection.
Object responsible for handling sizing and expanded issues.
Invoked after the tree has drastically changed structure from a given
node down.
Called when the tree structure has been changed.
Tree Model structure change change notification.
Notifies when the structure of the tree is changed.
Called when the tree structure has been changed.
For the first selected row expandedness will be toggled.
Creates a new TreeToggleAction.
TreeTraverseAction is the action used for left/right keys.
An abstract base class for delegates that provide the user
interface for JTree
.
TreeWalker
objects are used to navigate a document tree or
subtree using the view of the document defined by their
whatToShow
flags and filter (if any).
Invoked whenever a node in the tree is about to be collapsed.
Invoked whenever a node in the tree is about to be expanded.
Trims all characters less than or equal to '\u0020'
(' '
) from the beginning and end of this String.
Returns a portion of a byte array, possibly zero-filled.
Treats the input as the MSB representation of a number, and discards
leading zero elements.
Returns the byte array representation of the given big integer with
the leading zero byte (if any) trimmed off.
Discards a range of edits.
Called by various internal methods in order to enforce
the limit
value.
Trims the capacity of this List to be equal to its size;
a memory saver.
This may reduce the amount of memory used by the StringBuffer,
by resizing the internal array to remove unused space.
Sets the capacity of the list to be equal to its size.
Minimize extra space consumed by this node to hold children and event
listeners.
This may reduce the amount of memory used by the StringBuffer,
by resizing the internal array to remove unused space.
Trims the Vector down to size.
Triple-DES, 3DES, or DESede is a combined cipher that uses three
iterations of the Data Encryption Standard cipher to theoretically improve
the security of plain DES, at the cost of speed.
Create a new MacSpi instance.
Default 0-arguments constructor.
The GNU implementation of the Triple DES Key Wrap Algorithm as described in
[1].
The JCE Cipher Adapter implementation over the GNU TripleDES Key Wrapping
Algorithm.
The implementation of the Triple-DES Service Provider Interface
(SPI) adapter.
This field is a Boolean
object representing the
primitive value true
.
Indicates to createFont
that the supplied font data
is in TrueType format.
A scaler for fonts whose outlines are described in the TrueType
format.
TrueTypeScaler(int,java.nio.ByteBuffer,java.nio.ByteBuffer,java.nio.ByteBuffer,java.nio.ByteBuffer,java.nio.ByteBuffer,java.nio.ByteBuffer,java.nio.ByteBuffer,int,java.nio.ByteBuffer,java.nio.ByteBuffer,java.nio.ByteBuffer) - constructor for class gnu.java.awt.font.opentype.truetype.
TrueTypeScaler Constructs a new TrueTypeScaler.
Truncates the number so that only the digits after the point are left.
Truncates this Blob
to be at most the specified number of
bytes long.
Truncates this Clob
to be at most the specified number of
characters long.
Truncates the channel's file at size
.
Indicates that this particular object is truncated when displayed
visually.
Property name of the desired truncated output size in bytes.
The value type for the Extension.Type
extension.
The length of the truncated output in bytes.
An ultimately-trusted certificate to serve as the root of a
certificate chain.
Create a new trust anchor from a certificate authority's
distinguished name, public key, and (optional) name constraints.
Create a new trust anchor from a certificate and (optional) name
constraints.
The trusted authorities hello extension.
A marker interface for classes that establish the trust of remote
hosts.
A factory for creating trust manager objects.
Creates a new trust manager factory.
The service provider interface (SPI) for trust managers.
Tries to aqquire alock on the whole associated file.
Tries to aqquire a lock on a region of the associated file.
This method attempts to load the named class.
TT - static field in class javax.swing.text.html.
HTML.Tag The <tt> tag
A constant indicating that the end of the stream has been read.
A constant indicating that the end of the stream has been read.
A constant indicating that the end of the line has been read.
A constant indicating that a number token has been read.
A constant indicating that a word token has been read.
A constant indicating that a word token has been read.
Contains the type of the token read resulting from a call to nextToken
The rules are as follows:
- For a token consisting of a single ordinary character, this is the
value of that character.
- For a quoted string, this is the value of the quote character
- For a word, this is TT_WORD
- For a number, this is TT_NUMBER
- For the end of the line, this is TT_EOL
- For the end of the stream, this is TT_EOF
Constant representing Tuesday.
TUMBLE - static field in class javax.print.attribute.standard.
Sides An alias constant for "two sided short edge".
An alias constant for "two sided short edge".
An alias constant for "two sided short edge".
Status byte for Tune Request message.
The server waits for this duration after the potentially transient error
during its servicing cycle.
Specifies that two following pages should be printed on the
front and back of one sheet for binding on the long edge.
Specifies that two following pages should be printed on the
front and back of one sheet for binding on the long edge.
Specifies that two following pages should be printed on the
front and back of one sheet for binding on the long edge.
Specifies that two following pages should be printed on the
front and back of one sheet for binding on the short edge.
Specifies that two following pages should be printed on the
front and back of one sheet for binding on the short edge.
Specifies that two following pages should be printed on the
front and back of one sheet for binding on the short edge.
Converts two octets into the number that they represent.
Converts two octets into the number that they represent.
Twofish is a balanced 128-bit Feistel cipher, consisting of 16 rounds.
Create a new MacSpi instance.
Trivial 0-arguments constructor.
Create a new secret key factory SPI.
The implementation of the Twofish Service Provider Interface
(SPI) adapter.
The type of the attribute.
An instance of this type describes a standard audio file format.
The primitive type boolean
is represented by this
Class
object.
A Type specialized to represent a boolean control.
TYPE - static field in class java.lang.
Byte The primitive type byte
is represented by this
Class
object.
Class object representing the primitive char data type.
This describes a single compound control.
Specifies the BNF operation between this node and the node,
stored in the field next
(or for this node, if it is
an unary operation.
This describes a single control.
The primitive type double
is represented by this
Class
object.
type - field in class javax.swing.text.html.parser.
Element The element type, containing value, defined in DTDConstants.
type - field in class javax.swing.text.html.parser.
Entity The entity type.
type - field in class gnu.javax.crypto.keyring.
Entry This entry's type identifier.
This Type describes an EnumControl.
type - field in class gnu.xml.validation.datatype.
Facet The type of this facet.
The primitive type float
is represented by this
Class
object.
An instance of this class describes a particular floating point control.
Type - class gnu.xml.validation.datatype.
Type Abstract base class for XML Schema datatypes.
The primitive type int
is represented by this
Class
object.
Represents any Type
within the Java programming
language.
This class represents the kinds of state changes that can occur
to a Line.
TYPE - static field in class java.lang.
Long The primitive type long
is represented by this
Class
object.
Represents the proxy type.
The primitive type short
is represented by this
Class
object.
The typecode of the structure member.
The typecode of the union member.
The type of of this value member.
TYPE - static field in class java.lang.
Void The return type void
is represented by this
Class
object.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
The remote call of DynAny methods is not possible.
Get the typecode of the remote IDL type object.
Create the AdapterAlreadyExists typecode (emtpy structure,
named "AdapterAlreadyExists").
Create the AdapterInactive typecode (structure,
named "AdapterInactive").
Create the AdapterManagerId typecode (alias of CORBA long (java int), named
"AdapterManagerId").
Creates and returns a new instance of the TypeCode, corresponding the
adapter name.
Create the AdapterNonExistent typecode (empty structure,
named "AdapterNonExistent").
Create the AdapterState typecode (alias of short
,
named "AdapterState").
Return the "Address", alias of String, typecode.
Create the type code for this exception.
Returns the TypeCode of the object, stored in this Any
Creates and returns a new instance of the TypeCode,
corresponding the array of
Any
's.
Get the typecode as officially defined for this helper.
Create the type code for this exception.
Create the type code for the BindingIterator.
Return the binding array type code.
Get the type code of this enumeration.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA BooleanSeq
.
Create the type code for this exception.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA CharSeq
.
Get the parameter mode typecode (enumeration, named "CompletionStatus").
Create the ComponentId typecode (alias of CORBA ulong, named "ComponentId".
Get the type code of the POA Current.
Get the definition kind typecode (enumeration, named "DefinitionKind").
Creates and returns a new instance of the TypeCode,
corresponding the CORBA DoubleSeq
.
Create the DuplicateName typecode (structure, named "DuplicateName").
Returns the typecode of the object, inserted into this
DynAny.
Get the type code of the
DynAny
.
Returns the typecode of the object, inserted into this DynAny.
Return an string alias typecode, named "FieldName".
Return an alias typecode.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA FloatSeq
.
Create the FormatMismatch typecode (structure,
named "FormatMismatch").
Create the ForwardRequest typecode (structure,
named "ForwardRequest").
Create the ForwardRequest typecode (structure, named "ForwardRequest").
Create the ForwardRequest typecode (structure,
named "ForwardRequest").
Returns the handshake type.
Return an string alias typecode, named "Identifier".
Get the typecode of the IDL type (the interface typecode, name "IDLType").
Get the type code of the interface repository object.
Create the InconsistentTypeCode typecode (structure, named
"InconsistentTypeCode").
Create the type code for this exception.
Create the type code for this exception.
Create the InvalidName typecode (structure, named "InvalidName").
Create the InvalidPolicy typecode (emtpy structure,
named "InvalidPolicy").
Create the InvalidSlot typecode (structure, named "InvalidSlot").
Create the InvalidTypeForEncoding typecode (structure, named
"InvalidTypeForEncoding").
Create the InvalidValue typecode (structure, named "InvalidValue").
Create the IOR typecode (structure, named "IOR").
Return an alias typecode.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA LongLongSeq
.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA LongSeq
.
Get the type code of the named component.
Create the NameDynAnyPair typecode (structure,
named "NameDynAnyPair").
Get the type code of the Name.
Create the type code for the name value pair.
Create the NameValuePair typecode (structure,
named "NameValuePair").
Create the NoContext typecode (structure, named "NoContext").
Create the NoServant typecode (empty structure,
named "NoServant").
Create the type code for this exception.
Create the type code for this exception.
Create the type code for this exception.
Create the ObjectAlreadyActive typecode (empty structure,
named "ObjectAlreadyActive").
Return the object type code.
Return an alias typecode (an alias of the octet sequence).
Return an alias typecode.
Create the ObjectNotActive typecode (empty structure,
named "ObjectNotActive").
Creates and returns a new instance of the TypeCode, corresponding the CORBA
ObjectReferenceTemplate[]
.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA OctetSeq
.
Return an alias typecode.
Get the parameter mode typecode (enumeration, named "ParameterMode").
Get the type code of the
POA
.
Returns a typecode of the policy error code, stating it is an alias of
short
, named "PolicyErrorCode".
Create the PolicyError typecode.
Get the type code of the
Policy
.
Get the type code of the
Policy
[].
Create the PolicyType typecode (alias of CORBA ulong, named "PolicyType".
Create the ProfileId typecode (alias of CORBA ulong, named "ProfileId".
Returns the of this proxy instance.
Return an string alias typecode, named "RepositoryId"
Create the ServantAlreadyActive typecode (structure,
named "ServantAlreadyActive").
Create the ServantNotActive typecode (empty structure,
named "ServantNotActive").
Return an alias typecode.
Create the ServiceContext typecode (structure, named "ServiceContext").
Get the typecode of the service detail, assuming to be it
a structure with the two fields.
Create the ServiceId typecode (alias of CORBA ulong, named "ServiceId".
Get the service information typecode.
Get the definition kind typecode (enumeration, named "SetOverrideType").
Creates and returns a new instance of the TypeCode,
corresponding the CORBA ShortSeq
.
Return the "StringName", alias of String, typecode.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA string[]
.
Create and return the value box typecode, named "StringValue", with the
content typecode being unbounded string.
Get a typecode for the StructMember.
Returns a typecode of the synchronization scope, stating it
is an alias of short
, named "SyncScope".
Create the TaggedComponent typecode (structure, named "TaggedComponent").
Create the TaggedProfile typecode (structure, named "TaggedProfile").
Create the TypeMismatch typecode (structure, named "TypeMismatch").
Create the TypeMismatch typecode (structure,
named "TypeMismatch").
Creates and returns a new instance of the TypeCode,
corresponding the CORBA ULongLongSeq
.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA ULongSeq
.
Get the typecode of this enumeration.
Create and return the typecode for this union member.
Create the UnknownEncoding typecode (structure,
named "UnknownEncoding").
Create the UnknownUserException typecode (structure,
named "UnknownUserException", containing a single field of
type
Any
, named "except".
Return the "URLString", alias of String, typecode.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA UShortSeq
.
Get the typecode of the value type.
Create a typecode for this value member.
Return an string alias typecode, named "VersionSpec".
Return an alias of short, named "Visibility".
Creates and returns a new instance of the TypeCode,
corresponding the CORBA WCharSeq
.
Create the WrongAdapter typecode (empty structure,
named "WrongAdapter").
Create the WrongPolicy typecode (empty structure,
named "WrongPolicy").
Create the WrongTransaction typecode (structure,
named "WrongTransaction"), no fields.
Creates and returns a new instance of the TypeCode,
corresponding the CORBA wstring[]
.
Create and return the value box typecode, named "WStringValue", with the
content typecode being unbounded string.
Create a new Type given its name.
Create a new Type given its name.
Create a new Type given its name.
Create a new Type given its name.
Create a new type given its name.
Create a new type with the indicated name.
Create a new Type given its name and file extension.
Set the type of the object, stored in this Any
, to the
given TypeCode.
Explicitly set the typecode of the value to the given type.
Indicates to createFont
that the supplied font data
is in Type1 format.
Converts a value from DTDConstants into the string representation.
A constant representing a data type that uses byte
primitives
as the storage unit.
The IDL type of the structure member.
The IDL type of the union member.
The typedef that represents the IDL type of the value member.
A constant representing a data type that uses double
primitives as the storage unit.
If the expression cannot be converted to return the specified type.
The transformation includes a flip about an axis, swapping between
right-handed and left-handed coordinate systems.
A constant representing a data type that uses float
primitives as the storage unit.
This type of result set may only step forward through the rows returned.
The transformation includes a rotation by an arbitrary angle.
The transformation includes a general scale - length is scaled in either
or both the x and y directions, but by different amounts; without
affecting angles.
The transformation is an arbitrary conversion of coordinates which
could not be decomposed into the other TYPEs.
(recognized) PNG chunk types.
The object repository Id.
The transformation is the identity (x' = x, y' = y).
Device is an image buffer not visible to the user.
A constant representing a data type that uses int
primitives as the storage unit.
This constant checks if either variety of rotation is performed.
This constant checks if either variety of scale transform is performed.
Variable is not an appropriate type for the function used
If the type of an object is incompatible with the expected type of the
parameter associated to the object.
Returns a constant indicating the modifier of the value type.
The transformation includes a rotation of a multiple of 90 degrees (PI/2
radians).
Device is a raster screen.
This type of result set is scrollable and is not sensitive to changes
made by other statements.
This type of result set is scrollable and is also sensitive to changes
made by other statements.
A constant representing a data type that uses short
primitives as the storage unit.
The transformation includes a translation - shifting in the x or y
direction without changing length or angles.
A constant representing an undefined data type.
The transformation includes a uniform scale - length is scaled in both
the x and y directions by the same amount, without affecting angles.
A constant representing a data type that uses short
primitives as the storage unit.
The object class that this id represents
The object class that this id represents
The object class that this id represents
The object class that this id represents
The object class that this id represents
The object class that this id represents
The object class that this id represents
The typecode of the wrapped exception.
The complete typecode of the Streamable, if explicitly set.
An information about a CORBA data type.
Reads and writes the TypeCodes usind common data representation.
A holder for CORBA TypeCode
that is mapped into
java TypeCode
.
Constructs an instance of TypeCodeHolder,
initializing
value
to
null
.
Constructs an instance of TypeCodeHolder,
initializing
value
to the given
TypeCode
.
The TypeInfo
interface represents a type referenced from
Element
or Attr
nodes, specified in the schemas
associated with the document.
Provides access to the PSVI type info supplied by
ValidatorHandler
.
A conveniency method for naming the built-in types.
Datatype library for XML Schema datatypes.
Datatype library factory for XML Schema datatypes.
This exception is thrown by dynamic any accessor methods when type of the actual contents do not match what is trying to be accessed.
Raised when the operation cannot be performed because the involved
data structure has the mismatching typecode.
The TypeMismatch may be thrown by various methods in org.omg.DynamicAny
package when the operation is not applicable due unexpected
TypeCode
.
Creates TypeMismatch without explaining message.
Create TypeMismatch with no explaining
message.
Create TypeMismatch with no explaining message.
Created TypeMismatch exception, providing the explaining message.
Create the TypeMismatch with explaining
message.
Create the TypeMismatch with explaining message.
An exception throw when attempting to access a local variable of the wrong
type.
Create an exception with a message.
Returns the name of the missing type.
A NULL value is not allowed for this data type.
Thrown when a type is accessed using a String
-based
representation, but no definition of the supplied type is found.
Constructs a TypeNotPresentException
for
the supplied type.
A NULL value is allowed for this data type.
It is unknown whether or not NULL values are allowed for this data type.
All WHERE clauses except "WHERE..LIKE" style are allowed on this data type.
Only "WHERE..LIKE" style WHERE clauses are allowed on this data type.
Where clauses are not supported for this type.
This class contains constants that are used to identify SQL data types.
Any type of WHERE clause is allowed for this data type.
This class provides static methods that can be used to compute
type-signatures of Class
s or Member
s.
This is a common interface for all type variables provided by
the Java language.