| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Vector | |
|---|---|
| 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 | 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.accessibility | Defines a contract between user-interface components and an assistive technology that provides access to those components. | 
| javax.management | Provides the core classes for the Java Management Extensions. | 
| javax.management.relation | Provides the definition of the Relation Service. | 
| javax.management.timer | Provides the definition of the Timer MBean. | 
| javax.naming | Provides the classes and interfaces for accessing naming services. | 
| javax.naming.directory | Extends the javax.naming package to provide functionality for accessing directory services. | 
| javax.sound.midi | Provides interfaces and classes for I/O, sequencing, and synthesis of MIDI (Musical Instrument Digital Interface) data. | 
| javax.sql.rowset.serial | Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language. | 
| 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.plaf.multi | Provides user interface objects that combine two or more look and feels. | 
| javax.swing.table | Provides classes and interfaces for dealing with javax.swing.JTable. | 
| javax.swing.text | Provides classes and interfaces that deal with editable and noneditable text components. | 
| javax.swing.text.html | Provides the class HTMLEditorKitand supporting classes
for creating HTML text editors. | 
| javax.swing.text.html.parser | Provides the default HTML parser, along with support classes. | 
| javax.swing.tree | Provides classes and interfaces for dealing with javax.swing.JTree. | 
| javax.swing.undo | Allows developers to provide support for undo/redo in applications such as text editors. | 
| Uses of Vector in java.awt.image | 
|---|
| Methods in java.awt.image that return Vector | |
|---|---|
|  Vector<RenderedImage> | BufferedImage.getSources()Returns a VectorofRenderedImageobjects that are
 the immediate sources, not the sources of these immediate sources, 
 of image data for thisBufferedImage. | 
|  Vector<RenderedImage> | 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<Object> | ParameterBlock.parametersA Vector of non-source parameters, stored as arbitrary Objects. | 
| protected  Vector<Object> | ParameterBlock.sourcesA Vector of sources, stored as arbitrary Objects. | 
| Methods in java.awt.image.renderable that return Vector | |
|---|---|
|  Vector<Object> | ParameterBlock.getParameters()Returns the entire Vector of parameters. | 
|  Vector<RenderableImage> | RenderableImageOp.getSources()Returns a vector of RenderableImages that are the sources of image data for this RenderableImage. | 
|  Vector<Object> | ParameterBlock.getSources()Returns the entire Vector of sources. | 
|  Vector<RenderableImage> | 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.setParameters(Vector<Object> parameters)Sets the entire Vector of parameters to a given Vector. | 
|  void | ParameterBlock.setSources(Vector<Object> sources)Sets the entire Vector of sources to a given Vector. | 
| Constructors in java.awt.image.renderable with parameters of type Vector | |
|---|---|
| ParameterBlock(Vector<Object> sources)Constructs a ParameterBlockwith a given Vector 
 of sources. | |
| ParameterBlock(Vector<Object> sources,
               Vector<Object> parameters)Constructs a ParameterBlockwith a given Vector of sources and
 Vector of parameters. | |
| ParameterBlock(Vector<Object> sources,
               Vector<Object> parameters)Constructs a ParameterBlockwith a given Vector of sources and
 Vector of parameters. | |
| Uses of Vector in java.util | 
|---|
| Subclasses of Vector in java.util | |
|---|---|
|  class | Stack<E>The Stackclass represents a last-in-first-out
 (LIFO) stack of objects. | 
| Uses of Vector in javax.accessibility | 
|---|
| Fields in javax.accessibility declared as Vector | |
|---|---|
| protected  Vector<AccessibleRelation> | AccessibleRelationSet.relationsEach entry in the Vector represents an AccessibleRelation. | 
| protected  Vector<AccessibleState> | AccessibleStateSet.statesEach entry in the Vector represents an AccessibleState. | 
| Uses of Vector in javax.management | 
|---|
| Methods in javax.management that return Vector | |
|---|---|
|  Vector<String> | AttributeChangeNotificationFilter.getEnabledAttributes()Gets all the enabled attribute names for this filter. | 
|  Vector<String> | NotificationFilterSupport.getEnabledTypes()Gets all the enabled notification types for this filter. | 
| Uses of Vector in javax.management.relation | 
|---|
| Methods in javax.management.relation that return Vector | |
|---|---|
|  Vector<ObjectName> | MBeanServerNotificationFilter.getDisabledObjectNames()Gets all the ObjectNames disabled. | 
|  Vector<ObjectName> | MBeanServerNotificationFilter.getEnabledObjectNames()Gets all the ObjectNames enabled. | 
| Uses of Vector in javax.management.timer | 
|---|
| Methods in javax.management.timer that return Vector | |
|---|---|
|  Vector<Integer> | TimerMBean.getAllNotificationIDs()Gets all timer notification identifiers registered into the list of notifications. | 
|  Vector<Integer> | Timer.getAllNotificationIDs()Gets all timer notification identifiers registered into the list of notifications. | 
|  Vector<Integer> | TimerMBean.getNotificationIDs(String type)Gets all the identifiers of timer notifications corresponding to the specified type. | 
|  Vector<Integer> | Timer.getNotificationIDs(String type)Gets all the identifiers of timer notifications corresponding to the specified type. | 
| Uses of Vector in javax.naming | 
|---|
| Fields in javax.naming declared as Vector | |
|---|---|
| protected  Vector<RefAddr> | Reference.addrsContains the addresses contained in this Reference. | 
| Uses of Vector in javax.naming.directory | 
|---|
| Fields in javax.naming.directory declared as Vector | |
|---|---|
| protected  Vector<Object> | BasicAttribute.valuesHolds the attribute's values. | 
| Uses of Vector in javax.sound.midi | 
|---|
| Fields in javax.sound.midi declared as Vector | |
|---|---|
| protected  Vector<Track> | Sequence.tracksThe MIDI tracks in this sequence. | 
| Uses of Vector in javax.sql.rowset.serial | 
|---|
| Constructors in javax.sql.rowset.serial with parameters of type Vector | |
|---|---|
| SQLOutputImpl(Vector<?> attributes,
              Map<String,?> map)Creates a new SQLOutputImplobject
 initialized with the given vector of attributes and
 type map. | |
| Uses of Vector in javax.swing | 
|---|
| Fields in javax.swing declared as Vector | |
|---|---|
| protected  Vector<AbstractButton> | ButtonGroup.buttons | 
| Methods in javax.swing with parameters of type Vector | |
|---|---|
|  void | JList.setListData(Vector<?> listData)Constructs a read-only ListModelfrom aVectorand callssetModelwith this model. | 
| Constructors in javax.swing with parameters of type Vector | |
|---|---|
| DefaultComboBoxModel(Vector<?> v)Constructs a DefaultComboBoxModel object initialized with a vector. | |
| JComboBox(Vector<?> items)Creates a JComboBoxthat contains the elements
 in the specified Vector. | |
| JList(Vector<?> listData)Constructs a JListthat displays the elements in
 the specifiedVector. | |
| JTable(Vector rowData,
       Vector columnNames)Constructs a JTableto display the values in theVectorofVectors,rowData,
 with column names,columnNames. | |
| JTable(Vector rowData,
       Vector columnNames)Constructs a JTableto display the values in theVectorofVectors,rowData,
 with column names,columnNames. | |
| JTree(Vector<?> value)Returns a JTreewith each element of the specifiedVectoras the
 child of a new root node which is not displayed. | |
| Uses of Vector in javax.swing.plaf.basic | 
|---|
| Methods in javax.swing.plaf.basic that return Vector | |
|---|---|
|  Vector<File> | BasicDirectoryModel.getDirectories() | 
|  Vector<File> | BasicDirectoryModel.getFiles() | 
| Methods in javax.swing.plaf.basic with parameters of type Vector | |
|---|---|
| protected  void | BasicDirectoryModel.sort(Vector<? extends File> v) | 
| Uses of Vector in javax.swing.plaf.multi | 
|---|
| Fields in javax.swing.plaf.multi declared as Vector | |
|---|---|
| protected  Vector | MultiViewportUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiTreeUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiToolTipUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiToolBarUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiTextUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiTableUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiTableHeaderUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiTabbedPaneUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiSplitPaneUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiSpinnerUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiSliderUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiSeparatorUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiScrollPaneUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiScrollBarUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiRootPaneUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiProgressBarUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiPopupMenuUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiPanelUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiOptionPaneUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiMenuItemUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiMenuBarUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiListUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiLabelUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiInternalFrameUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiFileChooserUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiDesktopPaneUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiDesktopIconUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiComboBoxUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiColorChooserUI.uisThe vector containing the real UIs. | 
| protected  Vector | MultiButtonUI.uisThe vector containing the real UIs. | 
| Methods in javax.swing.plaf.multi with parameters of type Vector | |
|---|---|
| static ComponentUI | MultiLookAndFeel.createUIs(ComponentUI mui,
          Vector uis,
          JComponent target)Creates the ComponentUIobjects
 required to present
 thetargetcomponent,
 placing the objects in theuisvector and
 returning theComponentUIobject
 that best represents the component's UI. | 
| protected static ComponentUI[] | MultiLookAndFeel.uisToArray(Vector uis)Creates an array, populates it with UI objects from the passed-in vector, and returns the array. | 
| Uses of Vector in javax.swing.table | 
|---|
| Fields in javax.swing.table declared as Vector | |
|---|---|
| protected  Vector | DefaultTableModel.columnIdentifiersThe Vectorof column identifiers. | 
| protected  Vector | DefaultTableModel.dataVectorThe VectorofVectorsofObjectvalues. | 
| protected  Vector<TableColumn> | DefaultTableColumnModel.tableColumnsArray of TableColumn objects in this model | 
| Methods in javax.swing.table that return Vector | |
|---|---|
| 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. | 
|  Vector | DefaultTableModel.getDataVector()Returns the VectorofVectorsthat contains the table's
  data values. | 
| Methods in javax.swing.table with parameters of type Vector | |
|---|---|
|  void | DefaultTableModel.addColumn(Object columnName,
          Vector columnData)Adds a column to the model. | 
|  void | DefaultTableModel.addRow(Vector rowData)Adds a row to the end of the model. | 
|  void | DefaultTableModel.insertRow(int row,
          Vector rowData)Inserts a row at rowin the model. | 
|  void | DefaultTableModel.setColumnIdentifiers(Vector columnIdentifiers)Replaces the column identifiers in the model. | 
|  void | DefaultTableModel.setDataVector(Vector dataVector,
              Vector columnIdentifiers)Replaces the current dataVectorinstance variable 
  with the newVectorof rows,dataVector. | 
|  void | DefaultTableModel.setDataVector(Vector dataVector,
              Vector columnIdentifiers)Replaces the current dataVectorinstance variable 
  with the newVectorof rows,dataVector. | 
| Constructors in javax.swing.table with parameters of type Vector | |
|---|---|
| DefaultTableModel(Vector columnNames,
                  int rowCount)Constructs a DefaultTableModelwith as many columns
  as there are elements incolumnNamesandrowCountofnullobject values. | |
| DefaultTableModel(Vector data,
                  Vector columnNames)Constructs a DefaultTableModeland initializes the table
  by passingdataandcolumnNamesto thesetDataVectormethod. | |
| DefaultTableModel(Vector data,
                  Vector columnNames)Constructs a DefaultTableModeland initializes the table
  by passingdataandcolumnNamesto thesetDataVectormethod. | |
| Uses of Vector in javax.swing.text | 
|---|
| Methods in javax.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 offsettooffset+length. | 
| protected  Vector | GapContent.getPositionsInRange(Vector v,
                    int offset,
                    int length)Returns a Vector containing instances of UndoPosRef for the Positions in the range offsettooffset+length. | 
| Methods in javax.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 offsettooffset+length. | 
| protected  Vector | GapContent.getPositionsInRange(Vector v,
                    int offset,
                    int length)Returns a Vector containing instances of UndoPosRef for the Positions in the range offsettooffset+length. | 
| protected  void | StringContent.updateUndoPositions(Vector positions)Resets the location for all the UndoPosRef instances in positions. | 
| protected  void | GapContent.updateUndoPositions(Vector positions,
                    int offset,
                    int length)Resets the location for all the UndoPosRef instances in positions. | 
| Uses of Vector in javax.swing.text.html | 
|---|
| Fields in javax.swing.text.html declared as Vector | |
|---|---|
| protected  Vector<DefaultStyledDocument.ElementSpec> | HTMLDocument.HTMLReader.parseBuffer | 
| Uses of Vector in javax.swing.text.html.parser | 
|---|
| Fields in javax.swing.text.html.parser declared as Vector | |
|---|---|
|  Vector<Element> | DTD.elements | 
|  Vector<?> | AttributeList.values | 
| Methods in javax.swing.text.html.parser with parameters of type Vector | |
|---|---|
|  void | ContentModel.getElements(Vector<Element> elemVec)Update elemVec with the list of elements that are part of the this contentModel. | 
| Constructors in javax.swing.text.html.parser with parameters of type Vector | |
|---|---|
| AttributeList(String name,
              int type,
              int modifier,
              String value,
              Vector<?> values,
              AttributeList next)Create an attribute list element. | |
| Uses of Vector in javax.swing.tree | 
|---|
| Fields in javax.swing.tree declared as Vector | |
|---|---|
| protected  Vector | DefaultMutableTreeNode.childrenarray of children, may be null if this node has no children | 
| Methods in javax.swing.tree with parameters of type Vector | |
|---|---|
| protected  void | DefaultTreeSelectionModel.notifyPathChange(Vector<javax.swing.tree.PathPlaceHolder> changedPaths,
                 TreePath oldLeadSelection)Notifies listeners of a change in path. | 
| Uses of Vector in javax.swing.undo | 
|---|
| Fields in javax.swing.undo declared as Vector | |
|---|---|
| protected  Vector<UndoableEdit> | CompoundEdit.editsThe collection of UndoableEdits
 undone/redone en masse by thisCompoundEdit. | 
| protected  Vector<UndoableEditListener> | UndoableEditSupport.listeners | 
| 
 | Java™ Platform Standard Ed. 6 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.