Creates AnnotationsLayerBuilder.

This commit is contained in:
Yury Delendik 2014-09-29 11:05:28 -05:00
parent fe4ac86781
commit 9f384bbb41
5 changed files with 208 additions and 115 deletions

View file

@ -97,3 +97,16 @@ IPDFTextLayerFactory.prototype = {
*/
createTextLayerBuilder: function (textLayerDiv, pageIndex, viewport) {}
};
/**
* @interface
*/
function IPDFAnnotationsLayerFactory() {}
IPDFAnnotationsLayerFactory.prototype = {
/**
* @param {HTMLDivElement} pageDiv
* @param {PDFPage} pdfPage
* @returns {AnnotationsLayerBuilder}
*/
createAnnotationsLayerBuilder: function (pageDiv, pdfPage) {}
};