Uses of Class
com.ibm.pim.view.ScreenType

Packages that use ScreenType
com.ibm.pim.catalog   
com.ibm.pim.hierarchy   
com.ibm.pim.view   
com.ibm.pim.workflow   
 

Uses of ScreenType in com.ibm.pim.catalog
 

Methods in com.ibm.pim.catalog that return types with arguments of type ScreenType
 java.util.Collection<ScreenType> CatalogManager.getApplicableScreenTypes()
          Get all applicable screen types that a View on a catalog can be attached to
 

Uses of ScreenType in com.ibm.pim.hierarchy
 

Methods in com.ibm.pim.hierarchy that return types with arguments of type ScreenType
 java.util.Collection<ScreenType> HierarchyManager.getApplicableScreenTypes()
          Returns all the screen types that a View on a hierarchy can be attached to
 

Uses of ScreenType in com.ibm.pim.view
 

Methods in com.ibm.pim.view that return ScreenType
 ScreenType ScreenView.getScreenType()
          get the type of screen to which this screen view corresponds
static ScreenType ScreenType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenType[] ScreenType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in com.ibm.pim.view with parameters of type ScreenType
 ScreenView View.getScreenView(ScreenType screenType)
          retrieve the ScreenView for the specified ScreenType.
 

Uses of ScreenType in com.ibm.pim.workflow
 

Methods in com.ibm.pim.workflow with parameters of type ScreenType
 java.util.Collection<AttributeCollection> WorkflowStep.getAttributeCollections(ScreenType screenType)
          Get all attribute collections for a given screen type on this step.
 java.util.Collection<AttributeCollection> WorkflowStep.getEditableAttributeCollections(ScreenType screenType)
          Get the editable (but not required) attribute collections for a given screen type on this step.
 java.util.Collection<AttributeCollection> WorkflowStep.getRequiredAttributeCollections(ScreenType screenType)
          Get the required & editable attribute collections for a given screen type on this step.
 java.util.Collection<AttributeCollection> WorkflowStep.getViewableAttributeCollections(ScreenType screenType)
          Get the viewable attribute collections for a given screen type on this step.
 void WorkflowStep.setEditableAttributeCollections(java.util.Collection<AttributeCollection> editableAttributeCollections, ScreenType screenType)
          Set/override the editable (but not required) attribute collections for a given screen type on this step.
 void WorkflowStep.setRequiredAttributeCollections(java.util.Collection<AttributeCollection> requiredAttributeCollections, ScreenType screenType)
          Set/override the required & editable attribute collections for a given screen type on this step.
 void WorkflowStep.setViewableAttributeCollections(java.util.Collection<AttributeCollection> viewableAttributeCollections, ScreenType screenType)
          Set/override the viewable attribute collections for a given screen type on this step.