Uses of Class
wicket.PageMap

Packages that use PageMap
wicket The core Wicket package. 
wicket.markup.html Base package of HTML markup. 
wicket.markup.html.link Link components. 
wicket.protocol.http HTTP implementation. 
wicket.protocol.http.portlet Wicket interface to the JSR-168 portlet API. 
wicket.session.pagemap   
 

Uses of PageMap in wicket
 

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

Methods in wicket with parameters of type PageMap
protected  void Page.moveToPageMap(PageMap map)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void Session.IPageMapVisitor.pageMap(PageMap pageMap)
           
 void Session.removePageMap(PageMap pageMap)
           
 java.lang.CharSequence RequestCycle.urlFor(PageMap pageMap, java.lang.Class pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
 java.lang.CharSequence Component.urlFor(PageMap pageMap, java.lang.Class pageClass, PageParameters parameters)
          Returns a bookmarkable URL that references a given page class using a given set of page parameters.
 

Constructors in wicket with parameters of type PageMap
Page(PageMap pageMap)
          Constructor.
Page(PageMap pageMap, IModel model)
          Constructor.
 

Uses of PageMap in wicket.markup.html
 

Constructors in wicket.markup.html with parameters of type PageMap
WebPage(PageMap pageMap)
           
WebPage(PageMap pageMap, IModel model)
           
 

Uses of PageMap in wicket.markup.html.link
 

Methods in wicket.markup.html.link that return PageMap
 PageMap PopupSettings.getPageMap()
          Deprecated. will be removed in Wicket 2.0; use PopupSettings.getPageMap(Component) instead
 PageMap InternalFrame.getPageMap()
          Deprecated. Returns the pageMap.
 PageMap InlineFrame.getPageMap()
          Returns the pageMap.
 PageMap BookmarkablePageLink.getPageMap()
           
 PageMap PopupSettings.getPageMap(Component callee)
          Gets the pagemap where the popup page must be created in.
 

Methods in wicket.markup.html.link with parameters of type PageMap
 BookmarkablePageLink BookmarkablePageLink.setPageMap(PageMap pageMap)
           
 

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

Uses of PageMap in wicket.protocol.http
 

Methods in wicket.protocol.http with parameters of type PageMap
 void WebApplication.mountBookmarkablePage(java.lang.String path, PageMap pageMap, java.lang.Class bookmarkablePageClass)
          Deprecated. You won't be able to use this mount. Use WebApplication.mountBookmarkablePage(String, String, Class) instead
 void RequestLogger.SessionData.pageMapCreated(PageMap map)
           
 void RequestLogger.SessionData.pageMapRemoved(PageMap map)
           
 void RequestLogger.SessionData.pageMapUpdated(PageMap map)
           
 

Uses of PageMap in wicket.protocol.http.portlet
 

Constructors in wicket.protocol.http.portlet with parameters of type PageMap
PortletPage(PageMap pageMap)
           
PortletPage(PageMap pageMap, IModel model)
           
 

Uses of PageMap in wicket.session.pagemap
 

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



Copyright © 2004-2007 Wicket developers. All Rights Reserved.