|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Hashtable | |
java.awt | Contains all of the classes for creating user interfaces and for painting graphics and images. |
java.awt.image | Provides classes for creating and modifying images. |
java.security | Provides the classes and interfaces for the security framework. |
java.util | Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). |
javax.swing | Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. |
javax.swing.plaf.basic | Provides user interface objects built according to the Basic look-and-feel. |
javax.swing.text.html.parser | |
javax.swing.undo | Provides support for undo/redo capabilities in an application such as a text editor. |
Uses of Hashtable in java.awt |
Fields in java.awt declared as Hashtable | |
protected Hashtable |
GridBagLayout.comptable
This hashtable maintains the association between a component and its gridbag constraints. |
Uses of Hashtable in java.awt.image |
Methods in java.awt.image with parameters of type Hashtable | |
void |
ImageFilter.setProperties(Hashtable props)
Passes the properties from the source object along after adding a property indicating the stream of filters it has been run through. |
void |
ReplicateScaleFilter.setProperties(Hashtable props)
Passes along the properties from the source object after adding a property indicating the scale applied. |
void |
CropImageFilter.setProperties(Hashtable props)
Passes along the properties from the source object after adding a property indicating the cropped region. |
void |
PixelGrabber.setProperties(Hashtable props)
The setProperties method is part of the ImageConsumer API which this class must implement to retrieve the pixels. |
void |
ImageConsumer.setProperties(Hashtable props)
Sets the extensible list of properties associated with this image. |
Constructors in java.awt.image with parameters of type Hashtable | |
BufferedImage.BufferedImage(ColorModel cm,
WritableRaster raster,
boolean isRasterPremultiplied,
Hashtable properties)
Constructs a new BufferedImage with a specified
ColorModel and Raster . |
|
MemoryImageSource.MemoryImageSource(int w,
int h,
ColorModel cm,
byte[] pix,
int off,
int scan,
Hashtable props)
Constructs an ImageProducer object which uses an array of bytes to produce data for an Image object. |
|
MemoryImageSource.MemoryImageSource(int w,
int h,
ColorModel cm,
int[] pix,
int off,
int scan,
Hashtable props)
Constructs an ImageProducer object which uses an array of integers to produce data for an Image object. |
|
MemoryImageSource.MemoryImageSource(int w,
int h,
int[] pix,
int off,
int scan,
Hashtable props)
Constructs an ImageProducer object which uses an array of integers in the default RGB ColorModel to produce data for an Image object. |
Uses of Hashtable in java.security |
Subclasses of Hashtable in java.security | |
class |
Provider
This class represents a "provider" for the Java Security API, where a provider implements some or all parts of Java Security, including: Algorithms (such as DSA, RSA, MD5 or SHA-1). |
Uses of Hashtable in java.util |
Subclasses of Hashtable in java.util | |
class |
Properties
The Properties class represents a persistent set of
properties. |
Uses of Hashtable in javax.swing |
Subclasses of Hashtable in javax.swing | |
class |
UIDefaults
A table of defaults for Swing components. |
Fields in javax.swing declared as Hashtable | |
protected Hashtable |
JTable.defaultRenderersByColumnClass
A table of objects that display the contents of a cell, indexed by class. |
protected Hashtable |
JTable.defaultEditorsByColumnClass
A table of objects that display and edit the contents of a cell, indexed by class. |
Methods in javax.swing that return Hashtable | |
Hashtable |
JSlider.createStandardLabels(int increment)
Creates a hashtable that will draw text labels starting at the slider minimum using the increment specified. |
Hashtable |
JSlider.createStandardLabels(int increment,
int start)
Creates a hashtable that will draw text labels starting at the start point specified using the increment specified. |
protected Hashtable |
JLayeredPane.getComponentToLayer()
Returns the hashtable that maps components to layers. |
Constructors in javax.swing with parameters of type Hashtable | |
JTree.JTree(Hashtable value)
Returns a JTree created from a Hashtable which does not display the root. |
Uses of Hashtable in javax.swing.plaf.basic |
Fields in javax.swing.plaf.basic declared as Hashtable | |
protected Hashtable |
BasicFileChooserUI.BasicFileView.iconCache
|
protected Hashtable |
BasicTreeUI.drawingCache
Used for minimizing the drawing of vertical lines. |
Uses of Hashtable in javax.swing.text.html.parser |
Fields in javax.swing.text.html.parser declared as Hashtable | |
Hashtable |
DTD.elementHash
|
Hashtable |
DTD.entityHash
|
Uses of Hashtable in javax.swing.undo |
Fields in javax.swing.undo declared as Hashtable | |
protected Hashtable |
StateEdit.preState
The state information prior to the edit |
protected Hashtable |
StateEdit.postState
The state information after the edit |
Methods in javax.swing.undo with parameters of type Hashtable | |
void |
StateEditable.storeState(Hashtable state)
Upon receiving this message the receiver should place any relevant state into state. |
void |
StateEditable.restoreState(Hashtable state)
Upon receiving this message the receiver should extract any relevant state out of state. |
|
Java Platform 1.2 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |