Java Platform 1.2
Beta 4

Uses of Class
java.util.Vector

Packages that use Vector
com.sun.java.accessibility   
com.sun.java.swing Provides a set of "lightweight" (all-Java
com.sun.java.swing.table Provides classes and interfaces for dealing with java.awt.swing. 
com.sun.java.swing.text Provides classes and interfaces that deal with editable and noneditable text components.  
com.sun.java.swing.tree Provides classes and interfaces for dealing with java.awt.swing. 
com.sun.java.swing.undo Provides support for undo/redo capabilities in an application such as a text editor.  
java.awt.image Provides classes for creating and modifying images.  
java.awt.image.renderable Provides classes and interfaces for producing rendering-independent images.  
java.util Provides useful utilities for data structures, date, time, internationalization, events (root interfaces), a simple string tokenizer, a random-number generator, observers, properties and exceptions.  
 

Uses of Vector in com.sun.java.accessibility
 

Fields in com.sun.java.accessibility declared as Vector
protected  Vector AccessibleStateSet.states
          Each entry in the Vector represents an AccessibleState.
 

Uses of Vector in com.sun.java.swing
 

Fields in com.sun.java.swing declared as Vector
protected  Vector ButtonGroup.buttons
           
 

Methods in com.sun.java.swing with parameters of type Vector
 void JList.setListData(Vector listData)
          A convenience method that constructs a ListModel from a Vector and then applies setModel to it.
 

Constructors in com.sun.java.swing with parameters of type Vector
DefaultComboBoxModel.DefaultComboBoxModel(Vector v)
           
JTable.JTable(Vector rowData, Vector columnNames)
          Constructs a JTable to display the values in the Vector of Vectors, rowData, with column names, columnNames.
JTree.JTree(Vector value)
          Returns a JTree with each element of the specified Vector as the child of a new root node which is not displayed.
JList.JList(Vector listData)
          Construct a JList that displays the elements in the specified Vector.
JComboBox.JComboBox(Vector items)
          Creates a JComboBox that contains the elements in the specified Vector.
 

Uses of Vector in com.sun.java.swing.table
 

Fields in com.sun.java.swing.table declared as Vector
protected  Vector DefaultTableModel.dataVector
          The Vector of Vector of Object values
protected  Vector DefaultTableModel.columnIdentifiers
          The Vector of column identifiers
protected  Vector DefaultTableColumnModel.tableColumns
          Array of TableColumn objects in this model
 

Methods in com.sun.java.swing.table that return Vector
 Vector DefaultTableModel.getDataVector()
          This returns the Vector of Vectors that contains the table's data values.
protected static Vector DefaultTableModel.convertToVector(Object[] anArray)
          Returns a Vector that contains the same objects as the array
protected static Vector DefaultTableModel.convertToVector(Object[][] anArray)
          Returns a Vector of Vectors that contains the same objects as the array
 

Methods in com.sun.java.swing.table with parameters of type Vector
 void DefaultTableModel.setDataVector(Vector newData, Vector columnNames)
          This replaces the current dataVector instance variable with the new Vector of rows, newData.
 void DefaultTableModel.setColumnIdentifiers(Vector newIdentifiers)
          Replaces the column identifiers in the model.
 void DefaultTableModel.addColumn(Object columnName, Vector columnData)
          Add a column to the model.
 void DefaultTableModel.addRow(Vector rowData)
          Add a row to the end of the model.
 void DefaultTableModel.insertRow(int row, Vector rowData)
          Insert a row at row in the model.
 

Constructors in com.sun.java.swing.table with parameters of type Vector
DefaultTableModel.DefaultTableModel(Vector columnNames, int numRows)
          Constructs a DefaultTableModel with as many columns as there are elements in columnNames and numRows of null object values.
DefaultTableModel.DefaultTableModel(Vector data, Vector columnNames)
          Constructs a DefaultTableModel and initializes the table by passing data and columnNames to the setDataVector() method.
 

Uses of Vector in com.sun.java.swing.text
 

Methods in com.sun.java.swing.text that return Vector
protected  Vector StringContent.getPositionsInRange(Vector v, int offset, int length)
          Returns a Vector containing instances of UndoPosRef for the Positions in the range offset to offset + length.
 

Methods in com.sun.java.swing.text with parameters of type Vector
protected  Vector StringContent.getPositionsInRange(Vector v, int offset, int length)
          Returns a Vector containing instances of UndoPosRef for the Positions in the range offset to offset + length.
protected  void StringContent.updateUndoPositions(Vector positions)
          Resets the location for all the UndoPosRef instances in positions.
 

Uses of Vector in com.sun.java.swing.tree
 

Fields in com.sun.java.swing.tree declared as Vector
protected  Vector DefaultMutableTreeNode.children
          array of children, may be null if this node has no children
 

Methods in com.sun.java.swing.tree with parameters of type Vector
protected  void DefaultTreeSelectionModel.notifyPathChange(Vector changedPaths, TreePath oldLeadSelection)
          Notifies listeners of a change in path. changePaths should contain instances of PathPlaceHolder.
 

Uses of Vector in com.sun.java.swing.undo
 

Fields in com.sun.java.swing.undo declared as Vector
protected  Vector CompoundEdit.edits
          The collection of UndoableEdits undone/redone en masse by this CompoundEdit
protected  Vector UndoableEditSupport.listeners
           
 

Uses of Vector in java.awt.image
 

Methods in java.awt.image that return Vector
 Vector BufferedImage.getSources()
          Returns a vector of RenderedImages that are the immediate sources of image data for this BufferedImage.
 Vector RenderedImage.getSources()
          Returns a vector of RenderedImages that are the immediate sources of image data for this RenderedImage.
 

Uses of Vector in java.awt.image.renderable
 

Fields in java.awt.image.renderable declared as Vector
protected  Vector ParameterBlock.sources
          A Vector of sources, stored as arbitrary Objects.
protected  Vector ParameterBlock.parameters
          A Vector of non-source parameters, stored as arbitrary Objects.
 

Methods in java.awt.image.renderable that return Vector
 Vector ParameterBlock.getSources()
          Returns the entire Vector of sources.
 Vector ParameterBlock.getParameters()
          Returns the entire Vector of parameters.
 Vector RenderableImageOp.getSources()
          Constructs a RenderedImageOp given a ContextualRenderedImageFactory object, and a ParameterBlock containing RenderableImage sources and other parameters.
 Vector RenderableImage.getSources()
          Returns a vector of RenderableImages that are the sources of image data for this RenderableImage.
 

Methods in java.awt.image.renderable with parameters of type Vector
 void ParameterBlock.setSources(Vector sources)
          Sets the entire Vector of sources to a given Vector.
 void ParameterBlock.setParameters(Vector parameters)
          Sets the entire Vector of parameters to a given Vector.
 

Constructors in java.awt.image.renderable with parameters of type Vector
ParameterBlock.ParameterBlock(Vector sources)
          Constructs a ParameterBlock with a given Vector of sources.
ParameterBlock.ParameterBlock(Vector sources, Vector parameters)
          Constructs a ParameterBlock with a given Vector of sources and Vector of parameters.
 

Uses of Vector in java.util
 

Subclasses of Vector in java.util
  Stack
          The Stack class represents a last-in-first-out (LIFO) stack of objects.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.