Uses of Class
to.etc.domui.state.PageParameters

Packages that use PageParameters
to.etc.domui.component.menu   
to.etc.domui.component.misc   
to.etc.domui.dom.html   
to.etc.domui.injector   
to.etc.domui.state   
to.etc.domui.util   
 

Uses of PageParameters in to.etc.domui.component.menu
 

Methods in to.etc.domui.component.menu that return PageParameters
 PageParameters IMenuItem.getPageParameters()
           
 PageParameters MenuItemImpl.getPageParameters()
           
 PageParameters MenuItemProxy.getPageParameters()
           
 

Methods in to.etc.domui.component.menu with parameters of type PageParameters
 MenuItemImpl MenuItemImpl.setPageParameters(PageParameters pageParameters)
           
 

Uses of PageParameters in to.etc.domui.component.misc
 

Methods in to.etc.domui.component.misc that return PageParameters
 PageParameters ALink.getTargetParameters()
           
 

Methods in to.etc.domui.component.misc with parameters of type PageParameters
 void ALink.setTargetParameters(PageParameters targetParameters)
           
 

Constructors in to.etc.domui.component.misc with parameters of type PageParameters
ALink(java.lang.Class<? extends UrlPage> targetClass, PageParameters targetParameters)
          Link to a new page; the new page is a SUB page (it is added to the shelve stack).
ALink(java.lang.Class<? extends UrlPage> targetClass, PageParameters targetParameters, MoveMode mode)
           
ALink(java.lang.Class<? extends UrlPage> targetClass, PageParameters targetParameters, WindowParameters newWindowParameters)
           
ALink(java.lang.String targetURL, PageParameters targetParameters, WindowParameters newWindowParameters)
          Link to some http: url that is not a DomUI page.
 

Uses of PageParameters in to.etc.domui.dom.html
 

Methods in to.etc.domui.dom.html that return PageParameters
 PageParameters Page.getPageParameters()
           
 

Methods in to.etc.domui.dom.html with parameters of type PageParameters
 void Page.internalInitialize(PageParameters pp, ConversationContext cc)
          Assign required data to the page.
 void Page.openWindow(java.lang.Class<? extends UrlPage> clz, PageParameters pp, WindowParameters wp)
          Deprecated. 
 

Uses of PageParameters in to.etc.domui.injector
 

Methods in to.etc.domui.injector with parameters of type PageParameters
protected  java.lang.String UrlEntityInjector.getParameterValue(UrlPage page, PageParameters papa)
           
 void UrlEntityInjector.inject(UrlPage page, RequestContextImpl ctx, PageParameters papa)
           
abstract  void PropertyInjector.inject(UrlPage page, RequestContextImpl ctx, PageParameters pp)
           
 void UrlParameterInjector.inject(UrlPage page, RequestContextImpl ctx, PageParameters papa)
          Effects the actual injection of an URL parameter to a value.
 void DefaultPageInjector.injectPageValues(UrlPage page, RequestContextImpl ctx, PageParameters papa)
          This scans the page for properties that are to be injected.
protected  boolean UrlEntityInjector.isNew(UrlPage page, RequestContextImpl ctx, PageParameters papa, java.lang.String value)
          Returns T if the request is to create a new instance.
 

Uses of PageParameters in to.etc.domui.state
 

Methods in to.etc.domui.state that return PageParameters
static PageParameters PageParameters.createFrom(IRequestContext ctx)
          Create this from an actual request.
 PageParameters WindowSession.getTargetPageParameters()
           
 

Methods in to.etc.domui.state with parameters of type PageParameters
static void UIGoto.clearPageAndReload(Page pg, java.lang.Class<? extends UrlPage> target, PageParameters pp, java.lang.String msg)
          Destroy the current page and replace it with the new page specified.
static void UIGoto.clearPageAndReload(Page pg, java.lang.String msg, PageParameters pp)
          Destroy the current page and replace it with the new page specified with provided page parameters.
static void UIGoto.clearPageAndReload(Page pg, UIMessage msg, PageParameters pp)
          Destroy the current page and replace it with the new page specified.
 void IPageInjector.injectPageValues(UrlPage page, RequestContextImpl ctx, PageParameters papa)
           
 void ConversationContext.internalRegisterPage(Page p, PageParameters papa)
           
 void WindowSession.internalSetNextPage(MoveMode m, java.lang.Class<? extends UrlPage> clz, ConversationContext cc, java.lang.Class<? extends ConversationContext> ccclz, PageParameters pp)
           
 Page WindowSession.makeOrGetPage(IRequestContext rctx, java.lang.Class<? extends UrlPage> clz, PageParameters papa)
          Get a valid Page, either from the shelve stack or some other location.
static void UIGoto.moveNew(java.lang.Class<? extends UrlPage> clz, PageParameters pp)
          Clear the entire shelf, then goto a new page.
static void UIGoto.moveSub(java.lang.Class<? extends UrlPage> clz, ConversationContext cc, PageParameters pp)
          Push (shelve) the current page, then move to a new page.
static void UIGoto.moveSub(java.lang.Class<? extends UrlPage> clz, PageParameters pp)
          Push (shelve) the current page, then move to a new page.
static boolean PageMaker.pageAcceptsParameters(Page pg, PageParameters papa)
          FIXME Move to WindowSession?
 void IParameterChangeListener.pageParametersChanged(PageParameters papa)
           
static void UIGoto.replace(java.lang.Class<? extends UrlPage> clz, PageParameters pp)
          Replace the "current" page with a new page.
static void UIGoto.replace(Page pg, java.lang.Class<? extends UrlPage> clz, PageParameters pp, UIMessage msg)
          Replace the "current" page with a new page.
 

Uses of PageParameters in to.etc.domui.util
 

Methods in to.etc.domui.util with parameters of type PageParameters
static void DomUtil.addUrlParameters(java.lang.StringBuilder sb, PageParameters ctx, boolean first)
           
static java.lang.String DomUtil.createOpenWindowJS(java.lang.Class<?> targetClass, PageParameters targetParameters, WindowParameters newWindowParameters)
          This opens a new DomUI page, immediately creating a session for it.
static java.lang.String DomUtil.createPageURL(java.lang.Class<? extends UrlPage> clz, PageParameters pp)
           
static java.lang.String DomUtil.createPageURL(java.lang.String rurl, PageParameters pageParameters)
          Generate an URL to some page with parameters.
static java.lang.Long DomUtil.getLongParameter(PageParameters pp, java.lang.String name, java.lang.Long def)
          Deprecated.