|
| Components |
|
| |||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||||||
| Packages that use OrderedCollectionInterface | |
|---|---|
| com.sas.collection | Provides several classes which implement data structures called collections. |
| 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.sasserver.tree | Generic Classes for implementing SAS File System hierarchy. |
| com.sas.swing.adapters | Miscellaneous listener adapters to handle various user interface events. |
| com.sas.swing.models | Model adapters to convert between existing SAS java models and new JDK1.2 models and visuals. |
| com.sas.util.transforms | Interfaces and implementations for objects which transform data from one representation or type to another. |
| com.sas.visuals | Additional user interface components not provided in AWT. |
| com.sas.visuals.adapters | Adapters and helper classes for visual components. |
| Uses of OrderedCollectionInterface in com.sas.collection |
|---|
| Subinterfaces of OrderedCollectionInterface 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 |
StringCollectionInterface
StringCollectionInterface combines StringListInterface and OrderedCollectionInterface. |
| Classes in com.sas.collection that implement OrderedCollectionInterface | |
|---|---|
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 |
StringCollection
A StringCollection is an ordered collection of java.lang.String values. |
| Fields in com.sas.collection declared as OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
AssociationList.items
items is the ordered collection of data items. |
protected OrderedCollectionInterface |
AssociationList.keys
keys is the ordered collection of keys. |
| Methods in com.sas.collection with parameters of type OrderedCollectionInterface | |
|---|---|
static void |
OrderedCollection.sort(OrderedCollectionInterface collection,
com.sas.util.Comparator comparator,
int start,
int end)
Sorts a range of items in a collection in place using the provided comparison function. |
static int[] |
OrderedCollection.sort(OrderedCollectionInterface collection,
int algorithm,
com.sas.util.Comparator comparator,
int start,
int end,
int[] permutation)
Sorts a range of items in a collection in place using the provided comparison function. |
| Uses of OrderedCollectionInterface in com.sas.models |
|---|
| Classes in com.sas.models that implement OrderedCollectionInterface | |
|---|---|
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 |
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). |
| Uses of OrderedCollectionInterface in com.sas.sasserver |
|---|
| Fields in com.sas.sasserver declared as OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
SASListDelegate.parsedList
Internal collection for storage of the string items |
| Methods in com.sas.sasserver with parameters of type OrderedCollectionInterface | |
|---|---|
protected void |
SASListDelegate.parseList(com.sas.collection.hlist.HListInterface membersList,
OrderedCollectionInterface parsedList)
Parse the hlist returned from the _getMembers call into a string ordered collection based on what has been specified to be displayed. |
| Uses of OrderedCollectionInterface in com.sas.sasserver.tree |
|---|
| Fields in com.sas.sasserver.tree declared as OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
NodeDelegate.children
|
| Methods in com.sas.sasserver.tree that return OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
NodeDelegate.getChildren()
Return a collection that contains all the children for the Node |
| Uses of OrderedCollectionInterface in com.sas.swing.adapters |
|---|
| Fields in com.sas.swing.adapters declared as OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
PopupMenuAdapter.commandProducers
|
| Methods in com.sas.swing.adapters that return OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
PopupMenuAdapter.newCommandProducerList()
Factory method for creating the list to store the command producers in. |
| Uses of OrderedCollectionInterface in com.sas.swing.models |
|---|
| Constructors in com.sas.swing.models with parameters of type OrderedCollectionInterface | |
|---|---|
MutableComboBoxModelAdapter(OrderedCollectionInterface collection)
Constructor. |
|
| Uses of OrderedCollectionInterface in com.sas.util.transforms |
|---|
| Constructors in com.sas.util.transforms with parameters of type OrderedCollectionInterface | |
|---|---|
StringToOrderedCollectionInterfaceTransform(char delimiter,
OrderedCollectionInterface collection)
Construct a transform which uses a specific delimiter. |
|
| Uses of OrderedCollectionInterface in com.sas.visuals |
|---|
| Subinterfaces of OrderedCollectionInterface in com.sas.visuals | |
|---|---|
interface |
SelectionGroupInterface
SelectionGroupInterface is an interface used to group and manipulate SelectableInterface objects. |
| Classes in com.sas.visuals that implement OrderedCollectionInterface | |
|---|---|
class |
SelectionGroup
SelectionGroup is a class used to group and manipulate SelectableInterface objects. |
| Methods in com.sas.visuals that return OrderedCollectionInterface | |
|---|---|
OrderedCollectionInterface |
TextElement.getSubElements()
Get the value of the subElements property. |
| Methods in com.sas.visuals with parameters of type OrderedCollectionInterface | |
|---|---|
protected void |
DualSelector.moveListItem(OrderedCollectionInterface list,
boolean moveItemUp)
Moves the selected item or items in list either up or down one position. |
void |
TextElement.setSubElements(OrderedCollectionInterface subElements)
Set the value of the subElements property. |
protected void |
DualSelector.transferAllItems(OrderedCollectionInterface fromList,
OrderedCollectionInterface toList)
Transfers all of the items from fromList to toList. |
protected void |
DualSelector.transferListItems(OrderedCollectionInterface fromList,
OrderedCollectionInterface toList)
Transfer all selected items from fromList to toList. |
| Uses of OrderedCollectionInterface in com.sas.visuals.adapters |
|---|
| Fields in com.sas.visuals.adapters declared as OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
PopupMenuAdapter.commandProducers
|
| Methods in com.sas.visuals.adapters that return OrderedCollectionInterface | |
|---|---|
protected OrderedCollectionInterface |
PopupMenuAdapter.newCommandProducerList()
Factory method for creating the list to store the command producers in. |
|
| Components |
|
| |||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||||||