Uses of Interface
org.apache.wiki.api.core.Page
-
Packages that use Page Package Description org.apache.wiki.api.core JSPWiki's central API.org.apache.wiki.api.providers Page Providers' API package of JSPWiki.org.apache.wiki.api.search Search's API package of JSPWiki.org.apache.wiki.api.spi JSPWiki's SPI package. -
-
Uses of Page in org.apache.wiki.api.core
Subinterfaces of Page in org.apache.wiki.api.core Modifier and Type Interface Description interfaceAttachmentDescribes an attachment.Methods in org.apache.wiki.api.core that return Page Modifier and Type Method Description PagePage. clone()PageContext. getPage()Returns the WikiPage that is being handled.PageContext. getRealPage()Gets a reference to the real WikiPage whose content is currently being rendered.PageContext. setRealPage(Page wikiPage)Sets a reference to the real WikiPage whose content is currently being rendered.Methods in org.apache.wiki.api.core with parameters of type Page Modifier and Type Method Description voidContext. setPage(Page wikiPage)Sets the WikiPage that is being handled.PageContext. setRealPage(Page wikiPage)Sets a reference to the real WikiPage whose content is currently being rendered. -
Uses of Page in org.apache.wiki.api.providers
Methods in org.apache.wiki.api.providers that return Page Modifier and Type Method Description PagePageProvider. getPageInfo(java.lang.String page, int version)Returns info about the page.Methods in org.apache.wiki.api.providers that return types with arguments of type Page Modifier and Type Method Description java.util.Collection<Page>PageProvider. getAllChangedSince(java.util.Date date)Gets a list of recent changes.java.util.Collection<Page>PageProvider. getAllPages()Returns all pages.java.util.List<Page>PageProvider. getVersionHistory(java.lang.String page)Returns version history.Methods in org.apache.wiki.api.providers with parameters of type Page Modifier and Type Method Description AttachmentAttachmentProvider. getAttachmentInfo(Page page, java.lang.String name, int version)Returns info about an attachment.java.util.List<Attachment>AttachmentProvider. listAttachments(Page page)Lists all attachments attached to a page.voidPageProvider. putPageText(Page page, java.lang.String text)Attempts to save the page text for page "page". -
Uses of Page in org.apache.wiki.api.search
Methods in org.apache.wiki.api.search that return Page Modifier and Type Method Description PageSearchResult. getPage()Return the page. -
Uses of Page in org.apache.wiki.api.spi
Methods in org.apache.wiki.api.spi that return Page Modifier and Type Method Description PageContentsDSL. page(Engine engine, java.lang.String name)Creates aPageinstance.PageContentsSPI. page(Engine engine, java.lang.String name)Creates aPageinstance.Methods in org.apache.wiki.api.spi with parameters of type Page Modifier and Type Method Description ContextContextDSL. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)Creates a new Context for the given Engine, Page and HttpServletRequest.ContextContextDSL. create(Engine engine, Page page)Create a new Context for the given Page.ContextContextSPI. create(Engine engine, javax.servlet.http.HttpServletRequest request, Page page)Creates a new Context for the given Engine, Page and HttpServletRequest.ContextContextSPI. create(Engine engine, Page page)Create a new Context for the given Page.
-