Uses of Interface
com.sun.rave.web.ui.component.util.event.HandlerContext

Packages that use HandlerContext
com.sun.rave.web.ui.component.util.descriptors   
com.sun.rave.web.ui.component.util.event   
com.sun.rave.web.ui.component.util.handlers   
 

Uses of HandlerContext in com.sun.rave.web.ui.component.util.descriptors
 

Methods in com.sun.rave.web.ui.component.util.descriptors that return HandlerContext
protected  HandlerContext LayoutElementBase.createHandlerContext(javax.faces.context.FacesContext context, java.util.EventObject event, java.lang.String eventType)
           This method is responsible for creating a new HandlerContext.
 

Methods in com.sun.rave.web.ui.component.util.descriptors with parameters of type HandlerContext
static void LayoutMarkup.afterEncodeHandler(HandlerContext context)
           This handler takes care of closing the tag.
 java.lang.Object LayoutElement.dispatchHandlers(HandlerContext handlerCtx, java.util.List handlers)
           
 java.lang.Object LayoutElementBase.dispatchHandlers(HandlerContext handlerCtx, java.util.List handlers)
           As currently implemented, this method is essentially a utility method.
 

Uses of HandlerContext in com.sun.rave.web.ui.component.util.event
 

Classes in com.sun.rave.web.ui.component.util.event that implement HandlerContext
 class HandlerContextImpl
           
 

Methods in com.sun.rave.web.ui.component.util.event with parameters of type HandlerContext
 java.lang.Object Handler.getInputValue(HandlerContext ctx, java.lang.String name)
           This method returns the value for the named input.
 java.lang.Object Handler.getOutputValue(HandlerContext context, java.lang.String name)
           This method retrieves an output value.
 java.lang.Object RequestAttributeOutputType.getValue(HandlerContext context, IODescriptor outDesc, java.lang.String key)
           This method is responsible for retrieving the value of the Output from a Request attribute.
 java.lang.Object OutputType.getValue(HandlerContext context, IODescriptor outDesc, java.lang.String key)
           This method is responsible for retrieving the value of the Output from the destination that was specified by handler.
 java.lang.Object SessionAttributeOutputType.getValue(HandlerContext context, IODescriptor outDesc, java.lang.String key)
           This method is responsible for retrieving the value of the Output from a Session attribute.
 java.lang.Object Handler.invoke(HandlerContext handlerContext)
           
 void Handler.setOutputValue(HandlerContext context, java.lang.String name, java.lang.Object value)
           This method stores an output value.
 void RequestAttributeOutputType.setValue(HandlerContext context, IODescriptor outDesc, java.lang.String key, java.lang.Object value)
           This method is responsible for setting the value of the Output to a ServletRequest attribute.
 void OutputType.setValue(HandlerContext context, IODescriptor outDesc, java.lang.String key, java.lang.Object value)
           This method is responsible for setting the value of the Output to the destination that was specified by handler.
 void SessionAttributeOutputType.setValue(HandlerContext context, IODescriptor outDesc, java.lang.String key, java.lang.Object value)
           This method is responsible for setting the value of the Output to a Session attribute.
 

Constructors in com.sun.rave.web.ui.component.util.event with parameters of type HandlerContext
HandlerContextImpl(HandlerContext context)
           Constructor that gets all its values from the given HandlerContext.
 

Uses of HandlerContext in com.sun.rave.web.ui.component.util.handlers
 

Methods in com.sun.rave.web.ui.component.util.handlers with parameters of type HandlerContext
 void UtilHandlers.createList(HandlerContext context)
           This method creates a List.
 void UtilHandlers.dec(HandlerContext context)
           This handler decrements a number by 1.
 void TreeHandlers.decodeTree(HandlerContext context)
           This method provides the decode() functionality for the Tree.
static void UtilHandlers.endSkipHyperlink(HandlerContext context)
          Render skip anchor -- see bugtarq #6329543.
 void ComponentHandlers.getChildren(HandlerContext context)
           This handler returns the children of the given UIComponent.
 void UtilHandlers.getClientId(HandlerContext context)
           This method enables you to retrieve the clientId for the given UIComponent.
 void UtilHandlers.getId(HandlerContext context)
           This method enables you to retrieve the id or clientId for the given Object which is expected to be a UIComponent or a String that already represents the clientId.
 void TreeHandlers.getImageKeys(HandlerContext context)
           This Handler creates a List of image theme icons that should be rendered from left to right representing the lines and other images that create a portion of the tree.
 void UtilHandlers.getIterator(HandlerContext context)
           This method returns an Iterator for the given List.
 void PropertySheetHandlers.getLabelTarget(HandlerContext context)
           This Handler creates a List of visible (rendered=true) PropertySheetSection components.
 void PropertySheetHandlers.getSectionChildrenCount(HandlerContext context)
           This method calculates the number of visible child PropertySheetSection or Property UIComponents.
 void PropertySheetHandlers.getSectionCount(HandlerContext context)
           This method calculates the number of visible PropertySheetSections.
 void PropertySheetHandlers.getVisibleSectionChildren(HandlerContext context)
           This Handler creates a List of visible (rendered=true) child PropertySheetSection or Property components.
 void PropertySheetHandlers.getVisibleSections(HandlerContext context)
           This Handler creates a List of visible (rendered=true) PropertySheetSection components.
 void UtilHandlers.inc(HandlerContext context)
           This handler increments a number by 1.
 void UtilHandlers.iteratorHasNext(HandlerContext context)
           This method returns a Boolean value representing whether another value exists for the given Iterator.
 void UtilHandlers.iteratorNext(HandlerContext context)
           This method returns the next object in the List that the given Iterator is iterating over.
 void UtilHandlers.println(HandlerContext context)
           This handler writes using System.out.println.
 boolean UtilHandlers.returnFalse(HandlerContext context)
           This method returns false.
 boolean UtilHandlers.returnTrue(HandlerContext context)
           This method returns true.
 void TreeHandlers.selectTreeNode(HandlerContext context)
           This Handler selects the specified TreeNode.
 void UtilHandlers.setAttribute(HandlerContext context)
           This handler sets a request attribute.
 void ComponentHandlers.setComponentProperty(HandlerContext context)
           This handler sets a UIComponent attribute / property.
static void UtilHandlers.startSkipHyperlink(HandlerContext context)
          Render skip hyperlink -- see bugtarq #6329543.