Uses of Interface
org.apache.shale.dialog.DialogContext

Packages that use DialogContext
org.apache.shale.dialog   
org.apache.shale.dialog.base   
 

Uses of DialogContext in org.apache.shale.dialog
 

Methods in org.apache.shale.dialog that return DialogContext
 DialogContext DialogContextManager.create(javax.faces.context.FacesContext context, String name)
          Create a new instance of the specified dialog configuration, returning the newly created instance.
 DialogContext DialogContextManager.create(javax.faces.context.FacesContext context, String name, DialogContext parent)
          Create a new instance of the specified dialog configuration, returning the newly created instance.
 DialogContext DialogContextManager.get(String id)
          Return the DialogContext instance for the specified identifier (if any); otherwise, return null.
 DialogContext DialogContextManager.getActiveDialogContext(javax.faces.context.FacesContext context)
          Return the currently active DialogContext instance for the current request, if there is one; otherwise, return null.
static DialogContext DialogHelper.getDialogContext()
          Return the active DialogContext instance for the current request, if any; otherwise, return null.
 DialogContext DialogContextListener.getDialogContext()
          Return the DialogContext instance associated with this DialogContextListener.
static DialogContext DialogHelper.getDialogContext(javax.faces.context.FacesContext context)
          Return the active DialogContext instance for the current request, if any; otherwise, return null.
 DialogContext DialogContext.getParent()
          Return the parent DialogContext instance associated with this child DialogContext, if any; otherwise, return null.
 

Methods in org.apache.shale.dialog with parameters of type DialogContext
 DialogContext DialogContextManager.create(javax.faces.context.FacesContext context, String name, DialogContext parent)
          Create a new instance of the specified dialog configuration, returning the newly created instance.
 void DialogContextManagerListener.onCreate(DialogContext context)
          Handle the case where a new DialogContext instance has been created.
 void DialogContextManagerListener.onRemove(DialogContext context)
          Handle the case where a new DialogContext instance has been removed.
 void DialogContextManager.remove(DialogContext instance)
          Remove the specified DialogContext instance from the set of active instances for the current user.
 void DialogContextListener.setDialogContext(DialogContext dialogContext)
          Set the DialogContext instance associated with this DialogContextListener.
 

Uses of DialogContext in org.apache.shale.dialog.base
 

Classes in org.apache.shale.dialog.base that implement DialogContext
 class AbstractDialogContext
          Convenience abstract DialogContext implementation.
 

Methods in org.apache.shale.dialog.base that return DialogContext
 DialogContext AbstractDialogContextManager.getActiveDialogContext(javax.faces.context.FacesContext context)
          Return the currently active DialogContext instance for the current request, if there is one; otherwise, return null.
 DialogContext AbstractDialogContextListener.getDialogContext()
          

Return the DialogContext instance associated with this DialogContextListener.

 

Methods in org.apache.shale.dialog.base with parameters of type DialogContext
protected  void AbstractDialogContextManager.fireOnCreate(DialogContext context)
          Fire an onCreate() event to all registered listeners.
protected  void AbstractDialogContextManager.fireOnRemove(DialogContext context)
          Fire an onRemove() event to all registered listeners.
 void AbstractDialogContextManagerListener.onCreate(DialogContext context)
          

Handle the case where a new DialogContext instance has been created.

 void AbstractDialogContextManagerListener.onRemove(DialogContext context)
          

Handle the case where a new DialogContext instance has been removed.

 void AbstractDialogContextListener.setDialogContext(DialogContext dialogContext)
          

Set the DialogContext instance associated with this DialogContextListener.

 



Copyright © 2004-2007 Apache Software Foundation. All Rights Reserved.