/**@class android.printservice.PrintDocument
@extends java.lang.Object

 This class represents a printed document from the perspective of a print
 service. It exposes APIs to query the document and obtain its data.
 <p>
 <strong>Note: </strong> All methods of this class must be executed on the
 main application thread.
 </p>
*/
var PrintDocument = {

/**Gets the {@link android.printservice.PrintDocumentInfo} that describes this document.
@return {Object {android.print.PrintDocumentInfo}} The document info.
*/
getInfo : function(  ) {},

/**Gets the data associated with this document.
 <p>
 <strong>Note: </strong> It is a responsibility of the client to open a
 stream to the returned file descriptor, fully read the data, and close
 the file descriptor.
 </p>
@return {Object {android.os.ParcelFileDescriptor}} A file descriptor for reading the data.
*/
getData : function(  ) {},


};