Uses of Interface
com.sas.LinkPropertiesInterface

Packages that use LinkPropertiesInterface
com.sas Provides core foundation interfaces and classes for the SAS component framework. 
com.sas.awt Provides extensions of java.awt components which implement com.sas.ComponentInterface 
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.lang The classes in this package provide objects which hold Java primitive types as bound properties. 
com.sas.models Interfaces and classes for models which may be displayed in various viewers. 
com.sas.net Classes for communicating with the SAS server via SAS/Connect protocols. 
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.servlet.util Provides support and utility classes for com.sas.servlet
com.sas.storage Classes for accessing data, especially with Java Database Connectivity. 
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.util Utility classes for com.sas.servlet. 
com.sas.visuals Additional user interface components not provided in AWT. 
 

Uses of LinkPropertiesInterface in com.sas
 

Subinterfaces of LinkPropertiesInterface in com.sas
 interface ComponentInterface
          ComponentInterface is the base interface for webAF components.
 

Classes in com.sas that implement LinkPropertiesInterface
 class Component
          Component is the base class for non-visual webAF objects.
 

Uses of LinkPropertiesInterface in com.sas.awt
 

Classes in com.sas.awt that implement LinkPropertiesInterface
 class Applet
          Applet is an extension of java.applet.Applet that includes ComponentInterface functionality and the ability to send events when the "state" of the applet changes.
 class AppletVisualComponent
           
 class Button
          Button is a pushbutton component that can display a specified text label.
 class ButtonVisualComponent
           
 class Canvas
          Canvas is the base class for heavy-weight webAF visual objects.
 class CanvasVisualComponent
           
 class CheckBox
          CheckBox is a component that maintains a boolean state and displays a specified text label.
 class CheckBoxVisualComponent
           
 class Choice
          Choice is a component that maintains a dropdown list of items for selection.
 class ChoiceVisualComponent
           
 class Color
          A class representing Color.
 class ColorComponent
          A ColorComponent class.
 class ComponentVisualComponent
           
 class Container
          Container is a subclass of java.awt.Container which implements the ComponentInterface, VisualInterface, and ContainerInterface.
 class ContainerContainerComponent
           
 class ContainerVisualComponent
           
 class Dialog
          The Dialog class encapsulates a window that contains components that accept input from a user.
 class DialogContainerComponent
           
 class DialogVisualComponent
           
 class Font
          A class representing Font.
 class FontComponent
          A SASFontComponent class.
 class Frame
          The Frame class provides a top-level window for applets and applications.
 class FrameContainerComponent
           
 class FrameVisualComponent
           
 class Label
          Label is a component that displays a single line of read-only text.
 class LabelVisualComponent
           
 class ListBox
          ListBox is a component that maintains a scrollable list of items for selection.
 class ListBoxVisualComponent
           
 class Panel
          Panel extends the java.awt.Panel class and contains webAF functionality.
 class PanelContainerComponent
           
 class PanelVisualComponent
           
 class Scrollbar
          Scrollbar is a component that can scroll through a range of integer values.
 class ScrollbarVisualComponent
           
 class ScrollPane
          ScrollPane extends the java.awt.ScrollPane class and contains webAF functionality.
 class ScrollPaneContainerComponent
           
 class ScrollPaneVisualComponent
           
 class TextArea
          TextArea is a component for creating a multi-line area that can set and display text.
 class TextAreaVisualComponent
           
 class TextField
          TextField is a component that can set and display a single line of text.
 class TextFieldVisualComponent
           
 

Uses of LinkPropertiesInterface in com.sas.collection
 

Classes in com.sas.collection that implement LinkPropertiesInterface
 class AssociationList
          AssociationList is an implementation of AssociationListinterface, a collection which stores and retrieves values by either key or integer index.
 class BaseCollection
          Abstract base class for collections.
 class Collection
          A implementation of CollectionInterface, for objects which store and retrieve values.
 class CollectionMirror
          A CollectionMirror is an abstract base class for other read-only collections which "reflect" other collections.
 class Dictionary
          A Dictionary stores and retrieves values by a key.
 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 Set
          A Set is a Collection which does not allow duplicates elements.
 class SortedCollection
          SortedCollection is a collection which inserts items in a sort order defined by a Comparator.
 class StaticCollection
          A StaticCollection is a class which hides the update methods of a collection object.
 class StaticDictionary
          A StaticDictionary is a class which hides the update methods of a dictionary object.
 class StaticOrderedCollection
          A StaticOrderedCollection is a class which hides the update methods of a OrderedCollection object.
 class StaticStringList
          A StaticStringList is a class which hides the update methods of a StringList object.
 class StringCollection
          A StringCollection is an ordered collection of java.lang.String values.
 

Uses of LinkPropertiesInterface in com.sas.io
 

Classes in com.sas.io that implement LinkPropertiesInterface
 class File
          A class representing a File on the host file system.
 class FileComponent
          A FileComponent class.
 class FileList
          A class that holds a list of File and Directory names that are available in a Directory on a specified FileSystem.
 class FileListFiltersPanel
          The FileListFiltersPanel is a panel to be displayed in an instance of FileListCustomizer or FiltersEditor.
 class FileSystem
          A class representing File System on local machine.
 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 Printer
          A class representing Printer attached to a local machine.
 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.
 

Uses of LinkPropertiesInterface in com.sas.lang
 

Classes in com.sas.lang that implement LinkPropertiesInterface
 class BooleanData
          BooleanData is an implementation of BooleanDataInterface, for holding a boolean integer.
 class BooleanOperator
          A BooleanOperator is an object which computes a boolean function of one or two boolean values.
 class ByteData
          ByteData is an implementation of ByteDataInterface, for holding a byte integer.
 class CharacterData
          CharacterData is an implementation of CharacterDataInterface, for holding a char integer.
 class DoubleData
          DoubleData is an implementation of DoubleDataInterface, for holding a double integer.
 class FloatData
          FloatData is an implementation of FloatDataInterface, for holding a float integer.
 class IntegerData
          IntegerData is an implementation of IntegerDataInterface, for holding a int integer.
 class LongData
          LongData is an implementation of LongDataInterface, for holding a long integer.
 class ObjectData
          ObjectData is an implementation of ObjectDataInterface, a container for holding an Object.
 class ShortData
          ShortData is an implementation of ShortDataInterface, for holding a short integer.
 class StringData
          StringData is an implementation of StringDataInterface, for holding a String.
 

Uses of LinkPropertiesInterface in com.sas.models
 

Classes in com.sas.models that implement LinkPropertiesInterface
 class BoundedDouble
          A BoundedDouble is an implementation of BoundedNumberInterface.
 class BoundedLong
          A BoundedLong is an implementation of BoundedNumberInterface.
 class ClassPathClasses
          ClassPathClasses is a model that represents the classes in the CLASSPATH.
 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 ImageLinkModel
          Provides an implementation of ImageDataInterface
 class ImageModel
          Provides an implementation of ImageDataInterface
 class IMDBTable
           
 class KeyCollection
          A collection containing strings for all of the java.awt.event.KeyEvent key codes.
 class RangeCollection
          A RangeCollection defines a set of values and colors (a collection of RangeSegments).
 class RGBList
          A class that has a list of color names associated with its RGB values(integer).
 class SimpleJSTreeNode
          Deprecated. As of Version 2.0 this class has been replaced by com.sas.models.TreeNode
 class SimpleTable
           SimpleTable manages any two-dimensional data where all the columns are of uniform type.
 class StaticTextModel
          Provides an implementation of StringDataInterface
 class StatusStringData
          StatusStringData is a class that extends from StringData that changes the text back to the model text after some amount of time after the text is set.
 class TextLinkModel
          Extends TextLabelModel and provides an implementation of LinkDataInterface
 class TextValueModel
          Provides an implementation of StringValueInterface
 class Tree
          Tree is the implementation of TreeInterface.
 

Uses of LinkPropertiesInterface in com.sas.net
 

Classes in com.sas.net that implement LinkPropertiesInterface
 class URL
          A class representing a Uniform Resource Locator on the web.
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.