Uses of Interface
com.sas.collection.StaticPropertyBagInterface

Packages that use StaticPropertyBagInterface
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.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 StaticPropertyBagInterface in com.sas.collection
 

Subinterfaces of StaticPropertyBagInterface in com.sas.collection
 interface PropertyBagInterface
          A PropertyBagInterface defines a set of properties, much like a Dictionary but simpler: keys must be Strings.
 

Classes in com.sas.collection that implement StaticPropertyBagInterface
 class PropertyBag
          A PropertyBag defines a collection of properties, much like a Dictionary but simpler.
 

Fields in com.sas.collection declared as StaticPropertyBagInterface
protected  StaticPropertyBagInterface PropertyBag.defaults
          The defaults to look in when an item is not found.
 

Methods in com.sas.collection that return StaticPropertyBagInterface
 StaticPropertyBagInterface PropertyBag.getDefaults()
          Return the defaults for item not found in this property bag.
 

Methods in com.sas.collection with parameters of type StaticPropertyBagInterface
static int PropertyBag.collect(PropertyBagInterface target, PropertyBagInterface query, StaticPropertyBagInterface source)
          Collect values from a source property bag, according to the elements in the query property bag, merging results into the target property bag.
abstract  void PropertyBagInterface.merge(StaticPropertyBagInterface other)
          Merge into this bag any property from the source property bag which does not exist in this bag.
 void PropertyBag.merge(StaticPropertyBagInterface other)
          Merge into this property bag any property from the other property bag which does not exist in this bag.
static void PropertyBag.save(StaticPropertyBagInterface properties, java.io.OutputStream stream, java.lang.String header)
          Save properties to an Output stream.
abstract  void PropertyBagInterface.set(StaticPropertyBagInterface other)
          Add the contents of another property bag to this property bag.
 void PropertyBag.set(StaticPropertyBagInterface other)
          Add the contents of another property list to this property list.
 void PropertyBag.setDefaults(StaticPropertyBagInterface defaults)
          Set the defaults property bag.
static void PropertyBag.setProperties(java.lang.Object bean, StaticPropertyBagInterface properties)
          Extract the properties from the property bag properties and apply them to the public properties of the bean.
static java.util.Properties PropertyBag.toProperties(StaticPropertyBagInterface propertyBag, java.util.Properties properties)
          Copy the key/value pairs from a property bag into a Properties object.
 

Constructors in com.sas.collection with parameters of type StaticPropertyBagInterface
PropertyBag(StaticPropertyBagInterface defaults)
          Construct a property bag which looks through to a default property bag when items are not found.
 

Uses of StaticPropertyBagInterface in com.sas.models
 

Subinterfaces of StaticPropertyBagInterface in com.sas.models
 interface RangeSegmentInterface
           
 

Classes in com.sas.models that implement StaticPropertyBagInterface
 class RangeSegment
          A RangeSegment defines one portion of a RangeCollection object.
 

Fields in com.sas.models declared as StaticPropertyBagInterface
protected  StaticPropertyBagInterface Node.defaultNodeStyle
          defaultNodeStyle property.
protected  StaticPropertyBagInterface Node.nodeStyle
          nodeStyle property.
 

Methods in com.sas.models that return StaticPropertyBagInterface
 StaticPropertyBagInterface SimpleTable.getCellStyle(int rowIndex, int colIndex)
          Throws an exception since SimpleTable does not support styles on a per-cell basis at this time.
 StaticPropertyBagInterface SimpleTable.getColumnLabelStyle(int colIndex)
          Throws an exception since SimpleTable does not support styles on a per-column-label basis at this time.
 StaticPropertyBagInterface SimpleTable.getColumnStyle(int colIndex)
          Throws an exception since SimpleTable does not support styles on a per-column basis at this time.
 StaticPropertyBagInterface SimpleTable.getDefaultCellStyle()
          Returns the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for cells.
 StaticPropertyBagInterface SimpleTable.getDefaultColumnStyle()
          Returns the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for columns.
 StaticPropertyBagInterface SimpleTable.getDefaultLabelStyle()
          Returns the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for labels.
abstract  StaticPropertyBagInterface StaticTreeNodeStyleInterface.getDefaultNodeStyle()
          Returns the default node style for all nodes.
abstract  StaticPropertyBagInterface StaticNodeStyleInterface.getDefaultNodeStyle()
          Returns the default node style for this node and all of this node's descendants.
 StaticPropertyBagInterface Node.getDefaultNodeStyle()
          Returns the default node style for this node and all of this node's descendants.
 StaticPropertyBagInterface SimpleTable.getDefaultRowStyle()
          Returns the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for rows.
abstract  StaticPropertyBagInterface StaticNodeStyleInterface.getNodeStyle()
          Returns the style for a node.
 StaticPropertyBagInterface Node.getNodeStyle()
          Returns the style for this node.
abstract  StaticPropertyBagInterface StaticTreeNodeStyleInterface.getNodeTypeStyle(java.lang.String type)
          Returns the style associated with a given node type.
abstract  StaticPropertyBagInterface[] StaticTreeNodeStyleInterface.getNodeTypeStyles()
          Returns the complete set of styles associated with node types.
 StaticPropertyBagInterface SimpleTable.getRowLabelStyle(int rowIndex)
          Throws an exception since SimpleTable does not support styles on a per-row-label basis at this time.
 StaticPropertyBagInterface SimpleTable.getRowStyle(int rowIndex)
          Throws an exception since SimpleTable does not support styles on a per-row basis at this time.
 

Methods in com.sas.models with parameters of type StaticPropertyBagInterface
 void SimpleTable.setDefaultCellStyle(StaticPropertyBagInterface newValue)
          Specifies the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for cells.
 void SimpleTable.setDefaultColumnStyle(StaticPropertyBagInterface newValue)
          Specifies the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for columns.
 void SimpleTable.setDefaultLabelStyle(StaticPropertyBagInterface newValue)
          Specifies the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for labels.
 void Node.setDefaultNodeStyle(StaticPropertyBagInterface newValue)
          Sets the default node style for this node and all of this node's descendants.
 void SimpleTable.setDefaultRowStyle(StaticPropertyBagInterface newValue)
          Specifies the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for rows.
 void Node.setNodeStyle(StaticPropertyBagInterface newValue)
          Sets the node style for this node and all of this node's descendants.
 

Uses of StaticPropertyBagInterface in com.sas.table
 

Classes in com.sas.table that implement StaticPropertyBagInterface
 class BorderStyle
          A customizable set of border properties.
 class CellStyle
          A customizable set of cell properties.
 class CellVectorStyle
          A customizable set of column and row properties.
 class ColumnStyle
          A customizable set of column properties.
 class FontStyle
          A customizable set of font properties.
 class RowStyle
          A customizable set of row properties.
 

Fields in com.sas.table declared as StaticPropertyBagInterface
protected static StaticPropertyBagInterface[] TableElement.emptyModelTypeStylesArray
          Helper variable to use as return value from getModelTypeStyles when no model type styles are available for the element.
 

Methods in com.sas.table that return StaticPropertyBagInterface
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getCellStyle(int rowIndex, int colIndex)
          Returns the style for a given cell.
abstract  StaticPropertyBagInterface StaticTableTypeStylesInterface.getCellTypeStyle(java.lang.String type)
          Returns the style associated with a given cell type.
abstract  StaticPropertyBagInterface[] StaticTableTypeStylesInterface.getCellTypeStyles()
          Returns the complete set of styles associated with cell types.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getColumnLabelStyle(int colIndex)
          Returns the style for a given column's label.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getColumnStyle(int colIndex)
          Returns the style for a given column.
abstract  StaticPropertyBagInterface StaticTableTypeStylesInterface.getColumnTypeStyle(java.lang.String type)
          Returns the style associated with a given column type.
abstract  StaticPropertyBagInterface[] StaticTableTypeStylesInterface.getColumnTypeStyles()
          Returns the complete set of styles associated with column types.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getDefaultCellStyle()
          Returns the default style for all cells.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getDefaultColumnStyle()
          Returns the default style for all columns.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getDefaultLabelStyle()
          Returns the default style for all labels.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getDefaultRowStyle()
          Returns the default style for all rows.
abstract  StaticPropertyBagInterface TableElement.getDefaultStyle()
          Returns the default style associated with elements of this type by the table view.
 StaticPropertyBagInterface Row.getDefaultStyle()
          Returns the table view's default row style.
 StaticPropertyBagInterface LabelCell.getDefaultStyle()
          Returns the table view's default label style.
 StaticPropertyBagInterface DataCell.getDefaultStyle()
          Returns the table view's default cell style.
 StaticPropertyBagInterface Column.getDefaultStyle()
          Returns the table view's default column style.
abstract  StaticPropertyBagInterface TableElement.getModelDefaultStyle()
          Returns the default style associated with elements of this type by the table view's model.
 StaticPropertyBagInterface Row.getModelDefaultStyle()
          Returns the table view's model's default row style.
 StaticPropertyBagInterface LabelCell.getModelDefaultStyle()
          Returns the table view's model's default label style.
 StaticPropertyBagInterface DataCell.getModelDefaultStyle()
          Returns the table view's model's default cell style.
 StaticPropertyBagInterface Column.getModelDefaultStyle()
          Returns the table view's model's default column style.
 StaticPropertyBagInterface TableElement.getModelStyle()
          Returns the set of model-supplied style property keys and their associated values that serve as formatting and rendering defaults and hints for the element.
abstract  StaticPropertyBagInterface[] TableElement.getModelTypeStyles()
          Returns the styles associated with the element's model types.
 StaticPropertyBagInterface[] CellVector.getModelTypeStyles()
          Returns an empty array since support for querying a model for its column or row type styles is not yet available.
 StaticPropertyBagInterface[] Cell.getModelTypeStyles()
          Returns the styles associated with the cell's model types.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getRowLabelStyle(int rowIndex)
          Returns the style for a given row's label.
abstract  StaticPropertyBagInterface StaticTableStyleInterface.getRowStyle(int rowIndex)
          Returns the style for a given row.
abstract  StaticPropertyBagInterface StaticTableTypeStylesInterface.getRowTypeStyle(java.lang.String type)
          Returns the style associated with a given row type.
abstract  StaticPropertyBagInterface[] StaticTableTypeStylesInterface.getRowTypeStyles()
          Returns the complete set of styles associated with row types.
 StaticPropertyBagInterface TableElement.getStyle()
          Returns the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for the element.
protected abstract  StaticPropertyBagInterface TableElement.onGetModelStyle()
          TableElement framework method for querying the table view's model for any style properties associated with the element.
protected  StaticPropertyBagInterface Row.onGetModelStyle()
          TableElement framework method for querying the table view's model for any style properties associated with the element.
protected  StaticPropertyBagInterface LabelCell.onGetModelStyle()
          TableElement framework method for querying the table view's model for any style properties associated with the element.
protected  StaticPropertyBagInterface DataCell.onGetModelStyle()
          TableElement framework method for querying the table view's model for any style properties associated with the element.
protected  StaticPropertyBagInterface Column.onGetModelStyle()
          TableElement framework method for querying the table view's model for any style properties associated with the element.
abstract  StaticPropertyBagInterface LabelCellTypeInterface.onGetModelStyle(LabelCell cell)
           
 

Methods in com.sas.table with parameters of type StaticPropertyBagInterface
 void TableElement.setStyle(StaticPropertyBagInterface newValue)
          Sets the set of style property keys and their associated values that serve as formatting and rendering defaults and hints for the element.
 

Uses of StaticPropertyBagInterface in com.sas.util
 

Classes in com.sas.util that implement StaticPropertyBagInterface
 class DynamicPropertyBag
          This abstract class represents a property bag component, which defines a collection of dynamic properties that can be specified at design time within the IDE via a customizer.
 class ParameterBag
          This class represents the parameters that can be passed to an application (via command line arguments) or applet (via HTML PARAM tags)
 

Methods in com.sas.util with parameters of type StaticPropertyBagInterface
 void DynamicPropertyBag.merge(StaticPropertyBagInterface other)
          Merge into this bag any property from the source which does not exist in this bag.
 void DynamicPropertyBag.set(StaticPropertyBagInterface other)
          Add the contents of another property bag to this property bag.
 

Uses of StaticPropertyBagInterface in com.sas.visuals
 

Classes in com.sas.visuals that implement StaticPropertyBagInterface
 class NodeStyle
          A customizable set of node properties.
 class TextElement
          TextElement is a sub-class of com.sas.collection.PropertyBag that holds properties about an element of text.
 




Copyright © 2009 SAS Institute Inc. All Rights Reserved.