/**@class android.graphics.pdf.PdfDocument
@extends java.lang.Object

 <p>
 This class enables generating a PDF document from native Android content. You
 create a new document and then for every page you want to add you start a page,
 write content to the page, and finish the page. After you are done with all
 pages, you write the document to an output stream and close the document.
 After a document is closed you should not use it anymore. Note that pages are
 created one by one, i.e. you can have only a single page to which you are
 writing at any given time. This class is not thread safe.
 </p>
 <p>
 A typical use of the APIs looks like this:
 </p>
 <pre>
 // create a new document
 PdfDocument document = new PdfDocument();

 // crate a page description
 PageInfo pageInfo = new PageInfo.Builder(new Rect(0, 0, 100, 100), 1).create();

 // start a page
 Page page = document.startPage(pageInfo);

 // draw something on the page
 View content = getContentView();
 content.draw(page.getCanvas());

 // finish the page
 document.finishPage(page);
 . . .
 // add more pages
 . . .
 // write the document content
 document.writeTo(getOutputStream());

 // close the document
 document.close();
 </pre>
*/
var PdfDocument = {

/**Starts a page using the provided {@link android.graphics.pdf.PdfDocument.PageInfo}. After the page
 is created you can draw arbitrary content on the page's canvas which
 you can get by calling {@link android.graphics.pdf.PdfDocument.Page#getCanvas()}. After you are done
 drawing the content you should finish the page by calling
 {@link #finishPage}(Page). After the page is finished you should
 no longer access the page or its canvas.
 <p>
 <strong>Note:</strong> Do not call this method after {@link #close}().
 Also do not call this method if the last page returned by this method
 is not finished by calling {@link #finishPage}(Page).
 </p>
@param {Object {PdfDocument.PageInfo}} pageInfo The page info. Cannot be null.
@return {Object {android.graphics.pdf.PdfDocument.Page}} A blank page.
@see #finishPage(Page)
*/
startPage : function(  ) {},

/**Finishes a started page. You should always finish the last started page.
 <p>
 <strong>Note:</strong> Do not call this method after {@link #close}().
 You should not finish the same page more than once.
 </p>
@param {Object {PdfDocument.Page}} page The page. Cannot be null.
@see #startPage(PageInfo)
*/
finishPage : function(  ) {},

/**Writes the document to an output stream. You can call this method
 multiple times.
 <p>
 <strong>Note:</strong> Do not call this method after {@link #close}().
 Also do not call this method if a page returned by {@link #startPage(
 android.graphics.pdf.PdfDocument.PageInfo)} is not finished by calling {@link #finishPage}(Page).
 </p>
@param {Object {OutputStream}} out The output stream. Cannot be null.
@throws IOException If an error occurs while writing.
*/
writeTo : function(  ) {},

/**Gets the pages of the document.
@return {Object {java.util.List}} The pages or an empty list.
*/
getPages : function(  ) {},

/**Closes this document. This method should be called after you
 are done working with the document. After this call the document
 is considered closed and none of its methods should be called.
 <p>
 <strong>Note:</strong> Do not call this method if the page
 returned by {@link #startPage}(PageInfo) is not finished by
 calling {@link #finishPage}(Page).
 </p>
*/
close : function(  ) {},


};