C# Class XWiki.Model.Space

Show file Open project: xwiki-contrib/xwiki-office Class Usage Examples

Public Properties

Property Type Description
documents List

Public Methods

Method Description
AddDocuments ( IEnumerable _documents ) : void

Adds a collection of XWiki documents to the space instance.

AddDocuments ( IEnumerable _documents ) : void

Adds a collection of XWiki documents to the space instance.

GetUnpublishedDocuments ( ) : List

Gets the unpublished XWiki documents in the Space instance.

Space ( ) : System

Default constructor. Creates a new instance of the Space class.

this ( String pageName ) : XWikiDocument

Space indexer. Gets a XWiki document based on its name.

Method Details

AddDocuments() public method

Adds a collection of XWiki documents to the space instance.
public AddDocuments ( IEnumerable _documents ) : void
_documents IEnumerable A collection containing XWiki documents names.
return void

AddDocuments() public method

Adds a collection of XWiki documents to the space instance.
public AddDocuments ( IEnumerable _documents ) : void
_documents IEnumerable A collection containing XWiki documents.
return void

GetUnpublishedDocuments() public method

Gets the unpublished XWiki documents in the Space instance.
public GetUnpublishedDocuments ( ) : List
return List

Space() public method

Default constructor. Creates a new instance of the Space class.
public Space ( ) : System
return System

this() public method

Space indexer. Gets a XWiki document based on its name.
public this ( String pageName ) : XWikiDocument
pageName String The name of the XWiki document.
return XWikiDocument

Property Details

documents public property

The list of documents in the space.
public List documents
return List