Uses of Interface
com.sas.collection.StaticOrderedCollectionInterface

Packages that use StaticOrderedCollectionInterface
com.sas.collection Provides several classes which implement data structures called collections. 
com.sas.io Extensions to java.io for file and directory manipulation. 
com.sas.measures Classes for recording measurements expressible as a magnitude and unit, including distance and time. 
com.sas.models Interfaces and classes for models which may be displayed in various viewers. 
com.sas.sasserver Access to base functionality in the SAS system, including selector dialogs and SAS code generation from templates. 
com.sas.servlet.util Provides support and utility classes for com.sas.servlet
com.sas.swing.visuals com.sas.visuals AWT user interface components ported to swing that are not already provided by JavaSoft. 
com.sas.table A set of interfaces for accessing two-dimensional data, and a set of classes for viewing and manipulating that data in tabular form. 
com.sas.visuals Additional user interface components not provided in AWT. 
 

Uses of StaticOrderedCollectionInterface in com.sas.collection
 

Subinterfaces of StaticOrderedCollectionInterface in com.sas.collection
 interface AssociationListInterface
          AssociationListInterface combines the OrderedCollection interface and the DictionaryInterface interface, yielding a collection whose items may be accessed by either an index or a key.
 interface OrderedCollectionInterface
          An ordered collection is a collection which accesses items via consecutive integer indices.
 interface SortedCollectionInterface
          SortedCollectionInterface defines an interface for an ordered collection which preserves a sort order when inserting items.
 interface StringCollectionInterface
          StringCollectionInterface combines StringListInterface and OrderedCollectionInterface.
 

Classes in com.sas.collection that implement StaticOrderedCollectionInterface
 class AssociationList
          AssociationList is an implementation of AssociationListinterface, a collection which stores and retrieves values by either key or integer index.
 class OrderedCollection
          An ordered collection is a collection which accesses items via consecutive integer indices.
 class OrderedListCollection
          An OrderedListCollection is a linked list implementation of OrderedCollectionInterface.
 class SortedCollection
          SortedCollection is a collection which inserts items in a sort order defined by a Comparator.
 class StaticOrderedCollection
          A StaticOrderedCollection is a class which hides the update methods of a OrderedCollection object.
 class StringCollection
          A StringCollection is an ordered collection of java.lang.String values.
 

Methods in com.sas.collection with parameters of type StaticOrderedCollectionInterface
 boolean StringCollection.equals(StaticOrderedCollectionInterface orderedCollection)
          Test if this collection equals another string collection by comparing elements in order.
abstract  boolean StaticOrderedCollectionInterface.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 boolean StaticOrderedCollection.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 boolean SortedCollection.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 boolean OrderedListCollection.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections have the same contents.
 boolean OrderedCollection.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 boolean AssociationList.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 

Constructors in com.sas.collection with parameters of type StaticOrderedCollectionInterface
StaticOrderedCollection(StaticOrderedCollectionInterface collection)
          Create a StaticOrderedCollection which provides read-only access to an OrderedCollection.
 

Uses of StaticOrderedCollectionInterface in com.sas.io
 

Classes in com.sas.io that implement StaticOrderedCollectionInterface
 class File
          A class representing a File on the host file system.
 class FileList
          A class that holds a list of File and Directory names that are available in a Directory on a specified FileSystem.
 class FileSystemList
          A class that holds a list of RootDirectories (drives) that are available on the system Creating a FileSystemList Component FileSystemList fsl = new FileSystemList();
 class PrinterList
          A class that holds a list of Printers that are available on the system Creating a PrinterList Component PrinterList pl = new PrinterList(); Usage A PrinterList object can be used as a model for ListBox, ComboBox, or Tree.
 

Methods in com.sas.io with parameters of type StaticOrderedCollectionInterface
 boolean PrinterList.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 boolean FileSystemList.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 boolean FileList.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current collection of absolute file name strings with those in another collection and tell whether the collections are identical.
 boolean File.equals(StaticOrderedCollectionInterface orderedCollection)
          Compare the current items with those in another collection and tell whether the collections are identical.
 

Uses of StaticOrderedCollectionInterface in com.sas.measures
 

Methods in com.sas.measures that return StaticOrderedCollectionInterface
static StaticOrderedCollectionInterface Time.makeUnitsList()
           
static StaticOrderedCollectionInterface Distance.makeUnitsList(int id)
          Returns a collection of the specified units.
 

Uses of StaticOrderedCollectionInterface in com.sas.models
 

Classes in com.sas.models that implement StaticOrderedCollectionInterface
 class ColorList
          A base class that creates an empty ordered collection.
 class ColorNameList
          An associationlist of java.awt.SystemColor and com.sas.awt.Color objects as keys and name as values.
 class DefaultColorList
          An Ordered Collection of java.awt.SystemColors and com.sas.awt.Color objects.
 class DefaultFontFamilyList
          This class provides a list of font family names that are available on the system.
 class DefaultFontList
          This class provides a list of font objects that are available on the system.
 class FontList
          This class provides a list of font objects that are available on the system.
 class IMDBTable
           
 class KeyCollection
          A collection containing strings for all of the java.awt.event.KeyEvent key codes.
 class RGBList
          A class that has a list of color names associated with its RGB values(integer).
 

Methods in com.sas.models that return StaticOrderedCollectionInterface
 StaticOrderedCollectionInterface SimpleJSTreeNode.getJSTreeNodes()
          Deprecated. Returns the JavaScript that creates the JavaScript node objects needed to create the JavaScript tree control.
 StaticOrderedCollectionInterface Node.getNodeChildren()
          Returns the children of the current node.
 

Methods in com.sas.models with parameters of type StaticOrderedCollectionInterface
 boolean IMDBTable.equals(StaticOrderedCollectionInterface p1)
           
 void Node.setNodeChildren(StaticOrderedCollectionInterface newValue)
          Sets the children for the current node.
 

Uses of StaticOrderedCollectionInterface in com.sas.sasserver
 

Methods in com.sas.sasserver with parameters of type StaticOrderedCollectionInterface
 boolean SASListDelegate.equals(StaticOrderedCollectionInterface orderedCollection)
           
 

Uses of StaticOrderedCollectionInterface in com.sas.servlet.util
 

Methods in com.sas.servlet.util with parameters of type StaticOrderedCollectionInterface
static StringCollection Util.createStringCollection(StaticOrderedCollectionInterface model)
          Creates a copy of the data provided by the model implementing StaticOrderedCollectionInterface.
static StringCollection Util.createStringCollection(StaticOrderedCollectionInterface model, boolean sort)
          Creates a copy of the data provided by the model implementing StaticOrderedCollectionInterface.
 

Uses of StaticOrderedCollectionInterface in com.sas.swing.visuals
 

Fields in com.sas.swing.visuals declared as StaticOrderedCollectionInterface
protected  StaticOrderedCollectionInterface SpinBox.staticOrderedCollectionModel
           
 

Methods in com.sas.swing.visuals that return StaticOrderedCollectionInterface
 StaticOrderedCollectionInterface DualSelector.getList1Items()
          Returns a copy of the items in list 1.
 StaticOrderedCollectionInterface DualSelector.getList2Items()
          Returns a copy of the items in list 2.
 StaticOrderedCollectionInterface SpinBox.getStaticOrderedCollectionModel()
          Returns the StaticOrderedCollectionInterface model that is set on the spinBox.
 

Methods in com.sas.swing.visuals with parameters of type StaticOrderedCollectionInterface
 void SpinBox.setStaticOrderedCollectionModel(StaticOrderedCollectionInterface model)
          Sets the StaticOrderedCollectionInterface model on the spinBox.
 

Uses of StaticOrderedCollectionInterface in com.sas.table
 

Methods in com.sas.table that return StaticOrderedCollectionInterface
 StaticOrderedCollectionInterface TableView.getDisplayedColumns()
          Returns the set of columns that are currently scrolled into view.
 StaticOrderedCollectionInterface TableView.getDisplayedRows()
          Returns the set of rows that are currently scrolled into view.
 StaticOrderedCollectionInterface TableView.getHeldColumns()
          Returns the set of held columns.
 StaticOrderedCollectionInterface TableView.getHeldRows()
          Returns the set of held rows.
 StaticOrderedCollectionInterface TableView.getInvalidCells()
          Returns the set of cells that are invalid.
 StaticOrderedCollectionInterface TableView.getModifiedCells()
          Returns the set of cells that have been modified.
 

Uses of StaticOrderedCollectionInterface in com.sas.visuals
 

Subinterfaces of StaticOrderedCollectionInterface in com.sas.visuals
 interface SelectionGroupInterface
          SelectionGroupInterface is an interface used to group and manipulate SelectableInterface objects.
 

Classes in com.sas.visuals that implement StaticOrderedCollectionInterface
 class SelectionGroup
          SelectionGroup is a class used to group and manipulate SelectableInterface objects.
 

Methods in com.sas.visuals that return StaticOrderedCollectionInterface
 StaticOrderedCollectionInterface DualSelector.getList1Items()
          Returns a copy of the items in list 1.
 StaticOrderedCollectionInterface DualSelector.getList2Items()
          Returns a copy of the items in list 2.
 

Methods in com.sas.visuals with parameters of type StaticOrderedCollectionInterface
 void TabbedView.refreshOrderedCollection(StaticOrderedCollectionInterface orderedModel)
          Refresh the TabbedView with the orderedCollectionModel.
protected  void ImageSequence.refreshSequence(StaticOrderedCollectionInterface model)
          Deprecated.  
protected  void ImageAnimation.refreshSequence(StaticOrderedCollectionInterface model)
          Refresh the sequence of images from a specified collection object.
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.