Uses of Interface
com.sas.actionprovider.ActionProviderViewInterface

Packages that use ActionProviderViewInterface
com.sas.actionprovider Provides the integrated set of classes that comprise the ActionProvider Framework (APF). 
com.sas.actionprovider.support Provides the support classes that define the default areas and actions for components that acquire their Actions via the ActionProviderFramework (APF). 
com.sas.servlet.tbeans Provides classes and interfaces for the Transformation Beans. 
com.sas.servlet.tbeans.dataselectors.html Provides classes for creating dataselectors, and the menubar classes that provide access to the dataselectors from a data viewer. 
com.sas.servlet.tbeans.graphics Provides base classes for generating chart objects. 
com.sas.servlet.tbeans.graphics.html Provides classes for generating different chart objects. 
com.sas.servlet.tbeans.html Provides classes and interfaces for several transformation beans such as Button, Label, and TreeView along with their supporting classes. 
com.sas.servlet.tbeans.navigationbar Provides the base classes and interfaces needed to generate a navigation bar for scrolling. 
com.sas.servlet.tbeans.navigationbar.html Provides classes used to generate an HTML representation of a navigation bar for scrolling. 
com.sas.servlet.tbeans.olapgraphics.html Provides classes for generating different OLAP chart objects. 
com.sas.servlet.tbeans.olaptableview Provides classes and interfaces for viewing OLAP Data. 
com.sas.servlet.tbeans.olaptableview.html Provides classes and interfaces for Creating an HTML table representing an OLAPTable. 
com.sas.servlet.tbeans.remotefileselector2   
com.sas.servlet.tbeans.remotefileselector2.html   
com.sas.servlet.tbeans.tableview Provides the base classes and interfaces used to generate a table of data for a given data model. 
com.sas.servlet.tbeans.tableview.html Provides the classes used to generate a table of data in HTML. 
com.sas.servlet.tbeans.tableview.rpf.html   
com.sas.swing.visuals.olaptableview Provides a set of swing classes for viewing and manipulating OLAP data. 
com.sas.swing.visuals.remotefileselector The primary focus of the com.sas.swing.visuals.remotefileselector package is to provide the classes necessary to initialize a Remote File Selector. 
com.sas.swing.visuals.tableview Provides a set of swing classes for viewing and manipulating relational data. 
 

Uses of ActionProviderViewInterface in com.sas.actionprovider
 

Subinterfaces of ActionProviderViewInterface in com.sas.actionprovider
 interface HttpActionProviderViewInterface
           The interface required for all Transformation Bean Components that acquire their Actions via the ActionProvider Framework (APF).
 interface SwingActionProviderViewInterface
           The interface required for all Swing components that acquire their Actions via the ActionProvider Framework (APF).
 

Methods in com.sas.actionprovider that return ActionProviderViewInterface
 ActionProviderViewInterface BaseAction.getViewer()
          Returns the viewer that requested this action.
 ActionProviderViewInterface ActionSupportFilter.getViewer()
          Returns the component requesting the actions
 ActionProviderViewInterface ActionList.getViewer()
          Returns the viewer that requested this action.
 

Methods in com.sas.actionprovider with parameters of type ActionProviderViewInterface
 ActionOrderList BaseActionProvider.getActionOrderList(java.lang.String supportType, ActionProviderViewInterface viewer, java.lang.String areaType)
          Returns the order list that is used to control the structure and ordering of the ActionList returned via the getActions() method.
 java.util.Map HttpActionProvider.getEncodedValuesMap(ActionProviderViewInterface viewer)
           INTERNAL USE ONLY Return a map of values that have been encoded for use by the specified viewer component.
 void BaseActionProvider.setActionOrderList(java.lang.String supportType, ActionOrderList orderList, ActionProviderViewInterface viewer, java.lang.String areaType)
          Sets the order list that is used to control the structure and ordering of the ActionList returned via the getActions() method.
 void BaseAction.setViewer(ActionProviderViewInterface viewer)
          Sets the viewer that requested this action.
 void ActionSupportFilter.setViewer(ActionProviderViewInterface viewer)
          Sets the current viewer requesting the actions
 void ActionList.setViewer(ActionProviderViewInterface viewer)
          Sets the viewer that requested this action.
 

Constructors in com.sas.actionprovider with parameters of type ActionProviderViewInterface
ActionSupportFilter(java.lang.String supportType, java.lang.String areaType, ActionProviderViewInterface viewer)
          Three argument constructor.
ActionSupportFilter(java.lang.String supportType, java.lang.String areaType, ActionProviderViewInterface viewer, boolean swing)
          Four argument constructor.
 

Uses of ActionProviderViewInterface in com.sas.actionprovider.support
 

Classes in com.sas.actionprovider.support that implement ActionProviderViewInterface
 class HttpViewerSupport
           Provides a common implementation of the HttpActionProviderViewInterface to which components may delegate their own implementations of that interface.
 class SwingViewerSupport
           Provides a common implementation of the SwingActionProviderViewInterface to which components may delegate their own implementations of that interface.
 

Methods in com.sas.actionprovider.support with parameters of type ActionProviderViewInterface
 void BaseActionProviderSupport.flushViewerReferencesFromSupportClass(ActionProviderViewInterface viewer)
          Flushes all the viewer references maintained by this support class including custom actions that are registered for the specified viewer and any viewer-specific ActionOrderLists.
 void BaseActionProviderCompositeSupport.flushViewerReferencesFromSupportClass(ActionProviderViewInterface viewer)
          Flushes all the viewer references maintained by this support class including custom actions that are registered for the specified viewer and any viewer-specific ActionOrderLists.
 ActionOrderList BaseActionProviderSupport.getActionOrderList(ActionProviderViewInterface viewer, java.lang.String areaType)
          Returns the order list that is used to control the structure and ordering of the ActionList returned by the getActions() method.
 ActionOrderList BaseActionProviderCompositeSupport.getActionOrderList(ActionProviderViewInterface viewer, java.lang.String areaType)
          Returns the order list that is used to control the structure and ordering of the ActionList returned by the getActions() method.
 void BaseActionProviderSupport.setActionOrderList(ActionOrderList orderList, ActionProviderViewInterface viewer, java.lang.String areaType)
          Sets the order list that is used to control the structure and ordering of the ActionList returned via the getActions() method.
 void BaseActionProviderCompositeSupport.setActionOrderList(ActionOrderList orderList, ActionProviderViewInterface viewer, java.lang.String areaType)
          Sets the order list that is used to control the structure and ordering of the ActionList returned via the getActions() method.
 

Constructors in com.sas.actionprovider.support with parameters of type ActionProviderViewInterface
BaseViewerSupport(ActionProviderViewInterface viewer)
          Constructor that takes an instance of the view component that this class supports.
HttpViewerSupport(ActionProviderViewInterface viewer)
          Constructor that takes an instance of the view component that this class supports.
SwingViewerSupport(ActionProviderViewInterface viewer)
          Constructor that takes an instance of the view component that this class supports.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans
 

Classes in com.sas.servlet.tbeans that implement ActionProviderViewInterface
 class BaseActionCompositeTransformation
           
 class com.sas.servlet.tbeans.BaseActionCompositeTransformation2
           
 class BaseActionTransformation
           
 class com.sas.servlet.tbeans.BaseActionTransformation2
           
 class BaseLabel
          The BaseLabel is an abstract TransformationBean™ used to create a label.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.dataselectors.html
 

Classes in com.sas.servlet.tbeans.dataselectors.html that implement ActionProviderViewInterface
 class ActionProviderMenuBar
          The ActionProviderMenuBar is an abstract TransformationBean™ that provides a menubar representation of the actions defined for an area of a viewer.
 class OLAPMenuBar
          The OLAPMenuBar is a TransformationBean™ that generates the appropriate HTML 4.0 that is used to display a menubar of available data selectors for an OLAP viewer, such as the OLAPTableView.
 class RelationalMenuBar
          The RelationalMenuBar is a TransformationBean™ that generates the appropriate HTML 4.0 that is used to display a menubar of available data selectors for a relational viewer, such as the TableView.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.graphics
 

Classes in com.sas.servlet.tbeans.graphics that implement ActionProviderViewInterface
 class com.sas.servlet.tbeans.graphics.BaseBarChart
           
 class BaseBarLineChart
          The BarLineChart is a Swing component that uses a BarLineChartDataModel (data properties) and a BarLineChartModel (display properties) to produce a series of connected veticies representing data values.
 class BaseESRIMapChart
          BaseESRIMapChart is a base class for the OLAP and relational ESRIMap tbeans.
 class com.sas.servlet.tbeans.graphics.BaseGraph
           
 class com.sas.servlet.tbeans.graphics.BaseGraphics
           
 class BaseLineChart
          The LineChart is a Swing component that uses a LineChartDataModel (data properties) and a LineChartModel (display properties) to produce a series of connected veticies representing data values.
 class BaseLinePlot
          The LinePlot is a Swing component that uses a LinePlotDataModel (data handle) and a LinePlotModel (display properties) to produce a interpolated line.
 class BasePieChart
          The PieChart is a Swing component that uses a PieChartDataModel (data handle) and a PieChartModel (display properties) to produce a graphical, circular representation of the data.
 class BaseRadarChart
          The RadarChart is a Swing component that uses a RadarChartDataModel (data properties) and a RadarChartModel (display properties) to produce a graphical circular shaped representation of the data, consisting of radial axes onto which data points may be plotted.
 class BaseScatterPlot
          The ScatterPlot is a Swing component that uses a ScatterPlotDataModel (data handle) and a ScatterPlotModel (display properties) to produce markers with different shapes, sizes and colors one for each data point.
 class BaseTileChart
           
 class BaseWaterfallChart
           
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.graphics.html
 

Classes in com.sas.servlet.tbeans.graphics.html that implement ActionProviderViewInterface
 class BarChart
          The BarChart TransformationBean is a servlet component that produces bar charts that support the visualization of multiple response variables.
 class BarChartComposite
          BarChartComposite is a TransformationBean that is composed of other TransformationBeans.
 class BarLineChart
          The BarLineChart TransformationBean is a servlet component that produces bar charts with overlayed line plots.
 class BarLineChartComposite
          BarLineChartComposite is a TransformationBean that is composed of other TransformationBeans.
 class ESRIMapChart
          ***WARNING*** This class is an experimental class and is largely untested.
 class ESRIMapComposite
          ***WARNING*** This class is an experimental class and is largely untested.
 class ESRIMapMenu
          ***WARNING*** This class is an experimental class and is largely untested.
 class GraphComposite
           
 class LineChart
          The LineChart TransformationBean is a servlet component that produces line charts that support the visualization of multiple response variables.
 class LineChartComposite
          LineChartComposite is a TransformationBean that is composed of other TransformationBeans.
 class LinePlot
          The LinePlot TransformationBean is a servlet component that produces line plots that support the visualization of multiple response variables.
 class LinePlotComposite
          LinePlotComposite is a TransformationBean that is composed of other TransformationBeans.
 class PieChart
          The PieChart TransformationBean is a servlet component that produces pie charts that support the visualization of multiple response variables.
 class PieChartComposite
          PieChartComposite is a TransformationBean that is composed of other TransformationBeans.
 class RadarChart
          The RadarChart TransformationBean is a servlet component that produces radar charts that show the relative frequency of data measures in quality control or market research problems.
 class RadarChartComposite
          RadarChartComposite is a TransformationBean that is composed of other TransformationBeans.
 class ScatterPlot
          The ScatterPlot TransformationBean is a servlet component that produces scatter plots that support the visualization of multiple response variables.
 class ScatterPlotComposite
          ScatterPlotComposite is a TransformationBean that is composed of other TransformationBeans.
 class TileChart
          The TileChart TransformationBean is a servlet component that produces a rectangular tree-based representation of data.
 class WaterfallChart
          The WaterfallChart TransformationBean is a servlet component that produces waterfall charts that support the visualization of multiple response variables.
 class WaterfallChartComposite
          WaterfallChartComposite is a TransformationBean that is composed of other TransformationBeans.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.html
 

Classes in com.sas.servlet.tbeans.html that implement ActionProviderViewInterface
 class Label
          The Label is a TransformationBean™ that generates the appropriate HTML 4.0 for static text in HTML.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.navigationbar
 

Classes in com.sas.servlet.tbeans.navigationbar that implement ActionProviderViewInterface
 class BaseNavigationBarElement
          The abstract Transformation Bean base object for creating elements for navigating through a Transformation Bean's model.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.navigationbar.html
 

Classes in com.sas.servlet.tbeans.navigationbar.html that implement ActionProviderViewInterface
 class NavigationBarColumnScrollingElement
          The NavigationBarColumnScrollingElement is a TransformationBean™ that generates the appropriate HTML 4.0 and JavaScript to represents the column scrolling actions for a NavigationBar.
 class NavigationBarEditingElement
          The NavigationBarEditingElement is a TransformationBean™ that generates the appropriate HTML 4.0 and JavaScript to represents the edit actions for a NavigationBar.
 class NavigationBarRowScrollingElement
          The NavigationBarRowScrollingElement is a TransformationBean™ that generates the appropriate HTML 4.0 and JavaScript to represents the row scrolling actions for a NavigationBar.
 class NavigationBarScrollingElement
          The abstract TransformationBean™ object needed to implement a navigation scrolling element.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.olapgraphics.html
 

Classes in com.sas.servlet.tbeans.olapgraphics.html that implement ActionProviderViewInterface
 class OLAPESRIMapChart
          The OLAPESRIMapChart TransformationBean is a servlet component that produces maps that support the visualisation of a single response variable.
 class OLAPESRIMapComposite
          MapComposite is a TransformationBean that is composed of other TransformationBeans.
 class OLAPESRIMapMenu
          MapMenu is a TransformationBean that subclasses the MenuBar tbean and has the map-related items that appear in the ESRI Map tbean toolbar..
 class com.sas.servlet.tbeans.olapgraphics.html.OLAPGraphComposite
           
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.olaptableview
 

Classes in com.sas.servlet.tbeans.olaptableview that implement ActionProviderViewInterface
 class BaseOLAPDrillState
          The BaseOLAPDrillState is an abstract TransformationBean™
 class BaseOLAPTableView
          The BaseOLAPTableView is an abstract TransformationBean™
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.olaptableview.html
 

Classes in com.sas.servlet.tbeans.olaptableview.html that implement ActionProviderViewInterface
 class DefaultOLAPTableDataCellContentsRenderer
          This class generates the default contents of the olap table's data cells.
 class DefaultOLAPTableLabelCellContentsRenderer
          This class generates the default contents of the olap table's label cells.
 class ShowDetailDataComposite
          ShowDetailDataComposite is a TransformationBean™ that is composed of other TransformationBeans™ that include the following sub-components: TableViewComposite.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.remotefileselector2
 

Classes in com.sas.servlet.tbeans.remotefileselector2 that implement ActionProviderViewInterface
 class BaseRemoteFileSearch
           The BaseRemoteFileSearch is an abstract TransformationBean™ that provides the methods for setting and returning the components and the models used for the search facility of the RemoteFileSelector.
 class BaseRemoteFileSelector
           The BaseRemoteFileSelector is an abstract TransformationBean™ that provides the methods for setting and returning the components and the model used to create the RemoteFileSelector component.
 class BaseRemoteFileToolBar
           The BaseRemoteFileToolBar is an abstract TransformationBean™ that provides the base function for the RemoteFileToolBar.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.remotefileselector2.html
 

Classes in com.sas.servlet.tbeans.remotefileselector2.html that implement ActionProviderViewInterface
 class InformationServicesSearch
           The InformationServicesSearch is a TransformationBean™ that generates the appropriate HTML 4.0 to represent the default search component for the InformationServicesSelector.
 class InformationServicesSelector
           The InformationServicesSelector is a TransformationBean™ that generates the appropriate HTML 4.0 and JavaScript to represent a file selector that uses the Information Services interfaces.
 class RemoteFileSearch
           The RemoteFileSearch is a TransformationBean™ that generates the appropriate HTML 4.0 to represent the search facility of the RemoteFileSelector component.
 class RemoteFileSelector
           The RemoteFileSelector is a TransformationBean™ that generates the appropriate HTML 4.0 and JavaScript to represent a file selector.
 class RemoteFileToolBar
          The RemoteFileToolBar is a TransformationBean™ that generates the appropriate HTML 4.0 to represent a ToolBar.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.tableview
 

Classes in com.sas.servlet.tbeans.tableview that implement ActionProviderViewInterface
 class AbstractBaseTableView
          The abstract Transformation Bean base object for creating any TableView.
 class BaseTableView
          The base abstract Transformation Bean for creating a 2-dimensional Table.
 

Constructors in com.sas.servlet.tbeans.tableview with parameters of type ActionProviderViewInterface
TableViewActionSupportFilter(java.lang.String supportType, java.lang.String areaType, ActionProviderViewInterface viewer)
           
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.tableview.html
 

Classes in com.sas.servlet.tbeans.tableview.html that implement ActionProviderViewInterface
 class CellContentsLabelRenderer
          The CellContentsLabelRenderer is a TransformationBean™ that generates the appropriate HTML 4.0 to represent the contents of a cell as an HTML label.
 class CellContentsNoRowsRenderer
          The CellContentsNoRowsRenderer is a TransformationBean™ that generates the appropriate HTML 4.0 of a table cell's contents generated when there are no rows in the data model.
 

Uses of ActionProviderViewInterface in com.sas.servlet.tbeans.tableview.rpf.html
 

Classes in com.sas.servlet.tbeans.tableview.rpf.html that implement ActionProviderViewInterface
 class TextAction
           
 

Uses of ActionProviderViewInterface in com.sas.swing.visuals.olaptableview
 

Classes in com.sas.swing.visuals.olaptableview that implement ActionProviderViewInterface
 class OLAPDrillState
           
 class OLAPTableView
          OLAPTableView is a swing component that extends from TableView and allows OLAP (On-Line Analytical Processing) data to be viewed and manipulated in tabular form.
 

Uses of ActionProviderViewInterface in com.sas.swing.visuals.remotefileselector
 

Classes in com.sas.swing.visuals.remotefileselector that implement ActionProviderViewInterface
 class BaseRemoteFileSelectorPanel
          BaseRemoteFileCompositePanel defines the basic class that displays a UI/view of the files served by the model.
 class IFileServiceSelectorPanel
          IFileServiceSelectorPanel defines the panel to be used when directly accessing IFileService type file systems.
 class InformationServicesSearchPanel
          Panel used to display the search window for the RemoteFileSelector component.
 class InformationServicesSelectorPanel
          InformationServicesSelectorPanel defines the panel to be used when directly accessing Report Repository type file systems.
 class RemoteFileSearchComponent
          RemoteFileSearchComponent is the class used to display a window used to search for files.
 class RemoteFileSearchPanel
          RemoteFileSearchPanel class handles the display of the search window.
 

Uses of ActionProviderViewInterface in com.sas.swing.visuals.tableview
 

Classes in com.sas.swing.visuals.tableview that implement ActionProviderViewInterface
 class TableView
          TableView is a swing component that extends from


Copyright © 2009 SAS Institute Inc. All Rights Reserved.