Uses of Interface
org.apache.wicket.IPageMap

Packages that use IPageMap
org.apache.wicket The core Wicket package. 
org.apache.wicket.devutils   
org.apache.wicket.devutils.inspector Classes that make debugging Wicket HTML applications easier. 
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.link Link components. 
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.session   
org.apache.wicket.session.pagemap   
 

Uses of IPageMap in org.apache.wicket
 

Classes in org.apache.wicket that implement IPageMap
 class AccessStackPageMap
          A container for pages held in the session.
 class PageMap
          FIXME javadoc
 

Methods in org.apache.wicket that return IPageMap
 IPageMap Session.createAutoPageMap()
          Automatically creates a page map, giving it a session unique name.
static IPageMap PageMap.forName(String pageMapName)
          Gets a page map for a page map name, automatically creating the page map if it does not exist.
 IPageMap Session.getDefaultPageMap()
           
 IPageMap Page.getPageMap()
           
 IPageMap Session.newPageMap(String name)
          Creates a new page map with a given name
 IPageMap Session.pageMapForName(String pageMapName, boolean autoCreate)
          Gets a page map for the given name, automatically creating it if need be.
 

Methods in org.apache.wicket that return types with arguments of type IPageMap
 List<IPageMap> Session.getPageMaps()
           
 

Methods in org.apache.wicket with parameters of type IPageMap
 boolean Session.PageMapAccessMetaData.add(IPageMap pagemap)
           
protected  void Page.moveToPageMap(IPageMap map)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void Session.IPageMapVisitor.pageMap(IPageMap pageMap)
           
 void Session.removePageMap(IPageMap pageMap)
           
<C extends Page>
CharSequence
RequestCycle.urlFor(IPageMap pageMap, Class<C> pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
<C extends Page>
CharSequence
Component.urlFor(IPageMap pageMap, Class<C> pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
 

Constructors in org.apache.wicket with parameters of type IPageMap
Page(IPageMap pageMap)
          Constructor.
Page(IPageMap pageMap, IModel<?> model)
          Constructor.
Page(IPageMap pageMap, PageParameters parameters)
          The PageParameters parameter will be stored in this page and then those parameters will be used to create stateless links to this bookmarkable page.
 

Uses of IPageMap in org.apache.wicket.devutils
 

Constructors in org.apache.wicket.devutils with parameters of type IPageMap
DevUtilsPage(IPageMap pageMap)
           
DevUtilsPage(IPageMap pageMap, IModel<?> model)
           
DevUtilsPage(IPageMap pageMap, PageParameters parameters)
           
 

Uses of IPageMap in org.apache.wicket.devutils.inspector
 

Constructors in org.apache.wicket.devutils.inspector with parameters of type IPageMap
PageMapView(String id, IPageMap pageMap)
          Constructor.
 

Uses of IPageMap in org.apache.wicket.markup.html
 

Constructors in org.apache.wicket.markup.html with parameters of type IPageMap
WebPage(IPageMap pageMap)
           
WebPage(IPageMap pageMap, IModel<?> model)
           
WebPage(IPageMap pageMap, PageParameters parameters)
          Constructor which receives wrapped query string parameters for a request.
 

Uses of IPageMap in org.apache.wicket.markup.html.link
 

Methods in org.apache.wicket.markup.html.link that return IPageMap
 IPageMap PopupSettings.getPageMap()
          Deprecated. will be removed in Wicket 2.0; use PopupSettings.getPageMap(Component) instead
 IPageMap InternalFrame.getPageMap()
          Deprecated. Returns the pageMap.
 IPageMap InlineFrame.getPageMap()
          Returns the pageMap.
 IPageMap BookmarkablePageLink.getPageMap()
           
 IPageMap PopupSettings.getPageMap(Component callee)
          Deprecated. Use getPageMapName instead. There is no need to eager create the pagemap object to create URLs. The pagemap will be created during the request cycle when user click on the link for this popup.
 

Methods in org.apache.wicket.markup.html.link with parameters of type IPageMap
 BookmarkablePageLink<T> BookmarkablePageLink.setPageMap(IPageMap pageMap)
           
 

Constructors in org.apache.wicket.markup.html.link with parameters of type IPageMap
InlineFrame(String id, IPageMap pageMap, Class<C> c)
          Constructs an inline frame that instantiates the given Page class when the content of the inline frame is requested.
InlineFrame(String id, IPageMap pageMap, Class<C> c, PageParameters params)
          Constructs an inline frame that instantiates the given Page class when the content of the inline frame is requested.
InlineFrame(String id, IPageMap pageMap, IPageLink pageLink)
          This constructor is ideal for constructing pages lazily.
InternalFrame(String id, IPageMap pageMap, Class c)
          Deprecated. Constructs an inline frame that instantiates the given Page class when the content of the inline frame is requested.
InternalFrame(String id, IPageMap pageMap, IPageLink pageLink)
          Deprecated. This constructor is ideal for constructing pages lazily.
InternalFrame(String id, IPageMap pageMap, Page page)
          Deprecated. This constructor is ideal if a Page object was passed in from a previous Page.
PopupSettings(IPageMap pagemap)
          Deprecated. Use the PopupSettings.PopupSettings(String)
PopupSettings(IPageMap pageMapName, int displayFlags)
          Deprecated. Use the PopupSettings.PopupSettings(String, int)
 

Uses of IPageMap in org.apache.wicket.protocol.http
 

Classes in org.apache.wicket.protocol.http that implement IPageMap
protected static class SecondLevelCacheSessionStore.SecondLevelCachePageMap
          Page map implementation for this session store.
 

Methods in org.apache.wicket.protocol.http that return IPageMap
 IPageMap SecondLevelCacheSessionStore.createPageMap(String name)
           
 IPageMap HttpSessionStore.createPageMap(String name)
           
 IPageMap AbstractHttpSessionStore.createPageMap(String name, Session session)
          Deprecated. remove after deprecation release
 

Uses of IPageMap in org.apache.wicket.session
 

Methods in org.apache.wicket.session that return IPageMap
 IPageMap ISessionStore.createPageMap(String name)
           
 

Uses of IPageMap in org.apache.wicket.session.pagemap
 

Methods in org.apache.wicket.session.pagemap with parameters of type IPageMap
 void LeastRecentlyAccessedEvictionStrategy.evict(IPageMap pageMap)
           
 void IPageMapEvictionStrategy.evict(IPageMap pageMap)
           
 



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