Package org.apache.wiki.pages.haddock
Class EditWikiPage
- java.lang.Object
-
- org.apache.wiki.pages.haddock.EditWikiPage
-
- All Implemented Interfaces:
HaddockPage,Page
public class EditWikiPage extends java.lang.Object implements HaddockPage
Actions available on the Edit page.
-
-
Constructor Summary
Constructors Constructor Description EditWikiPage()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ViewWikiPagecancel()Press the cancel button and disacrd page Edit.static EditWikiPageopen(java.lang.String pageName)Open a given page for edition.ViewWikiPagesaveText(java.lang.String text)Edits the page with the given text.ViewWikiPagesaveText(java.lang.String text, java.lang.String preview)Edits the page with the given text.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.wiki.pages.haddock.HaddockPage
wikiPageContent, wikiTitle
-
-
-
-
Constructor Detail
-
EditWikiPage
public EditWikiPage()
-
-
Method Detail
-
open
public static EditWikiPage open(java.lang.String pageName)
Open a given page for edition.- Parameters:
pageName- Wiki page name to Edit.- Returns:
EditWikiPageinstance, to allow chaining of actions.
-
cancel
public ViewWikiPage cancel()
Press the cancel button and disacrd page Edit.- Returns:
ViewWikiPageinstance, to allow chaining of actions.
-
saveText
public ViewWikiPage saveText(java.lang.String text)
Edits the page with the given text. Ensures edition is complete by ensuring the preview pane shows the edited text.- Parameters:
text- text to edit.- Returns:
ViewWikiPageinstance, to allow chaining of actions.
-
saveText
public ViewWikiPage saveText(java.lang.String text, java.lang.String preview)
Edits the page with the given text. Ensures edition is complete by ensuring the preview pane shows the preview text.- Parameters:
text- text text to edit.preview- expected text to hsow up on the preview pane (i.e., page directives on edit pane shouldn't show up here).- Returns:
ViewWikiPageinstance, to allow chaining of actions.
-
-