From aacd5263a5e0a812555bf6c948b1041845406c29 Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Wed, 15 Sep 2021 16:04:22 +0100 Subject: [PATCH 01/59] add pdf watermark options --- .../cloudofficeprint/Output/PDFOptions.java | 121 ++++++++++++++++-- 1 file changed, 108 insertions(+), 13 deletions(-) diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java index b002f04b..508ee40c 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java @@ -9,6 +9,10 @@ public class PDFOptions { private String readPassword; private String watermark; + private String watermarkColor; + private String watermarkFont; + private Integer watermarkOpacity; + private Integer watermarkSize; private String pageWidth; private String pageHeight; private Boolean evenPage; @@ -25,6 +29,13 @@ public class PDFOptions { private Boolean identifyFormFields; private Boolean split; + /** + * Constructor for the PDFOptions object. Set the options with the setters. + * Uninitialized options won't be included in the JSON. + */ + public PDFOptions() { + } + /** * @return password to read the output. */ @@ -53,6 +64,85 @@ public void setWatermark(String watermark) { this.watermark = watermark; } + /** + * Set a diagonal custom watermark on every page in the PDF file with a specific + * text, color, font, opacity and size. Setting all to null will remove the + * watermark. + * + * @param text specifies the text of the watermark. + * @param color specifies the color of the watermark, with a default of + * "black". + * @param font specifies the font of the watermark, with a default of + * "Arial". + * @param opacity specifies the opacity of the watermark, should be as a + * percentage, i.e. 45. + * @param size specifies the size of the watermark, should be as a number in + * px, i.e. 45. + */ + public void setWatermark(String text, String color, String font, Integer opacity, Integer size) { + this.watermark = text; + this.watermarkColor = color; + this.watermarkFont = font; + this.watermarkOpacity = opacity; + this.watermarkSize = size; + } + + /** + * @return color of the watermark, defaults to "black". + */ + public String getWatermarkColor() { + return watermarkColor; + } + + /** + * @param watermarkColor color of the watermark, defaults to "black". + */ + public void setWatermarkColor(String watermarkColor) { + this.watermarkColor = watermarkColor; + } + + /** + * @return font of the watermark, defaults to "Arial". + */ + public String getWatermarkFont() { + return watermarkFont; + } + + /** + * @param watermarkFont font of the watermark, defaults to "Arial". + */ + public void setWatermarkFont(String watermarkFont) { + this.watermarkFont = watermarkFont; + } + + /** + * @return opacity of the watermark, as a percentage, i.e. 45. + */ + public Integer getWatermarkOpacity() { + return watermarkOpacity; + } + + /** + * @param watermarkOpacity opacity of the watermark, as a percentage, i.e. 45. + */ + public void setWatermarkOpacity(Integer watermarkOpacity) { + this.watermarkOpacity = watermarkOpacity; + } + + /** + * @return size of the watermark, as a number in px, i.e. 45. + */ + public Integer getWatermarkSize() { + return watermarkSize; + } + + /** + * @param watermarkSize size of the watermark, as a number in px, i.e. 45. + */ + public void setWatermarkSize(Integer watermarkSize) { + this.watermarkSize = watermarkSize; + } + /** * Only supported when converting HTML to PDF. * @@ -335,13 +425,6 @@ public void setSplit(Boolean split) { this.split = split; } - /** - * Constructor for the PDFOptions object. Set the options with the setters. - * Uninitialized options won't be included in the JSON. - */ - public PDFOptions() { - } - /** * @return JSON-representation of this object */ @@ -353,6 +436,18 @@ public JsonObject getJSON() { if (getWatermark() != null) { json.addProperty("output_watermark", getWatermark()); } + if (getWatermarkColor() != null) { + json.addProperty("output_watermark_color", getWatermarkColor()); + } + if (getWatermarkFont() != null) { + json.addProperty("output_watermark_font", getWatermarkFont()); + } + if (getWatermarkOpacity() != null) { + json.addProperty("output_watermark_opacity", getWatermarkOpacity()); + } + if (getWatermarkSize() != null) { + json.addProperty("output_watermark_size", getWatermarkSize()); + } if (getPageWidth() != null) { json.addProperty("output_page_width", getPageWidth()); } @@ -393,9 +488,9 @@ public JsonObject getJSON() { marginDict.addProperty("right", getPageMargin()[3]); } } - json.add("page_margin", marginDict); // For Cloud Office Print versions later than 21.1.1, - // output_page_margin will also be - // supported as tag name to be consistent with the other namings. + // For Cloud Office Print versions later than 21.1.1, output_page_margin will + // also be supported as tag name to be consistent with the other namings. + json.add("page_margin", marginDict); } if (getPageFormat() != null) { json.addProperty("output_page_format", getPageFormat()); @@ -404,9 +499,9 @@ public JsonObject getJSON() { json.addProperty("output_merge", getMerge()); } if (getLandscape() != null && getLandscape() == true) { - json.addProperty("page_orientation", "landscape"); // For Cloud Office Print versions later than 21.1.1, - // output_page_orientation will also be supported as tag - // name to be consistent with the other namings. + // For Cloud Office Print versions later than 21.1.1, output_page_orientation + // will also be supported as tag name to be consistent with the other namings. + json.addProperty("page_orientation", "landscape"); } if (getSignCertificate() != null) { json.addProperty("output_sign_certificate", getSignCertificate()); From 009490e5cd9e29bef29e6dee5227f214f4938722 Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Wed, 15 Sep 2021 22:28:33 +0100 Subject: [PATCH 02/59] refactor + add orientation setters and getters --- .../cloudofficeprint/Output/PDFOptions.java | 304 ++++++++++-------- 1 file changed, 161 insertions(+), 143 deletions(-) diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java index 508ee40c..5509b39c 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java @@ -7,27 +7,27 @@ */ public class PDFOptions { + private Boolean evenPage; + private Boolean mergeMakingEven; + private String modifyPassword; private String readPassword; + private Integer passwordProtectionFlag; private String watermark; private String watermarkColor; private String watermarkFont; private Integer watermarkOpacity; private Integer watermarkSize; - private String pageWidth; - private String pageHeight; - private Boolean evenPage; - private Boolean mergeMakingEven; - private String modifyPassword; - private Integer passwordProtectionFlag; private Boolean lockForm; private Integer copies; private int[] pageMargin; private Boolean landscape; + private String pageWidth; + private String pageHeight; private String pageFormat; private Boolean merge; - private String signCertificate; - private Boolean identifyFormFields; private Boolean split; + private Boolean identifyFormFields; + private String signCertificate; /** * Constructor for the PDFOptions object. Set the options with the setters. @@ -36,6 +36,54 @@ public class PDFOptions { public PDFOptions() { } + /** + * @return true if output will have even pages (blank page added if uneven + * amount of pages). + */ + public Boolean getEvenPage() { + return evenPage; + } + + /** + * @param evenPage Whether output has even pages (blank page added if uneven + * amount of pages). + */ + public void setEvenPage(Boolean evenPage) { + this.evenPage = evenPage; + } + + /** + * @return If Cloud Office Print is going to merge all the append/prepend and + * template files, making sure the output is even-paged (adding a blank + * page if the output is uneven-paged). + */ + public Boolean getMergeMakingEven() { + return mergeMakingEven; + } + + /** + * @param mergeMakingEven Whether you want to merge all the append/prepend and + * template files, making sure the output is even-paged + * (adding a blank page if the output is uneven-paged). + */ + public void setMergeMakingEven(Boolean mergeMakingEven) { + this.mergeMakingEven = mergeMakingEven; + } + + /** + * @return The password needed to modify the PDF. + */ + public String getModifyPassword() { + return modifyPassword; + } + + /** + * @param modifyPassword Password needed to modify the PDF. + */ + public void setModifyPassword(String modifyPassword) { + this.modifyPassword = modifyPassword; + } + /** * @return password to read the output. */ @@ -50,6 +98,29 @@ public void setReadPassword(String readPassword) { this.readPassword = readPassword; } + /** + * More info on the flag bits on + * https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption. + * + * @return protection flag for the PDF (in addition to the user password). (int + * representation of the 12 flag bits) + */ + public Integer getPasswordProtectionFlag() { + return passwordProtectionFlag; + } + + /** + * More info on the flag bits on + * https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption. + * + * @param passwordProtectionFlag protection flag for the PDF (in addition to the + * user password). (int representation of the 12 + * flag bits) + */ + public void setPasswordProtectionFlag(Integer passwordProtectionFlag) { + this.passwordProtectionFlag = passwordProtectionFlag; + } + /** * @return diagonal custom watermark on every page in the output file. */ @@ -143,117 +214,6 @@ public void setWatermarkSize(Integer watermarkSize) { this.watermarkSize = watermarkSize; } - /** - * Only supported when converting HTML to PDF. - * - * @return pageWidth width followed by unit : px, mm, cm, in (e.g. : 20 px). No - * unit means px. - */ - public String getPageWidth() { - return pageWidth; - } - - /** - * Only supported when converting HTML to PDF. - * - * @param pageWidth width followed by unit : px, mm, cm, in (e.g. : 20 px). No - * unit means px. - */ - public void setPageWidth(String pageWidth) { - this.pageWidth = pageWidth; - } - - /** - * Only supported when converting HTML to PDF. - * - * @return pageHeight height followed by unit : px, mm, cm, in (e.g. : 20 px). - * No unit means px. - */ - public String getPageHeight() { - return pageHeight; - } - - /** - * Only supported when converting HTML to PDF. - * - * @param pageHeight eight followed by unit : px, mm, cm, in (e.g. : 20 px). No - * unit means px. - */ - public void setPageHeight(String pageHeight) { - this.pageHeight = pageHeight; - } - - /** - * @return true if output will have even pages (blank page added if uneven - * amount of pages). - */ - public Boolean getEvenPage() { - return evenPage; - } - - /** - * @param evenPage Whether output has even pages (blank page added if uneven - * amount of pages). - */ - public void setEvenPage(Boolean evenPage) { - this.evenPage = evenPage; - } - - /** - * @return If Cloud Office Print is going to merge all the append/prepend and - * template files, making sure the output is even-paged (adding a blank - * page if the output is uneven-paged). - */ - public Boolean getMergeMakingEven() { - return mergeMakingEven; - } - - /** - * @param mergeMakingEven Whether you want to merge all the append/prepend and - * template files, making sure the output is even-paged - * (adding a blank page if the output is uneven-paged). - */ - public void setMergeMakingEven(Boolean mergeMakingEven) { - this.mergeMakingEven = mergeMakingEven; - } - - /** - * @return The password needed to modify the PDF. - */ - public String getModifyPassword() { - return modifyPassword; - } - - /** - * @param modifyPassword Password needed to modify the PDF. - */ - public void setModifyPassword(String modifyPassword) { - this.modifyPassword = modifyPassword; - } - - /** - * More info on the flag bits on - * https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption. - * - * @return protection flag for the PDF (in addition to the user password). (int - * representation of the 12 flag bits) - */ - public Integer getPasswordProtectionFlag() { - return passwordProtectionFlag; - } - - /** - * More info on the flag bits on - * https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption. - * - * @param passwordProtectionFlag protection flag for the PDF (in addition to the - * user password). (int representation of the 12 - * flag bits) - */ - public void setPasswordProtectionFlag(Integer passwordProtectionFlag) { - this.passwordProtectionFlag = passwordProtectionFlag; - } - /** * @return If the output PDF will be locked/flattened. */ @@ -334,6 +294,64 @@ public void setLandscape(Boolean landscape) { this.landscape = landscape; } + /** + * The page orientation, portrait or landscape. + * + * @return The page orientation, portrait or landscape. + */ + public String getPageOrientation() { + return landscape ? "landscape" : "portrait"; + } + + /** + * The page orientation, portrait or landscape, + * + * @param orientation The page orientation, portrait or landscape. + */ + public void setPageOrientation(String orientation) { + this.landscape = orientation == "landscape"; + } + + /** + * Only supported when converting HTML to PDF. + * + * @return pageWidth width followed by unit : px, mm, cm, in (e.g. : 20 px). No + * unit means px. + */ + public String getPageWidth() { + return pageWidth; + } + + /** + * Only supported when converting HTML to PDF. + * + * @param pageWidth width followed by unit : px, mm, cm, in (e.g. : 20 px). No + * unit means px. + */ + public void setPageWidth(String pageWidth) { + this.pageWidth = pageWidth; + } + + /** + * Only supported when converting HTML to PDF. + * + * @return pageHeight height followed by unit : px, mm, cm, in (e.g. : 20 px). + * No unit means px. + */ + public String getPageHeight() { + return pageHeight; + } + + /** + * Only supported when converting HTML to PDF. + * + * @param pageHeight eight followed by unit : px, mm, cm, in (e.g. : 20 px). No + * unit means px. + */ + public void setPageHeight(String pageHeight) { + this.pageHeight = pageHeight; + } + /** * Only supported when converting HTML to PDF. * @@ -370,27 +388,19 @@ public void setMerge(Boolean merge) { } /** - * It is possible to sign the output PDF if the output pdf has a signature - * field. - * - * @return The certificate (pkcs #12 .p12/.pfx) in a base64 encoded format (this - * can also be a URL, FTP location or a location in the file system of - * the server). + * @return whether or not the output PDF should be split into one file per page + * in a zip file */ - public String getSignCertificate() { - return signCertificate; + public Boolean getSplit() { + return split; } /** - * It is possible to sign the output PDF if the output pdf has a signature - * field. - * - * @param signCertificate The certificate (pkcs #12 .p12/.pfx) in a base64 - * encoded format (this can also be a URL, FTP location - * or a location in the file system of the server). + * @param split whether or not the output PDF should be split into one file per + * page in a zip file */ - public void setSignCertificate(String signCertificate) { - this.signCertificate = signCertificate; + public void setSplit(Boolean split) { + this.split = split; } /** @@ -410,19 +420,27 @@ public void setIdentifyFormFields(Boolean identifyFormFields) { } /** - * @return whether or not the output PDF should be split into one file per page - * in a zip file + * It is possible to sign the output PDF if the output pdf has a signature + * field. + * + * @return The certificate (pkcs #12 .p12/.pfx) in a base64 encoded format (this + * can also be a URL, FTP location or a location in the file system of + * the server). */ - public Boolean getSplit() { - return split; + public String getSignCertificate() { + return signCertificate; } /** - * @param split whether or not the output PDF should be split into one file per - * page in a zip file + * It is possible to sign the output PDF if the output pdf has a signature + * field. + * + * @param signCertificate The certificate (pkcs #12 .p12/.pfx) in a base64 + * encoded format (this can also be a URL, FTP location + * or a location in the file system of the server). */ - public void setSplit(Boolean split) { - this.split = split; + public void setSignCertificate(String signCertificate) { + this.signCertificate = signCertificate; } /** From 1651e1b890756254c9f43c857cd74c6fff92a2c8 Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Sat, 18 Sep 2021 04:03:57 +0100 Subject: [PATCH 03/59] add Freeze tag --- .../RenderElements/Freeze.java | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java new file mode 100644 index 00000000..03f2e43f --- /dev/null +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java @@ -0,0 +1,53 @@ +package com.cloudofficeprint.RenderElements; + +import com.google.common.collect.ImmutableSet; +import com.google.gson.JsonObject; + +import java.util.HashSet; +import java.util.Set; + +/** + * Only supported in Excel. Represents an object that indicates to put a freeze + * pane in the excel template. + */ +public class Freeze extends RenderElement { + + /** + * Represents an object that indicates to put a freeze pane in the excel + * template. + * + * @param name Name of this property. + * @param value Three options are available. First option, place the pane where + * the tag is located, using a value of **true**. Second option, + * provide the location to place the pane, e.g. **"C5"**, in the + * format of excel cell and row. Third option, dont place a pane, + * using a value of **false**. + */ + public Freeze(String name, String value) { + setName(name); + setValue(String.valueOf(value)); + } + + /** + * @return JSONObject with the tags for this element for the Cloud Office Print + * server. + */ + @Override + public JsonObject getJSON() { + JsonObject json = new JsonObject(); + json.addProperty(getName(), getValue()); + return json; + } + + /** + * @return An immutable set containing all available template tags this element + * can replace. + */ + @Override + public Set getTemplateTags() { + Set hash_Set = new HashSet(); + hash_Set.add("{freeze " + getName() + "}"); + return ImmutableSet.copyOf(hash_Set); + } + +} From 7dafee766cfe184c59beb38df631cbb81c15f9fc Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Tue, 21 Sep 2021 13:18:45 +0100 Subject: [PATCH 04/59] add verify hash and ipp check endpoints --- .../com/cloudofficeprint/Server/Server.java | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java index e35ac72c..ad52c25a 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java @@ -318,6 +318,16 @@ public String getPrependMimeTypesSupported() { return sendGETRequest(this.url + "/supported_prepend_mimetypes"); } + /** + * Sends a GET request to server-url/verify_template_hash?hash=hashcode + * + * @param hashcode md5 hash of file. + * @return whether the hash is valid and present in cache. + */ + public String verifyTemplateHash(String hashcode) { + return sendGETRequest(this.url + "/verify_template_hash?hash=" + hashcode); + } + /** * Sends a GET request to server-url/version. * @@ -327,6 +337,17 @@ public String getCOPVersionOnServer() { return sendGETRequest(this.url + "/version"); } + /** + * Sends a GET request to server-url/ipp_check?ipp_url=ippURL&version=version. + * + * @param ippURL the URL of the IPP printer. + * @param version the version of the IPP printer. + * @return the status of the IPP printer. + */ + public String checkIPP(String ippURL, String version) { + return sendGETRequest(this.url + "/ipp_check?ipp_url=" + ippURL + "&version=" + version); + } + /** * Sends a GET request to the url. * From 7970373515b8e6794d65004acd4cfb78a5e3545a Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Tue, 21 Sep 2021 16:32:15 +0100 Subject: [PATCH 05/59] add pdf signing --- .../cloudofficeprint/Output/PDFOptions.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java index 5509b39c..08d4b0d2 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java @@ -2,6 +2,10 @@ import com.google.gson.JsonObject; +import java.io.*; +import java.nio.file.Files; +import java.util.Base64; + /** * Class for all the optional PDF output options. Only for */ @@ -28,6 +32,7 @@ public class PDFOptions { private Boolean split; private Boolean identifyFormFields; private String signCertificate; + private String signCertificatePassword; /** * Constructor for the PDFOptions object. Set the options with the setters. @@ -443,6 +448,33 @@ public void setSignCertificate(String signCertificate) { this.signCertificate = signCertificate; } + /** + * @return The password of the certificate file as a plain string. + */ + public String getSignCertificatePassword() { + return signCertificatePassword; + } + + /** + * @param signCertificatePassword The password of the certificate file as a + * plain string. + */ + public void setSignCertificatePassword(String signCertificatePassword) { + this.signCertificatePassword = signCertificatePassword; + } + + public void sign(String localCertificatePath) throws IOException { + File file = new File(localCertificatePath); + byte[] bytes = Files.readAllBytes(file.toPath()); + String encodedString = Base64.getEncoder().encodeToString(bytes); + this.signCertificate = encodedString; + } + + public void sign(String localCertificatePath, String password) throws IOException { + sign(localCertificatePath); + this.signCertificatePassword = password; + } + /** * @return JSON-representation of this object */ @@ -524,6 +556,9 @@ public JsonObject getJSON() { if (getSignCertificate() != null) { json.addProperty("output_sign_certificate", getSignCertificate()); } + if (getSignCertificatePassword() != null) { + json.addProperty("output_sign_certificate_password", getSignCertificatePassword()); + } if (getIdentifyFormFields() != null) { json.addProperty("identify_form_fields", getIdentifyFormFields()); } From 3a405506a4075af164bbc242063c77baf9aa498b Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Tue, 21 Sep 2021 16:35:03 +0100 Subject: [PATCH 06/59] add javadoc --- .../com/cloudofficeprint/Output/PDFOptions.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java index 08d4b0d2..3eb3c0d3 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java @@ -463,6 +463,12 @@ public void setSignCertificatePassword(String signCertificatePassword) { this.signCertificatePassword = signCertificatePassword; } + /** + * Sign the output PDF with a local certificate file. + * + * @param localCertificatePath path to the local certificate file. + * @throws IOException + */ public void sign(String localCertificatePath) throws IOException { File file = new File(localCertificatePath); byte[] bytes = Files.readAllBytes(file.toPath()); @@ -470,6 +476,13 @@ public void sign(String localCertificatePath) throws IOException { this.signCertificate = encodedString; } + /** + * Sign the output PDF with a local certificate file. + * + * @param localCertificatePath path to the local certificate file. + * @param password password of the certificate. + * @throws IOException + */ public void sign(String localCertificatePath, String password) throws IOException { sign(localCertificatePath); this.signCertificatePassword = password; From f7e4285f82f708ccd55283a35a62d1a108178f80 Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Tue, 21 Sep 2021 20:36:10 +0100 Subject: [PATCH 07/59] add remove last page to pdf options --- .../cloudofficeprint/Output/PDFOptions.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java index 3eb3c0d3..c77e3480 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java @@ -13,6 +13,7 @@ public class PDFOptions { private Boolean evenPage; private Boolean mergeMakingEven; + private Boolean removeLastPage; private String modifyPassword; private String readPassword; private Integer passwordProtectionFlag; @@ -75,6 +76,20 @@ public void setMergeMakingEven(Boolean mergeMakingEven) { this.mergeMakingEven = mergeMakingEven; } + /** + * @return Remove the last page from the given PDF document. + */ + public Boolean getRemoveLastPage() { + return removeLastPage; + } + + /** + * @param removeLastPage Remove the last page from the given PDF document + */ + public void setRemoveLastPage(Boolean removeLastPage) { + this.removeLastPage = removeLastPage; + } + /** * @return The password needed to modify the PDF. */ @@ -578,6 +593,9 @@ public JsonObject getJSON() { if (getSplit() != null) { json.addProperty("output_split", getSplit()); } + if (getRemoveLastPage() != null) { + json.addProperty("output_remove_last_page", getRemoveLastPage()); + } return json; } } From b2ab41f676b38d29189cd609d2a58310d3676d29 Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Tue, 21 Sep 2021 20:39:06 +0100 Subject: [PATCH 08/59] reorder pdf options getJSON --- .../cloudofficeprint/Output/PDFOptions.java | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java index c77e3480..98fb29a7 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java @@ -508,9 +508,24 @@ public void sign(String localCertificatePath, String password) throws IOExceptio */ public JsonObject getJSON() { JsonObject json = new JsonObject(); + if (getEvenPage() != null) { + json.addProperty("output_even_page", getEvenPage()); + } + if (getMergeMakingEven() != null) { + json.addProperty("output_merge_making_even", getMergeMakingEven()); + } + if (getRemoveLastPage() != null) { + json.addProperty("output_remove_last_page", getRemoveLastPage()); + } + if (getModifyPassword() != null) { + json.addProperty("output_modify_password", getModifyPassword()); + } if (getReadPassword() != null) { json.addProperty("output_read_password", getReadPassword()); } + if (getPasswordProtectionFlag() != null) { + json.addProperty("output_password_protection_flag", getPasswordProtectionFlag()); + } if (getWatermark() != null) { json.addProperty("output_watermark", getWatermark()); } @@ -526,24 +541,6 @@ public JsonObject getJSON() { if (getWatermarkSize() != null) { json.addProperty("output_watermark_size", getWatermarkSize()); } - if (getPageWidth() != null) { - json.addProperty("output_page_width", getPageWidth()); - } - if (getPageHeight() != null) { - json.addProperty("output_page_height", getPageHeight()); - } - if (getEvenPage() != null) { - json.addProperty("output_even_page", getEvenPage()); - } - if (getMergeMakingEven() != null) { - json.addProperty("output_merge_making_even", getMergeMakingEven()); - } - if (getModifyPassword() != null) { - json.addProperty("output_modify_password", getModifyPassword()); - } - if (getPasswordProtectionFlag() != null) { - json.addProperty("output_password_protection_flag", getPasswordProtectionFlag()); - } if (getLockForm() != null) { json.addProperty("lock_form", getLockForm()); } @@ -570,16 +567,28 @@ public JsonObject getJSON() { // also be supported as tag name to be consistent with the other namings. json.add("page_margin", marginDict); } + if (getLandscape() != null && getLandscape() == true) { + // For Cloud Office Print versions later than 21.1.1, output_page_orientation + // will also be supported as tag name to be consistent with the other namings. + json.addProperty("page_orientation", "landscape"); + } + if (getPageWidth() != null) { + json.addProperty("output_page_width", getPageWidth()); + } + if (getPageHeight() != null) { + json.addProperty("output_page_height", getPageHeight()); + } if (getPageFormat() != null) { json.addProperty("output_page_format", getPageFormat()); } if (getMerge() != null) { json.addProperty("output_merge", getMerge()); } - if (getLandscape() != null && getLandscape() == true) { - // For Cloud Office Print versions later than 21.1.1, output_page_orientation - // will also be supported as tag name to be consistent with the other namings. - json.addProperty("page_orientation", "landscape"); + if (getSplit() != null) { + json.addProperty("output_split", getSplit()); + } + if (getIdentifyFormFields() != null) { + json.addProperty("identify_form_fields", getIdentifyFormFields()); } if (getSignCertificate() != null) { json.addProperty("output_sign_certificate", getSignCertificate()); @@ -587,15 +596,6 @@ public JsonObject getJSON() { if (getSignCertificatePassword() != null) { json.addProperty("output_sign_certificate_password", getSignCertificatePassword()); } - if (getIdentifyFormFields() != null) { - json.addProperty("identify_form_fields", getIdentifyFormFields()); - } - if (getSplit() != null) { - json.addProperty("output_split", getSplit()); - } - if (getRemoveLastPage() != null) { - json.addProperty("output_remove_last_page", getRemoveLastPage()); - } return json; } } From 5ab8d04bf5d1076beae8f638e6a6c3c13bce641f Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Thu, 23 Sep 2021 01:44:01 +0100 Subject: [PATCH 09/59] add link & target element class --- .../cloudofficeprint/RenderElements/Link.java | 103 ++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Link.java diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Link.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Link.java new file mode 100644 index 00000000..61f30c5a --- /dev/null +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Link.java @@ -0,0 +1,103 @@ +package com.cloudofficeprint.RenderElements; + +import com.google.common.collect.ImmutableSet; +import com.google.gson.JsonObject; + +import java.util.HashSet; +import java.util.Set; + +/** + * The class for the link/target tags. This tags allows you to place a link to a + * target in the same document. If the uid is not provided, a new uid will be + * generated uniquely for every link and target pair. + */ +public class Link extends RenderElement { + + String uidName; + String uidValue; + + /** + * Create a new link/target tag pair. + * + * @param name the name of the link/target tags. + * @param value the value of the link/target tags. + */ + public Link(String name, String value) { + setName(name); + setValue(String.valueOf(value)); + } + + /** + * Create a new link/target tag pair. + * + * @param name the name of the link/target tags. + * @param value the value of the link/target tags. + * @param uidName the name of the uid of the link/target pair. + * @param uidValue the value of the uid of the link/target pair. + */ + public Link(String name, String value, String uidName, String uidValue) { + setName(name); + setValue(String.valueOf(value)); + setUidName(uidName); + setUidValue(uidValue); + } + + /** + * @return name of the link/target tags. + */ + public String getUidName() { + return uidName; + } + + /** + * @param uidName name of the link/target tags. + */ + public void setUidName(String uidName) { + this.uidName = uidName; + } + + /** + * @return the value of the uid of the link/target tags. + */ + public String getUidValue() { + return uidValue; + } + + /** + * @param uidValue the value of the uid of the link/target tags. + */ + public void setUidValue(String uidValue) { + this.uidValue = uidValue; + } + + /** + * @return JSONObject with the tags for this element for the Cloud Office Print + * server. + */ + @Override + public JsonObject getJSON() { + JsonObject json = new JsonObject(); + json.addProperty(getName(), getValue()); + if (this.uidName != null && this.uidValue != null) + json.addProperty(getUidName(), getUidValue()); + return json; + } + + /** + * @return An immutable set containing all available template tags this element + * can replace. + */ + @Override + public Set getTemplateTags() { + Set hash_Set = new HashSet(); + if (this.uidName != null && this.uidValue != null) { + hash_Set.add("{link " + getName() + ":" + getUidName() + "}"); + hash_Set.add("{target " + getName() + ":" + getUidName() + "}"); + } else { + hash_Set.add("{link " + getName() + "}"); + hash_Set.add("{target " + getName() + "}"); + } + return ImmutableSet.copyOf(hash_Set); + } + +} From 2fe767ac0b0323b94fe4a6b0494e88803863eaea Mon Sep 17 00:00:00 2001 From: Aakash Kc Date: Fri, 24 Sep 2021 17:43:35 +0100 Subject: [PATCH 10/59] add template class --- .../cloudofficeprint/Resources/Template.java | 209 ++++++++++++++++++ 1 file changed, 209 insertions(+) create mode 100644 cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/Template.java diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/Template.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/Template.java new file mode 100644 index 00000000..a400a9d5 --- /dev/null +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/Template.java @@ -0,0 +1,209 @@ +package com.cloudofficeprint.Resources; + +import com.google.gson.JsonObject; + +public class Template { + + private Resource resource; + private String startDelimiter; + private String endDelimiter; + private Boolean shouldHash; + private String templateHash; + + /** + * Create a new Template. + * + * @param resource the resource of this template. + */ + public Template(Resource resource) { + this(resource, null, null); + } + + /** + * Create a new Template. + * + * @param resource the resource of this template. + * @param startDelimiter the starting delimiter used in the template. + * @param endDelimiter the ending delimiter used in the template. + */ + public Template(Resource resource, String startDelimiter, String endDelimiter) { + this(resource, startDelimiter, endDelimiter, null, null); + } + + /** + * Create a new Template. + * + * @param resource the resource of this template. + * @param startDelimiter the starting delimiter used in the template. + * @param endDelimiter the ending delimiter used in the template. + * @param shouldHash whether the template should be hashed on the server. + * @param templateHash the hash of the template. + */ + public Template(Resource resource, String startDelimiter, String endDelimiter, Boolean shouldHash, + String templateHash) { + this.resource = resource; + this.startDelimiter = startDelimiter; + this.endDelimiter = endDelimiter; + this.shouldHash = shouldHash; + this.templateHash = templateHash; + } + + /** + * Get the Resource of the Template. + * + * @return the Resource of the Template. + */ + public Resource getResource() { + return this.resource; + } + + /** + * Set the Resource of the Template. + * + * @param resource the Resource of the Template. + */ + public void setResource(Resource resource) { + this.resource = resource; + } + + /** + * Get the starting delimiter of the Template. + * + * @return the starting delimiter used in the template. + */ + public String getStartDelimiter() { + return this.startDelimiter; + } + + /** + * Set the starting delimiter of the Template. + * + * @param startDelimiter the starting delimiter used in the template. + */ + public void setStartDelimiter(String startDelimiter) { + this.startDelimiter = startDelimiter; + } + + /** + * Get the ending delimiter of the Template. + * + * @return the ending delimiter used in the template. + */ + public String getEndDelimiter() { + return this.endDelimiter; + } + + /** + * Set the ending delimiter of the Template. + * + * @param endDelimiter the ending delimiter used in the template. + */ + public void setEndDelimiter(String endDelimiter) { + this.endDelimiter = endDelimiter; + } + + /** + * Set both starting and ending delimiters. + * + * @param startDelimiter the starting delimiter used in the template. + * @param endDelimiter the ending delimiter used in the template. + */ + public void setDelimiter(String startDelimiter, String endDelimiter) { + this.startDelimiter = startDelimiter; + this.endDelimiter = endDelimiter; + } + + /** + * Get the shouldHash value of the Template. + * + * @return whether the template should be hashed on the server. + */ + public Boolean getShouldHash() { + return this.shouldHash; + } + + /** + * Set the shouldHash value of the Template. + * + * @param shouldHash whether the template should be hashed on the server. + */ + public void setShouldHash(Boolean shouldHash) { + this.shouldHash = shouldHash; + } + + /** + * Get the hash of the template. + * + * @return the hash of the template. + */ + public String getTemplateHash() { + return this.templateHash; + } + + /** + * Set the hash of the template. + * + * @param templateHash the hash of the template. + */ + public void setTemplateHash(String templateHash) { + this.templateHash = templateHash; + } + + /** + * Update the Template to store a hash. On the next request to the server, the + * file data will not be sent, only the hash of the template. + * + * @param templateHash the hash of the template. + */ + public void updateHash(String templateHash) { + this.templateHash = templateHash; + this.shouldHash = false; + } + + /** + * Reset the stored hash of the template. + */ + public void resetHash() { + this.resetHash(true); + } + + /** + * Reset the stored hash of the template. + * + * @param shouldHash whether the template should be hashed on the server, + * defaults to true. + */ + public void resetHash(Boolean shouldHash) { + this.templateHash = null; + this.shouldHash = shouldHash; + } + + /** + * Get the JSON object for the Template. + * + * @return the JSON representation of the Template. + */ + public JsonObject getJSONForTemplate() { + if (this.templateHash != null && this.shouldHash) { + JsonObject jsonTemplate = new JsonObject(); + jsonTemplate.addProperty("template_type", this.resource.getFiletype()); + jsonTemplate.addProperty("template_hash", this.templateHash); + if (this.startDelimiter != null) + jsonTemplate.addProperty("start_delimiter", this.startDelimiter); + if (this.endDelimiter != null) + jsonTemplate.addProperty("end_delimiter", this.endDelimiter); + return jsonTemplate; + } + JsonObject jsonTemplate = resource.getJSONForTemplate(); + if (this.startDelimiter != null) + jsonTemplate.addProperty("start_delimiter", this.startDelimiter); + if (this.endDelimiter != null) + jsonTemplate.addProperty("end_delimiter", this.endDelimiter); + if (this.shouldHash != null) + jsonTemplate.addProperty("should_hash", this.shouldHash); + if (this.templateHash != null) + jsonTemplate.addProperty("template_hash", this.templateHash); + return jsonTemplate; + } + +} From 66490a5b256d2eea258803659d6578d959742a80 Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Fri, 10 Dec 2021 14:38:09 +0545 Subject: [PATCH 11/59] added new branch --- .../main/java/com/cloudofficeprint/RenderElements/Freeze.java | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java new file mode 100644 index 00000000..a5cef5c2 --- /dev/null +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java @@ -0,0 +1,2 @@ +package com.cloudofficeprint.RenderElements;public class Freeze { +} From 8877a5005773b31753744e0cc34fc2277b8129c7 Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Fri, 10 Dec 2021 15:38:53 +0545 Subject: [PATCH 12/59] added freeze element, remove last page, sign certificate with password, watermark size, opacity, color, font orientation, ippPrinter status check, ipp printer return output from server and test configuration for all those files --- .../cloudofficeprint/Output/PDFOptions.java | 161 ++++++++++++++++-- .../RenderElements/Freeze.java | 77 ++++++++- .../RenderElements/RawJsonArray.java | 8 + .../RenderElements/Watermark.java | 3 + .../com/cloudofficeprint/Server/Printer.java | 39 ++++- .../com/cloudofficeprint/Server/Server.java | 16 ++ .../OrderConfirmation/template1.xlsx | Bin 0 -> 5130 bytes .../java/cloudofficeprint/ConfigTests.java | 10 +- .../cloudofficeprint/RenderElementsTests.java | 12 +- 9 files changed, 302 insertions(+), 24 deletions(-) create mode 100644 cloudofficeprint/src/main/resources/OrderConfirmation/template1.xlsx diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java index b002f04b..7552d86d 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java @@ -9,6 +9,10 @@ public class PDFOptions { private String readPassword; private String watermark; + private Integer watermarkSize; + private Integer watermarkOpacity; + private String watermarkColor; + private String watermarkFont; private String pageWidth; private String pageHeight; private Boolean evenPage; @@ -22,8 +26,11 @@ public class PDFOptions { private String pageFormat; private Boolean merge; private String signCertificate; + private String signCertificateWithPassword; private Boolean identifyFormFields; private Boolean split; + private Boolean removeLastPage; + /** * @return password to read the output. @@ -40,6 +47,8 @@ public void setReadPassword(String readPassword) { } /** + * It is possible to set your own watermark. + * * @return diagonal custom watermark on every page in the output file. */ public String getWatermark() { @@ -47,12 +56,84 @@ public String getWatermark() { } /** + * It is possible to set your own watermark. + * * @param watermark diagonal custom watermark on every page in the output file. */ public void setWatermark(String watermark) { this.watermark = watermark; } + /** + * It is possible to set opacity of your watermark. + * + * @return opacity of watermark. + */ + public Integer getWatermarkOpacity(){ + return watermarkOpacity; + } + + /** + * + * It is possible to set opacity of your watermark. + * @param watermarkOpacity opacity of watermark in percentage. + */ + public void setWatermarkOpacity(Integer watermarkOpacity){ + this.watermarkOpacity = watermarkOpacity; + } + + /** + * It is possible to set size of your watermark. + * + * @return size of watermark. + */ + public Integer getWatermarkSize(){ + return watermarkSize; + } + + /** + * It is possible to set size of your watermark. + * + * @param watermarkSize size of watermark in percentage. + */ + public void setWatermarkSize(Integer watermarkSize){ + this.watermarkSize = watermarkSize; + } + + /** + * It is possible to assign color of your watermark. + * + * @return color of watermark. + */ + public String getWatermarkColor(){ + return watermarkColor; + } + + /** + * + * It is possible to assign color of your watermark. + * @param watermarkColor color of watermark. Default is black + */ + public void setWatermarkColor(String watermarkColor){ + this.watermarkColor = watermarkColor; + } + + /** + * It is possible to assign font to your watermark. + * @return font of watermark. + */ + public String getWatermarkFont(){ + return watermarkFont; + } + + /** + * It is possible to assign font to your watermark. + * + * @param watermarkFont font of watermark. + */ + public void setWatermarkFont(String watermarkFont){ + this.watermarkFont = watermarkFont; + } /** * Only supported when converting HTML to PDF. * @@ -217,7 +298,7 @@ public void setPageMargin(int[] pageMargins) throws Exception { /** * Only supported when converting HTML to PDF. - * + * * @param pageMargin Margin (same for all sides). */ public void setPageMargin(int pageMargin) { @@ -264,7 +345,9 @@ public void setPageFormat(String pageFormat) { } /** - * @return True if instead of returning back a zip file for multiple outputs, + * It is possible to set whether to return a zip file of multiple output. + * + * @return True if instead of returning a zip file for multiple outputs, * they will be merged in one output. */ public Boolean getMerge() { @@ -304,37 +387,75 @@ public void setSignCertificate(String signCertificate) { } /** - * @return If it is set to true Cloud Office Print tries to identify the form - * fields and fills them in. + * It is possible to sign certificate with password. + * + * @return password protected signature + */ + public String getSignCertificateWithPassword(){ + return signCertificateWithPassword; + } + + /** + * It is possible to sign certificate with password. + * + * @param signCertificateWithPassword value for the password of signature. + */ + public void setSignCertificateWithPassword(String signCertificateWithPassword){ + this.signCertificateWithPassword = signCertificateWithPassword; + } + /** + * If it is set to true Cloud Office Print tries to identify the for + * fields and fills them in. + * @return whether to get identityFormFields. */ public Boolean getIdentifyFormFields() { return identifyFormFields; } /** - * @param identifyFormFields If it is set to true Cloud Office Print tries to - * identify the form fields and fills them in. + * If it is set to true Cloud Office Print tries to identify the form fields and fills them in. + * + * @param identifyFormFields value for identify form fields. */ public void setIdentifyFormFields(Boolean identifyFormFields) { this.identifyFormFields = identifyFormFields; } /** - * @return whether or not the output PDF should be split into one file per page - * in a zip file + * the output PDF should be split into one file per page in a zip file. + * + * @return split whether to split or not. */ public Boolean getSplit() { return split; } /** - * @param split whether or not the output PDF should be split into one file per - * page in a zip file + * whether the output PDF should be split into one file per page in a zip file + * + * @param split whether to split or not. */ public void setSplit(Boolean split) { this.split = split; } + /** + * It is possible to remove last page from output. It is useful when the last page of output is blank. + * + * @return whether to remove last page or not + */ + public Boolean getRemoveLastPage(){ + return removeLastPage; + } + + /** + * It is possible to remove last page from output. It is useful when the last page of output is blank. + * + * @param removeLastPage whether to remove last page + */ + public void setRemoveLastPage(Boolean removeLastPage){ + this.removeLastPage = removeLastPage; + } /** * Constructor for the PDFOptions object. Set the options with the setters. * Uninitialized options won't be included in the JSON. @@ -353,6 +474,18 @@ public JsonObject getJSON() { if (getWatermark() != null) { json.addProperty("output_watermark", getWatermark()); } + if (getWatermarkColor() != null) { + json.addProperty("output_watermark_color",getWatermarkColor()); + } + if (getWatermarkSize() != null) { + json.addProperty("output_watermark_size",getWatermarkSize()); + } + if (getWatermarkFont() != null) { + json.addProperty("output_watermark_font",getWatermarkFont()); + } + if (getWatermarkOpacity() != null) { + json.addProperty("output_watermark_opacity",getWatermarkOpacity()); + } if (getPageWidth() != null) { json.addProperty("output_page_width", getPageWidth()); } @@ -403,7 +536,7 @@ public JsonObject getJSON() { if (getMerge() != null) { json.addProperty("output_merge", getMerge()); } - if (getLandscape() != null && getLandscape() == true) { + if (getLandscape() != null && getLandscape()) { json.addProperty("page_orientation", "landscape"); // For Cloud Office Print versions later than 21.1.1, // output_page_orientation will also be supported as tag // name to be consistent with the other namings. @@ -411,12 +544,18 @@ public JsonObject getJSON() { if (getSignCertificate() != null) { json.addProperty("output_sign_certificate", getSignCertificate()); } + if (getSignCertificateWithPassword() != null){ + json.addProperty("output_sign_certificate_password",getSignCertificateWithPassword()); + } if (getIdentifyFormFields() != null) { json.addProperty("identify_form_fields", getIdentifyFormFields()); } if (getSplit() != null) { json.addProperty("output_split", getSplit()); } + if (getRemoveLastPage()){ + json.addProperty("output_remove_last_page",getRemoveLastPage()); + } return json; } } diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java index a5cef5c2..1a663116 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Freeze.java @@ -1,2 +1,77 @@ -package com.cloudofficeprint.RenderElements;public class Freeze { +package com.cloudofficeprint.RenderElements; + +import com.google.common.collect.ImmutableSet; +import com.google.gson.JsonObject; + +import java.util.HashSet; +import java.util.Set; + + +/** + * This tag will allow you to utilize freeze pane property of the Excel.Three options are available. + * First option, we can directly place the pane where the tag located. For this option we should provide true parameter. + * Second option, we can provide the location where we want to place the pane such as "C5". + * Finally, the third option is false which doesn't place a pane. + */ +public class Freeze extends RenderElement{ + /** + * This tag will allow you to use freeze pane property of Excel. + * @param name {string} tag name of freeze element + * @param value {string} freezeValue . + */ + public Freeze(String name, String value){ + setName(name); + setValue(value); + }; + + /** + * This tag will allow you to use freeze pane property of Excel. + * @param name {string} tag name of freeze element + * @param value {boolean} freeze value. + */ + public Freeze(String name, boolean value){ + setName(name); + setBooleanValue(value); + }; + + private boolean freezeValue; + + /** + * + * @return freezeValue value for the freeze element tag. + */ + public boolean getBooleanValue(){ + return freezeValue; + } + + /** + * + * @param freezeValue value for the freeze element. + */ + public void setBooleanValue(boolean freezeValue){ + this.freezeValue = freezeValue; + } + /** + * @return JSONObject with the tags for this property for the Cloud Office Print + * server. + */ + @Override + public JsonObject getJSON() { + JsonObject json = new JsonObject(); + json.addProperty(getName(), getValue()); + if (getBooleanValue()){ + json.addProperty(getName(),getBooleanValue()); + } + return json; + } + /** + * @return An immutable set containing all available template tags this element + * can replace. + */ + @Override + public Set getTemplateTags() { + Set hash_Set = new HashSet(); + hash_Set.add("freeze " + getName() + "}"); + return ImmutableSet.copyOf(hash_Set); + } } diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/RawJsonArray.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/RawJsonArray.java index 6c5d33d5..3dd7024d 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/RawJsonArray.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/RawJsonArray.java @@ -12,10 +12,18 @@ public class RawJsonArray extends RenderElement { JsonArray jsonArray = new JsonArray(); + /** + * To get raw json array. + * @return json array + */ public JsonArray getJsonArray() { return jsonArray; } + /** + * to set Json array + * @param jsonArray Json Array + */ public void setJsonArray(JsonArray jsonArray) { this.jsonArray = jsonArray; } diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Watermark.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Watermark.java index 115968f4..6b87c4c5 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Watermark.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Watermark.java @@ -6,6 +6,9 @@ import java.util.HashSet; import java.util.Set; +/** + * It is possible to use your own Watermark with font, size, opacity, color, width, height and rotation. + */ public class Watermark extends RenderElement { private String font; diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Printer.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Printer.java index ea5e3d61..017a5708 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Printer.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Printer.java @@ -11,7 +11,7 @@ * binary pdftops is on PATH variable. You can download executables from * cloudofficeprint.com to check whether or not your IPP printer supports * PDF/postscript. - * + *

* This class represents an IP-enabled printer to use with the Cloud Office * Print server. */ @@ -21,6 +21,7 @@ public class Printer { private String version; private String requester; private String jobName; + private boolean returnOutput; /** * @return Address where the printer is available. @@ -78,6 +79,23 @@ public void setJobName(String jobName) { this.jobName = jobName; } + /** + * You can specify to whether to return output from server + * @return whether to return output from the AOP server + */ + public boolean getReturnOutput() { + return returnOutput; + } + + /** + * You can specify to whether to return output from server + * @param returnOutput whether to return output from the AOP server. + */ + public void setReturnOutput(boolean returnOutput) { + this.returnOutput = returnOutput; + } + + /** * Cloud Office Print supports to print directly to an IP Printer. If your IPP * printer supports PDF files, your documents will be converter to PDF and sent @@ -88,23 +106,25 @@ public void setJobName(String jobName) { * cloudofficeprint.com to check whether or not your IPP printer supports * PDF/postscript. This Pritner object represents an IP-enabled printer to use * with the Cloud Office Print server. - * - * @param location HTTP adress of the printer. - * @param version Version of the IPP protocol. - * @param requester Name of the requester for the printer (often just your - * name). - * @param jobName Name of the job for the printer. + * + * @param location HTTP adress of the printer. + * @param version Version of the IPP protocol. + * @param requester Name of the requester for the printer (often just your + * name). + * @param jobName Name of the job for the printer. + * @param returnOutput Whether to return the response from AOP server. */ - public Printer(String location, String version, String requester, String jobName) { + public Printer(String location, String version, String requester, String jobName, boolean returnOutput) { setLocation(location); setVersion(version); setRequester(requester); setJobName(jobName); + setReturnOutput(returnOutput); } /** * @return JSONObject with the tags for the printer for the Cloud Office Print - * server. + * server. */ public JsonObject getJSON() { JsonObject json = new JsonObject(); @@ -112,6 +132,7 @@ public JsonObject getJSON() { json.addProperty("version", getVersion()); json.addProperty("requester", getRequester()); json.addProperty("job_name", getJobName()); + json.addProperty("return_output", getReturnOutput()); return json; } } diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java index e35ac72c..178f29ad 100644 --- a/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java @@ -2,6 +2,7 @@ import com.cloudofficeprint.COPException; import com.cloudofficeprint.Response; +import com.google.gson.Gson; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.cloudofficeprint.Mimetype; @@ -269,6 +270,21 @@ public boolean isReachable() { return response.equals("polo"); } + /** + * Sends a Get request to check the status of ipp-printer provided with location and version of url + * + * @return whether the printer is reachable or not. + */ + public boolean isIppPrinterReachable() { + try { + String response = sendGETRequest(this.url + "ipp_check?ipp_url=" + this.printer.getLocation() + "&version=" + this.printer.getVersion()); + JsonObject json = new Gson().fromJson(response, JsonObject.class); + return (json.get("statusCode").toString()).contains("successful-ok"); + }catch(Exception e){ + return false; + } + + } /** * Sends a GET request to server-url/soffice. * diff --git a/cloudofficeprint/src/main/resources/OrderConfirmation/template1.xlsx b/cloudofficeprint/src/main/resources/OrderConfirmation/template1.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..6b5ebaaf8e963b6eff2ee3b3d7f45fd6ce78e4a8 GIT binary patch literal 5130 zcmaJ_bzGBe_a7i3(xWV3bV(=(NS6{KV}zurFksYROllI+(j`)&G)SjXA_$V3AV^4~ zAUzsMf15s^7hc}q>&V$d_&Pen`y;L7EeKqh9}%UkvDrPP*qMbw zMr)AIZD?us68x}OvINK~1S8D!-L4*4hRg;SErruLTN`8y`JAZ_&~mU7cT{J+7E4~i1pz|{0D%8B zOw_n1-0g+k;0U{iaJZe2yMuj%?g-+m2#pu^uKOm{J10JoL<({D*rajptd0u%lCn@i zk1Q^Q8;3i^(A1nhxlMwshPkETv2QcznuPId%mS66Mv@eXr2K<{;Qd4|lp5)^S)=c- zCm{kM!^DDhMhzxul~R_*tTLV@_TBs~R#W@eOJ2>o=3NBS^Ht?b#lp7VIZ&)N8vqP7 z<;nf>&0W$BgG)tz`KNb5zL)mymXQQr4k74>85+?LODIanj$R!S|Gt*9+ijQe!YS#R z&z8o1!P?a{)<`XlVNrpaN`(l6y-lutDk;bfCBSMCwcKU3RyK{Qk zjDs^3nH_ojsWaCsqaFL=xu4s|dhEp^XTVIGnm3LZDZMy%z$-$PBQD+5KQ4X$>b%ZZ zwC~n`a1U5uj;|ZB7kt$$8}>S;h|qgY+%@zz2f>o7 zf#63k61T7F+wtosZ%_IX6nwl{-52D2SS$*Pu1tx)W6aJaTur@`ih64*5Hx9PgxFMh zW(5gwM^0O)sIu#FuhUF?nvP;(hAFFPyrmaw5&!a&e~-pS*TwTL*p`Nu?DBMT;zHby z`K(u5y*%X^gvFMSXD#m`Gik;2T=~^mu_%j)m!4b?2yZf!?8K@^m?R;q;{i)e6 zzCUn`1~VIKB*MY{GG_?PrYw`+Hmdvx?ay2@it3?=b`#PkHygqNNYmqEOv#(E1vJ(H zcA?U9VUHOFM93x46l4MkOs-<(>xChrR#BvfKqPgS>(|9Dus)4#Puy3iIB$BY4TqRI%i8yPS zsC(q{eTmWsPXk8}A6m|RK8OyIWLVuSR1+sE6<`O#;+Tu)l|W4e3^%tL!R&jF!w!2en^?Y)M${xJSiHpH z{kR=;FkE+3ImSzodd+QL$A5=h!d%2L(MbTF;>6JvTR45ony7g`<;-T^uP-qAOccw`a!q|=AOlpIzH^vB2 znXNIZ0n<+EosR2^ZfahJFh*4>6paE^hXj25vCY;LDl?YDkVl6}@Fi4`z$_zr4_sP8 zo#LjMAo;0kl3bjA>FlNb(j(|2rTsZuz)KomSK@*O2?^Lj=YVef$Y1P}& zH!Pln{mj#um+3109Hfc95pZ#zk)n{_sQGe&1JPGEHb(j#m5DE(-x4g>xdYQm4^+~r z9&^)UYvX8z&Fh=(EMdJ5W~{lc%T^8Qywjd&45{FoP%50-E)&O+4S}6d`B^@pmxetV zni_|)Vmtj0!~NDF&NIFk3i zZq~0p4~R=C1m67yQ$8?m9Rn~$G#c@(WRsM8j%r>|@WV9|VXY%AUV?6&* zTPhdy?Y{Js`4z+U@S!D*Vzn%pF7AE#=?&H*MGWdFz#%?co)TSp>oG-+Z%QC%E3aRD zQ1Hijqtbx5Ewalg=vL%}tk$T!ml9@|{C(e6bh1_ z>2P&+@Q{T9VdZkV+(BL?vaakCA86^vA}w>SD`6jMnoDA9Mx8$m3WVhbtSdM_E7}-B zKEKK2zhg{J;3?+j=A*=eNU!H}G|dZ7AMKhH%u^FrOv-MHENpvJtr68ykrl-pQOPKu z`AF2{XrhHtwhTELb0_Pnfo-F>Gm=Yui##I51%4UhwUrsThsxW$Q1tlba!qZv2if** z5XB?mu0c|m1gD$}D*C%&>q?i^pqKo%9sl6l4AbS_IFb*=ky@8spL@LP-mv#}7Jq4d z&Qlk(_e)Nrt*QUQ0x6Lz&r48Fx0a_cRpC3|4R7fIK~2Jzfty%D?Y(r8hHPFwkO3rm zjR!2^KVTx1-?tt5Jc_mIr-7zC=6%4;Bg^slez!M60gX@3aVR&^Y+=-1&nP&6H|+U( z)tJji^2?tRaw-`x@D(54Gm2>=~$ptcWGIEYE=k4<)s2^`CcWGhf^L zjYNsVR2wEZ6vB}HZG+PPgG4qD5Kv29Bm(AW{Tqx?sjO|7nE4NneNmZ#1epfkoNZMdRJS?LPu zfkVDb>cYkq8DbJ!2EHT%5AyE$}1%$7XZaVDF$j->KUmoJ_`#Vd+C64WBpB%YEjAf*keL`WVBazJwN08=K3p%rNupA3AX?v;7%^W7H|X<-<-W5 zT{y;1Q@_CwgU$b@;&nee|4beaKaB(N0$OrpfJQoD`P~r<4@~Jv=*UX9yX#=x{CD24 z`_vypArZ9ms=R>KF4H_T^A)B(rvSpm#7-j}e&$S|p;(6_q?k{bQYHoB?@VYv84;gt z8r3@>r6pSZ_+0F8+Ff4lVoi>ujr`&J=$||zfXGZ6UoOdnYi&+Y<^>Gxiz_bUMhh?a zZ2eO$coqB*jBzYY6UL-BzZOv2&MNT*O2gjrJ9OOfs>}egPz8^J^0VLh_)Sz3wJm@!%rsYz;aI1j+m#6vp>&~!p zrpZ_SJZHHLpXChcFGLmwNEtc?xO(RrX&nI`-xH}C-X*qt)jU(5fCN{4^)r&#xK+v+ zJ@KNxjiGQEoL1&@D_mV|T7>;vY|l|NcV-x^iGOYRlZHG;(Ym5ASJ;=Tu?8Q28(Ph5 z+JeWFfO0g*XXV=d@4OX>hIV@3NaW&Q^G0(rZx5WD@M(Jy(}7Q05LQOj(%B)k2$X;6 zu389??vm1!fz&s3yZ9jkdyW0=w?#H6t2-6*`_>P-4kcBjQ&X?jf?%o9Wa7;En>irt z@^_#IMA8Lku32TqOUk`0gOk;Z(k43m`B+ld~pCUAkb zYlV5CIQ&*3gIVS7^vND77t##V+SUjQ@Byw+Qt@1YA7)FcH+4+jX9;*ULn2t`I%vv4 z9MVA$Cdg(dl}m4%J%pL0d@f}n#Gwj@q&Y*xA~DTLOVb2#H}t;f3ot}Tck zYEoHFV1JIoK`4hzZ|e~zykAoT0N>}huU^Bgzx!pP40l9A9g*gG9!^jfGrV67@xOPt z>ds+ky9s?A^a+i|2yqmbUPfU|8P8MLLG*IMHa3Y9tj|@c7h!0$*4N`hCX?D;W)A;8V8^o7 z$JFgyHc4FCHMJUg){Z?f@#9zj+vU>jyXB!BhZo+M2z9C>MrOa{iB4hkHC96&7~C?- z#V9jSk=?zyqW|1m|EA9H_W($Z)0%Ws(nIQ3$T6dai6VEmo+~iIJdb8)6c;GTnU%HX zAZ$-p1{{aJr`)?s`98F z&0dZ~j?Y{@?U@0=%(SqfJ=PS34%zk}b8E?4av^3|jz^Vkjyp03ZL}@T*5kFl!v4X1 zb-!l6EcB<-{>-ELwReTK=o5=Xznht#%(E*AAY-rV@2YmsvRW2;Wb?el=jqcp`#Wn~ z?e!Dm^F%;M4>+E>oE$XZr!N03CuT6G6;GZt@pFh{;laJ?)KucM@=5lNKa3uWIgT>m zl#h?5r&Uk#3Ov0(7B!Opy!U^|{%I>GK^xCOj%EJrpAR_ANKRWg32u0BKbFtrzb*U= z)StF4TJgt7Rx8OVSv1H)_`ycgx`txb+lRFsSe~x97>V)=jH#%+L hWNH1kfo@z;{6E_stVxVZ697PtyL@r@g8c3C{{aVBjzItb literal 0 HcmV?d00001 diff --git a/cloudofficeprint/src/test/java/cloudofficeprint/ConfigTests.java b/cloudofficeprint/src/test/java/cloudofficeprint/ConfigTests.java index 0f09813c..15f8a7a9 100644 --- a/cloudofficeprint/src/test/java/cloudofficeprint/ConfigTests.java +++ b/cloudofficeprint/src/test/java/cloudofficeprint/ConfigTests.java @@ -24,6 +24,10 @@ public void testPdfOptions() { PDFOptions pdfOptions = new PDFOptions(); pdfOptions.setReadPassword("test_pw"); pdfOptions.setWatermark("test_watermark"); + pdfOptions.setWatermarkColor("blue"); + pdfOptions.setWatermarkFont("Aerial"); + pdfOptions.setWatermarkOpacity(60); + pdfOptions.setWatermarkSize(30); pdfOptions.setPageWidth("500"); pdfOptions.setPageHeight("500"); pdfOptions.setEvenPage(true); @@ -37,9 +41,11 @@ public void testPdfOptions() { pdfOptions.setMerge(false); pdfOptions.setPageFormat("test_page_format"); pdfOptions.setSignCertificate("test_sign_certificate"); + pdfOptions.setSignCertificateWithPassword("Base64 certificate with password"); pdfOptions.setLandscape(false); pdfOptions.setIdentifyFormFields(true); pdfOptions.setSplit(false); + pdfOptions.setRemoveLastPage(true); Output output = new Output("pdf", "raw", "libreoffice", null, null, pdfOptions, null); @@ -150,8 +156,8 @@ public void testCommands() { @Test public void testPrinter() { - Printer printer = new Printer("http://10.0.14.223:631/", "1.1", "your name", "Cloud Office Print"); - String correct = " { 'location': 'http://10.0.14.223:631/', 'version': '1.1','requester': 'your name', 'job_name': 'Cloud Office Print' }"; + Printer printer = new Printer("http://10.0.14.223:631/", "1.1", "your name", "Cloud Office Print",true); + String correct = " { 'location': 'http://10.0.14.223:631/', 'version': '1.1','requester': 'your name', 'job_name': 'Cloud Office Print','return_output':true }"; // System.out.println(printer.getJSON()); JsonObject jsonCorrect = JsonParser.parseString(correct).getAsJsonObject(); // System.out.println(jsonCorrect); diff --git a/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java b/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java index fda1d3dd..dadda6d2 100644 --- a/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java +++ b/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java @@ -164,7 +164,17 @@ public void textBox() { // System.out.println(jsonCorrect); assertEquals(jsonCorrect, prop.getJSON()); } - + @Test + public void freeze() { + Freeze prop = new Freeze("name","C6"); + String correct = "{'name' : 'C6' }"; + Freeze prop1 = new Freeze("name",true); + String correct1 = "{'name': true }"; + JsonObject jsonCorrect = JsonParser.parseString(correct).getAsJsonObject(); + JsonObject jsonCorrect1 = JsonParser.parseString((correct1)).getAsJsonObject(); + assertEquals(jsonCorrect,prop.getJSON()); + assertEquals(jsonCorrect1,prop1.getJSON()); + } @Test public void elementCollection() { ElementCollection data = new ElementCollection("data"); From 79a69f807599532a90914ca57bf3070b6e0bc9c8 Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Fri, 10 Dec 2021 15:39:27 +0545 Subject: [PATCH 13/59] updated documentation --- .../build/docs/javadoc/allclasses-index.html | 864 ++++----- .../build/docs/javadoc/allpackages-index.html | 266 +-- .../com/cloudofficeprint/COPException.html | 475 ++--- .../Examples/GeneralExamples/Examples.html | 614 +++--- .../GeneralExamples/package-summary.html | 160 +- .../GeneralExamples/package-tree.html | 142 +- .../MultipleRequestMergeExample.html | 339 ++-- .../MultipleRequestMerge/package-summary.html | 160 +- .../MultipleRequestMerge/package-tree.html | 142 +- .../OrderConfirmationExample.html | 337 ++-- .../OrderConfirmation/package-summary.html | 160 +- .../OrderConfirmation/package-tree.html | 142 +- .../PDFSignature/PDFSignatureExample.html | 331 ++-- .../PDFSignature/package-summary.html | 160 +- .../Examples/PDFSignature/package-tree.html | 142 +- .../SolarSystem/SolarSystemExample.html | 343 ++-- .../Examples/SolarSystem/package-summary.html | 160 +- .../Examples/SolarSystem/package-tree.html | 142 +- .../Examples/SpaceX/SpaceXExample.html | 370 ++-- .../Examples/SpaceX/package-summary.html | 160 +- .../Examples/SpaceX/package-tree.html | 142 +- .../javadoc/com/cloudofficeprint/Main.html | 337 ++-- .../com/cloudofficeprint/Mimetype.html | 399 ++-- .../Output/CloudAcessToken/AWSToken.html | 462 ++--- .../CloudAcessToken/CloudAccessToken.html | 387 ++-- .../Output/CloudAcessToken/FTPToken.html | 574 +++--- .../Output/CloudAcessToken/OAuth2Token.html | 412 ++-- .../CloudAcessToken/package-summary.html | 178 +- .../Output/CloudAcessToken/package-tree.html | 148 +- .../cloudofficeprint/Output/CsvOptions.html | 485 ++--- .../com/cloudofficeprint/Output/Output.html | 713 +++---- .../cloudofficeprint/Output/PDFOptions.html | 1467 +++++++------- .../Output/package-summary.html | 172 +- .../cloudofficeprint/Output/package-tree.html | 146 +- .../com/cloudofficeprint/PrintJob.html | 974 ++++------ .../RenderElements/COPChart.html | 817 ++++---- .../RenderElements/COPChartDateOptions.html | 497 ++--- .../RenderElements/CellSpan.html | 497 ++--- .../RenderElements/Cells/CellStyle.html | 337 ++-- .../Cells/CellStyleDocxPpt.html | 452 ++--- .../RenderElements/Cells/CellStyleXlsx.html | 1644 +++++++--------- .../RenderElements/Cells/TableCell.html | 443 ++--- .../RenderElements/Cells/package-summary.html | 178 +- .../RenderElements/Cells/package-tree.html | 150 +- .../Charts/ChartAxisOptions.html | 1097 +++++------ .../Charts/ChartDateOptions.html | 551 +++--- .../RenderElements/Charts/ChartOptions.html | 1394 ++++++-------- .../RenderElements/Charts/ChartTextStyle.html | 551 +++--- .../Charts/Charts/AreaChart.html | 433 ++--- .../Charts/Charts/BarChart.html | 433 ++--- .../Charts/Charts/BarStackedChart.html | 433 ++--- .../Charts/Charts/BarStackedPercentChart.html | 433 ++--- .../Charts/Charts/BubbleChart.html | 433 ++--- .../RenderElements/Charts/Charts/Chart.html | 406 ++-- .../Charts/Charts/ColumnChart.html | 433 ++--- .../Charts/Charts/ColumnStackedChart.html | 433 ++--- .../Charts/ColumnStackedPercentChart.html | 433 ++--- .../Charts/Charts/CombinedChart.html | 547 +++--- .../Charts/Charts/DoughnutChart.html | 433 ++--- .../Charts/Charts/LineChart.html | 433 ++--- .../Charts/Charts/Pie3DChart.html | 433 ++--- .../Charts/Charts/PieChart.html | 433 ++--- .../Charts/Charts/RadarChart.html | 433 ++--- .../Charts/Charts/ScatterChart.html | 433 ++--- .../Charts/Charts/StockChart.html | 433 ++--- .../Charts/Charts/package-summary.html | 256 +-- .../Charts/Charts/package-tree.html | 176 +- .../Charts/Series/AreaSeries.html | 478 ++--- .../Charts/Series/BarSeries.html | 301 +-- .../Series/BarStackedPercentSeries.html | 301 +-- .../Charts/Series/BarStackedSeries.html | 301 +-- .../Charts/Series/BubbleSeries.html | 420 ++-- .../Charts/Series/ColumnSeries.html | 301 +-- .../Series/ColumnStackedPercentSeries.html | 301 +-- .../Charts/Series/ColumnStackedSeries.html | 301 +-- .../Charts/Series/LineSeries.html | 642 +++---- .../Charts/Series/PieSeries.html | 420 ++-- .../Charts/Series/RadarSeries.html | 342 ++-- .../Charts/Series/ScatterSeries.html | 301 +-- .../Charts/Series/StockSeries.html | 659 +++---- .../Charts/Series/XYSeries.html | 562 +++--- .../Charts/Series/package-summary.html | 238 +-- .../Charts/Series/package-tree.html | 168 +- .../Charts/package-summary.html | 178 +- .../RenderElements/Charts/package-tree.html | 148 +- .../RenderElements/Codes/BarCode.html | 833 ++++---- .../RenderElements/Codes/Code.html | 418 ++-- .../RenderElements/Codes/EmailQRCode.html | 612 +++--- .../RenderElements/Codes/EventQRCode.html | 504 ++--- .../Codes/GeolocationQRCode.html | 504 ++--- .../RenderElements/Codes/MECardQRCode.html | 882 ++++----- .../RenderElements/Codes/QRCode.html | 1693 +++++++---------- .../RenderElements/Codes/SMSQRCode.html | 450 ++--- .../Codes/TelephoneNumberQRCode.html | 396 ++-- .../RenderElements/Codes/URLQRCode.html | 396 ++-- .../RenderElements/Codes/VCardQRCode.html | 608 +++--- .../RenderElements/Codes/WifiQRCode.html | 558 +++--- .../RenderElements/Codes/package-summary.html | 226 +-- .../RenderElements/Codes/package-tree.html | 166 +- .../RenderElements/D3Code.html | 443 ++--- .../RenderElements/ElementCollection.html | 647 +++---- .../RenderElements/FootNote.html | 389 ++-- .../RenderElements/Formula.html | 389 ++-- .../RenderElements/Freeze.html | 312 +++ .../cloudofficeprint/RenderElements/HTML.html | 389 ++-- .../RenderElements/HyperLink.html | 443 ++--- .../RenderElements/Images/Image.html | 833 ++++---- .../RenderElements/Images/ImageBase64.html | 404 ++-- .../RenderElements/Images/ImageUrl.html | 314 ++- .../Images/package-summary.html | 172 +- .../RenderElements/Images/package-tree.html | 148 +- .../RenderElements/Loops/InlineDataLoop.html | 379 ++-- .../RenderElements/Loops/Labels.html | 379 ++-- .../RenderElements/Loops/Loop.html | 516 ++--- .../RenderElements/Loops/SheetLoop.html | 510 ++--- .../RenderElements/Loops/SlideLoop.html | 379 ++-- .../RenderElements/Loops/TableRowLoop.html | 379 ++-- .../RenderElements/Loops/package-summary.html | 190 +- .../RenderElements/Loops/package-tree.html | 154 +- .../RenderElements/MarkDownContent.html | 389 ++-- .../RenderElements/PDF/PDFFormData.html | 435 ++--- .../RenderElements/PDF/PDFImage.html | 707 +++---- .../RenderElements/PDF/PDFImages.html | 435 ++--- .../RenderElements/PDF/PDFInsertObject.html | 524 ++--- .../RenderElements/PDF/PDFText.html | 747 +++----- .../RenderElements/PDF/PDFTexts.html | 435 ++--- .../RenderElements/PDF/package-summary.html | 190 +- .../RenderElements/PDF/package-tree.html | 154 +- .../RenderElements/PageBreak.html | 389 ++-- .../RenderElements/Property.html | 416 ++-- .../cloudofficeprint/RenderElements/Raw.html | 389 ++-- .../RenderElements/RawJsonArray.html | 445 ++--- .../RenderElements/RenderElement.html | 464 ++--- .../RenderElements/RightToLeft.html | 389 ++-- .../RenderElements/StyledProperty.html | 789 ++++---- .../RenderElements/TableOfContents.html | 497 ++--- .../RenderElements/TextBox.html | 689 +++---- .../RenderElements/Watermark.html | 690 +++---- .../RenderElements/package-summary.html | 282 ++- .../RenderElements/package-tree.html | 181 +- .../Resources/Base64Resource.html | 495 ++--- .../Resources/ExternalResource.html | 626 +++--- .../Resources/GraphQLResource.html | 468 ++--- .../Resources/HTMLResource.html | 443 ++--- .../Resources/RESTResource.html | 522 ++--- .../cloudofficeprint/Resources/Resource.html | 493 ++--- .../Resources/ServerResource.html | 447 ++--- .../Resources/URLResource.html | 447 ++--- .../Resources/package-summary.html | 202 +- .../Resources/package-tree.html | 158 +- .../com/cloudofficeprint/Response.html | 530 +++--- .../com/cloudofficeprint/Server/Command.html | 493 ++--- .../com/cloudofficeprint/Server/Commands.html | 635 +++---- .../com/cloudofficeprint/Server/Printer.html | 596 +++--- .../com/cloudofficeprint/Server/Server.html | 1176 +++++------- .../Server/package-summary.html | 178 +- .../cloudofficeprint/Server/package-tree.html | 148 +- .../com/cloudofficeprint/package-summary.html | 198 +- .../com/cloudofficeprint/package-tree.html | 150 +- .../build/docs/javadoc/constant-values.html | 132 +- .../build/docs/javadoc/deprecated-list.html | 134 +- .../build/docs/javadoc/help-doc.html | 234 +-- .../docs/javadoc/index-files/index-1.html | 125 ++ .../docs/javadoc/index-files/index-10.html | 142 ++ .../docs/javadoc/index-files/index-11.html | 134 ++ .../docs/javadoc/index-files/index-12.html | 104 + .../docs/javadoc/index-files/index-13.html | 212 +++ .../docs/javadoc/index-files/index-14.html | 98 + .../docs/javadoc/index-files/index-15.html | 177 ++ .../docs/javadoc/index-files/index-16.html | 980 ++++++++++ .../docs/javadoc/index-files/index-17.html | 130 ++ .../docs/javadoc/index-files/index-18.html | 103 + .../docs/javadoc/index-files/index-19.html | 93 + .../docs/javadoc/index-files/index-2.html | 173 ++ .../docs/javadoc/index-files/index-20.html | 110 ++ .../docs/javadoc/index-files/index-21.html | 88 + .../docs/javadoc/index-files/index-3.html | 325 ++++ .../docs/javadoc/index-files/index-4.html | 106 ++ .../docs/javadoc/index-files/index-5.html | 130 ++ .../docs/javadoc/index-files/index-6.html | 120 ++ .../docs/javadoc/index-files/index-7.html | 1192 ++++++++++++ .../docs/javadoc/index-files/index-8.html | 108 ++ .../docs/javadoc/index-files/index-9.html | 127 ++ .../build/docs/javadoc/index.html | 269 +-- .../docs/javadoc/jquery-ui.overrides.css | 34 + .../build/docs/javadoc/member-search-index.js | 2 +- .../build/docs/javadoc/module-search-index.js | 1 + .../build/docs/javadoc/overview-summary.html | 13 +- .../build/docs/javadoc/overview-tree.html | 373 ++-- .../docs/javadoc/package-search-index.js | 2 +- .../images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 0 -> 335 bytes .../images/ui-bg_glass_65_dadada_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_75_dadada_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 0 -> 262 bytes .../images/ui-bg_glass_95_fef1ec_1x400.png | Bin 0 -> 332 bytes .../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 0 -> 280 bytes .../images/ui-icons_222222_256x240.png | Bin 0 -> 6922 bytes .../images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4549 bytes .../images/ui-icons_454545_256x240.png | Bin 0 -> 6992 bytes .../images/ui-icons_888888_256x240.png | Bin 0 -> 6999 bytes .../images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4549 bytes .../javadoc/script-dir/jquery-3.5.1.min.js | 2 + .../docs/javadoc/script-dir/jquery-ui.min.css | 7 + .../docs/javadoc/script-dir/jquery-ui.min.js | 6 + .../script-dir/jquery-ui.structure.min.css | 5 + cloudofficeprint/build/docs/javadoc/script.js | 164 +- cloudofficeprint/build/docs/javadoc/search.js | 426 +++-- .../build/docs/javadoc/serialized-form.html | 172 +- .../build/docs/javadoc/stylesheet.css | 620 +++--- .../build/docs/javadoc/tag-search-index.js | 1 + .../build/docs/javadoc/type-search-index.js | 2 +- 211 files changed, 33079 insertions(+), 43808 deletions(-) create mode 100644 cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-1.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-10.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-11.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-12.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-13.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-14.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-15.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-16.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-17.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-18.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-19.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-2.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-20.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-21.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-3.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-4.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-5.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-6.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-7.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-8.html create mode 100644 cloudofficeprint/build/docs/javadoc/index-files/index-9.html create mode 100644 cloudofficeprint/build/docs/javadoc/jquery-ui.overrides.css create mode 100644 cloudofficeprint/build/docs/javadoc/module-search-index.js create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-bg_glass_65_dadada_1x400.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-bg_glass_75_dadada_1x400.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-icons_222222_256x240.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-icons_2e83ff_256x240.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-icons_454545_256x240.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-icons_888888_256x240.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/images/ui-icons_cd0a0a_256x240.png create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/jquery-3.5.1.min.js create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/jquery-ui.min.css create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/jquery-ui.min.js create mode 100644 cloudofficeprint/build/docs/javadoc/script-dir/jquery-ui.structure.min.css create mode 100644 cloudofficeprint/build/docs/javadoc/tag-search-index.js diff --git a/cloudofficeprint/build/docs/javadoc/allclasses-index.html b/cloudofficeprint/build/docs/javadoc/allclasses-index.html index d37b633a..c2aa4a4e 100644 --- a/cloudofficeprint/build/docs/javadoc/allclasses-index.html +++ b/cloudofficeprint/build/docs/javadoc/allclasses-index.html @@ -2,860 +2,806 @@ - -All Classes (cloudofficeprint 21.2.1 API) + +All Classes + + + - + + - - - - - + + - -

JavaScript is disabled on your browser.
-
+
+ +

All Classes

-
- +
+
+ diff --git a/cloudofficeprint/build/docs/javadoc/allpackages-index.html b/cloudofficeprint/build/docs/javadoc/allpackages-index.html index b33e8e73..f64ea2d7 100644 --- a/cloudofficeprint/build/docs/javadoc/allpackages-index.html +++ b/cloudofficeprint/build/docs/javadoc/allpackages-index.html @@ -2,238 +2,172 @@ - -All Packages (cloudofficeprint 21.2.1 API) + +All Packages + + + - + + - - - - - + + - - -
+
+ +

All Packages

-
-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html index ee9714a8..c9394c28 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html @@ -2,422 +2,315 @@ - -COPException (cloudofficeprint 21.2.1 API) + +COPException + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class COPException

+ +

Class COPException

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • java.lang.Throwable
    • -
    • -
        -
      • java.lang.Exception
      • -
      • -
          -
        • com.cloudofficeprint.COPException
        • -
        -
      • -
      -
    • -
    -
  • -
-
-
    -
  • -
    +
    java.lang.Object +
    java.lang.Throwable +
    java.lang.Exception +
    com.cloudofficeprint.COPException
    +
    +
    +
    +
    +
    All Implemented Interfaces:
    java.io.Serializable

    -
    public class COPException
    +
    public class COPException
     extends java.lang.Exception
    Class for handling a HTTP response of the Cloud Office Print server when the responseCode is /= 200. Has 4 variables responseCode, URID, userMessage and messageForSupport.
    -
    -
    See Also:
    +
    +
    See Also:
    Serialized Form
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        COPException​(int responseCode, - java.lang.String error) +
        COPException​(int responseCode, +java.lang.String error)
        Sets this.responseCode to responseCode.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.StringgetMessageForSupport() 
    java.lang.StringgetMessageForSupport() 
    intgetResponseCode() 
    intgetResponseCode() 
    java.lang.StringgetURID() 
    java.lang.StringgetURID() 
    java.lang.StringgetUserMessage() 
    java.lang.StringgetUserMessage() 
    java.lang.StringtoString() 
    java.lang.StringtoString() 
    -
      -
    • - - -

      Methods inherited from class java.lang.Throwable

      -addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
    • -
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Throwable

+addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          COPException

          -
          public COPException​(int responseCode,
          -                    java.lang.String error)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            COPException

            +
            public COPException​(int responseCode, +java.lang.String error)
            Sets this.responseCode to responseCode. Parses the given response error to get URID, userMessage, messageForSupport.
            -
            -
            Parameters:
            +
            +
            Parameters:
            responseCode - responseCode of the HTTP response of the Cloud Office Print server.
            error - text of the HTTP response (error) of the Cloud Office Print server.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getResponseCode

          -
          public int getResponseCode()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getResponseCode

            +
            public int getResponseCode()
            +
            +
            Returns:
            The response code of the HTTP response.
            +
          • -
          - - - -
            -
          • -

            getURID

            -
            public java.lang.String getURID()
            -
            -
            Returns:
            +
          • +
            +

            getURID

            +
            public java.lang.String getURID()
            +
            +
            Returns:
            URID of the error.
            +
          • -
          - - - -
            -
          • -

            getMessageForSupport

            -
            public java.lang.String getMessageForSupport()
            -
            -
            Returns:
            +
          • +
            +

            getMessageForSupport

            +
            public java.lang.String getMessageForSupport()
            +
            +
            Returns:
            Encrypted message to give to the Cloud Office Print support for help.
            +
          • -
          - - - -
            -
          • -

            getUserMessage

            -
            public java.lang.String getUserMessage()
            -
            -
            Returns:
            +
          • +
            +

            getUserMessage

            +
            public java.lang.String getUserMessage()
            +
            +
            Returns:
            Message for the user explaining where the errors does come form.
            +
          • -
          - - - -
            -
          • -

            toString

            -
            public java.lang.String toString()
            -
            -
            Overrides:
            +
          • +
            +

            toString

            +
            public java.lang.String toString()
            +
            +
            Overrides:
            toString in class java.lang.Throwable
            -
            Returns:
            +
            Returns:
            A string representation of the error containing the response code and a message for the user.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html index 1c181b63..193e36fb 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html @@ -2,557 +2,439 @@ - -Examples (cloudofficeprint 21.2.1 API) + +Examples + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Examples.GeneralExamples.Examples
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +

    -
    public class Examples
    +
    public class Examples
     extends java.lang.Object
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        Examples() 
        Examples() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    voidchartExample​(java.lang.String APIKey) +
    voidchartExample​(java.lang.String APIKey)
    This example show how to build a line chart.
    voidcombinedChartExample​(java.lang.String APIKey) +
    voidcombinedChartExample​(java.lang.String APIKey)
    This example show how to build a combined chart.
    voidCOPPDFTextAndImageExample​(java.lang.String APIKey) +
    voidCOPPDFTextAndImageExample​(java.lang.String APIKey)
    This example shows you how to add text and images on pages of a template without tag.
    voidlocalJson​(java.lang.String APIKey) +
    voidlocalJson​(java.lang.String APIKey)
    Example where the local test.json is read and send to the server.
    voidlocalTemplate​(java.lang.String APIKey) +
    voidlocalTemplate​(java.lang.String APIKey)
    Example with templateTest.docx as template, a list of properties and an image as data.
    voidlocalTemplateAsync​(java.lang.String APIKey) +
    voidlocalTemplateAsync​(java.lang.String APIKey)
    Asynchronous version of the above example.
    voidloopExample​(java.lang.String APIKey) +
    voidloopExample​(java.lang.String APIKey)
    In this example 2 nested loops are given in the template.
    voidprependAppendSubTemplatesExample​(java.lang.String APIKey) +
    voidprependAppendSubTemplatesExample​(java.lang.String APIKey)
    This example shows you how to prepend/append files and how to use subtemplates in a template.
    voidqrCodeExample​(java.lang.String APIKey) +
    voidqrCodeExample​(java.lang.String APIKey)
    This example show how to work with Codes (QR code and barcode).
    voidsignPDF​(java.lang.String APIKey) +
    voidsignPDF​(java.lang.String APIKey)
    This example show you how to sign a PDF file.
    voidwaterMarkAndStyledProperty​(java.lang.String APIKey) +
    voidwaterMarkAndStyledProperty​(java.lang.String APIKey)
    Example for a styled property and a watermark.
    voidwithoutTemplate​(java.lang.String APIKey) +
    voidwithoutTemplate​(java.lang.String APIKey)
    Example without template.
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          Examples

          -
          public Examples()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          Examples

          +
          public Examples()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            localJson

            -
            public void localJson​(java.lang.String APIKey)
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              localJson

              +
              public void localJson​(java.lang.String APIKey)
              Example where the local test.json is read and send to the server. The output is downloaded in downloads and named outputLocalJson.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              withoutTemplate

              -
              public void withoutTemplate​(java.lang.String APIKey)
              +
            • +
              +

              withoutTemplate

              +
              public void withoutTemplate​(java.lang.String APIKey)
              Example without template. Cloud Office Print will generate the template based on the data. Output type determines the template type generated. Cannot be PDF in this case.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              localTemplate

              -
              public void localTemplate​(java.lang.String APIKey)
              +
            • +
              +

              localTemplate

              +
              public void localTemplate​(java.lang.String APIKey)
              Example with templateTest.docx as template, a list of properties and an image as data. A zipfile named outputLocalTemplate will contain 2 outputs files in the downloads folder.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              localTemplateAsync

              -
              public void localTemplateAsync​(java.lang.String APIKey)
              +
            • +
              +

              localTemplateAsync

              +
              public void localTemplateAsync​(java.lang.String APIKey)
              Asynchronous version of the above example. Example with templateTest.docx as template, a list of properties and an image as data. A zipfile named outputLocalTemplate will contain 2 outputs files in the downloads folder.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              loopExample

              -
              public void loopExample​(java.lang.String APIKey)
              +
            • +
              +

              loopExample

              +
              public void loopExample​(java.lang.String APIKey)
              In this example 2 nested loops are given in the template. One for the orders and one for the products per order.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              chartExample

              -
              public void chartExample​(java.lang.String APIKey)
              +
            • +
              +

              chartExample

              +
              public void chartExample​(java.lang.String APIKey)
              This example show how to build a line chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              combinedChartExample

              -
              public void combinedChartExample​(java.lang.String APIKey)
              +
            • +
              +

              combinedChartExample

              +
              public void combinedChartExample​(java.lang.String APIKey)
              This example show how to build a combined chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              qrCodeExample

              -
              public void qrCodeExample​(java.lang.String APIKey)
              +
            • +
              +

              qrCodeExample

              +
              public void qrCodeExample​(java.lang.String APIKey)
              This example show how to work with Codes (QR code and barcode).
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              prependAppendSubTemplatesExample

              -
              public void prependAppendSubTemplatesExample​(java.lang.String APIKey)
              -                                      throws java.lang.Exception
              +
            • +
              +

              prependAppendSubTemplatesExample

              +
              public void prependAppendSubTemplatesExample​(java.lang.String APIKey) + throws java.lang.Exception
              This example shows you how to prepend/append files and how to use subtemplates in a template. Look in the generalTests to see the code.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              -
              Throws:
              +
              Throws:
              java.lang.Exception - Exceptions.
              +
            • -
            - - - -
              -
            • -

              COPPDFTextAndImageExample

              -
              public void COPPDFTextAndImageExample​(java.lang.String APIKey)
              +
            • +
              +

              COPPDFTextAndImageExample

              +
              public void COPPDFTextAndImageExample​(java.lang.String APIKey)
              This example shows you how to add text and images on pages of a template without tag. The output format needs to be PDF.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              waterMarkAndStyledProperty

              -
              public void waterMarkAndStyledProperty​(java.lang.String APIKey)
              +
            • +
              +

              waterMarkAndStyledProperty

              +
              public void waterMarkAndStyledProperty​(java.lang.String APIKey)
              Example for a styled property and a watermark.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              +
            • -
            - - - -
              -
            • -

              signPDF

              -
              public void signPDF​(java.lang.String APIKey)
              +
            • +
              +

              signPDF

              +
              public void signPDF​(java.lang.String APIKey)
              This example show you how to sign a PDF file. (Invisible signature, only to be seen in the options of the file).
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print APIKey.
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html index 4b06cbcc..2bc2275c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html @@ -2,162 +2,102 @@ - -com.cloudofficeprint.Examples.GeneralExamples (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.GeneralExamples + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Examples.GeneralExamples

-
-
    -
  • - - +
    +
      +
    • +
      +
    Class Summary 
    + + - - + + + - - - + + +
    Class Summary
    ClassDescriptionClassDescription
    Examples 
    Examples 
    +
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html index 91ff8869..f940f288 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html @@ -2,159 +2,93 @@ - -com.cloudofficeprint.Examples.GeneralExamples Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.GeneralExamples Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Examples.GeneralExamples

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

  • java.lang.Object
      -
    • com.cloudofficeprint.Examples.GeneralExamples.Examples
    • +
    • com.cloudofficeprint.Examples.GeneralExamples.Examples
-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html index 3eec96ec..a722b740 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html @@ -2,318 +2,233 @@ - -MultipleRequestMergeExample (cloudofficeprint 21.2.1 API) + +MultipleRequestMergeExample + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class MultipleRequestMergeExample

+ +

Class MultipleRequestMergeExample

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    +
    +

    -
    public class MultipleRequestMergeExample
    +
    public class MultipleRequestMergeExample
     extends java.lang.Object
    -
  • -
-
-
-
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    voidmain​(java.lang.String APIKey) +
    voidmain​(java.lang.String APIKey)
    This is an example of how you can merge the output files generated from a single template using multiple requests.
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          MultipleRequestMergeExample

          -
          public MultipleRequestMergeExample()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          MultipleRequestMergeExample

          +
          public MultipleRequestMergeExample()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            main

            -
            public void main​(java.lang.String APIKey)
            -          throws java.lang.Exception
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              main

              +
              public void main​(java.lang.String APIKey) + throws java.lang.Exception
              This is an example of how you can merge the output files generated from a single template using multiple requests. This approach is useful if you are dealing with a lot of output files that need to be merged. There is a limit on how much data can be sent to a Cloud Office Print server, so this is useful to split one big request into multiple smaller ones. This example will take a minute to run.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - your Cloud Office Print API key
              -
              Throws:
              +
              Throws:
              java.lang.Exception - if something went wrong
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html index a3a40c0f..194b5e3a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html @@ -2,162 +2,102 @@ - -com.cloudofficeprint.Examples.MultipleRequestMerge (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.MultipleRequestMerge + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Examples.MultipleRequestMerge

-
-
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html index 7c84e319..8e5fdfbc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html @@ -2,159 +2,93 @@ - -com.cloudofficeprint.Examples.MultipleRequestMerge Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.MultipleRequestMerge Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Examples.MultipleRequestMerge

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html index a845f331..78b1b8bc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html @@ -2,307 +2,222 @@ - -OrderConfirmationExample (cloudofficeprint 21.2.1 API) + +OrderConfirmationExample + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class OrderConfirmationExample

+ +

Class OrderConfirmationExample

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    +
    +

    -
    public class OrderConfirmationExample
    +
    public class OrderConfirmationExample
     extends java.lang.Object
    -
  • -
-
-
-
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    voidmain​(java.lang.String APIKey) 
    voidmain​(java.lang.String APIKey) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          OrderConfirmationExample

          -
          public OrderConfirmationExample()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          OrderConfirmationExample

          +
          public OrderConfirmationExample()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            main

            -
            public void main​(java.lang.String APIKey)
            -          throws java.lang.Exception
            -
            -
            Throws:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              main

              +
              public void main​(java.lang.String APIKey) + throws java.lang.Exception
              +
              +
              Throws:
              java.lang.Exception
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html index 54788df2..24bbbe60 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html @@ -2,162 +2,102 @@ - -com.cloudofficeprint.Examples.OrderConfirmation (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.OrderConfirmation + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Examples.OrderConfirmation

-
-
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html index afc51129..1dfd6fbc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html @@ -2,159 +2,93 @@ - -com.cloudofficeprint.Examples.OrderConfirmation Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.OrderConfirmation Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Examples.OrderConfirmation

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html index 39ea8d01..99bd5d81 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html @@ -2,302 +2,217 @@ - -PDFSignatureExample (cloudofficeprint 21.2.1 API) + +PDFSignatureExample + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class PDFSignatureExample

+ +

Class PDFSignatureExample

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    +
    +

    -
    public class PDFSignatureExample
    +
    public class PDFSignatureExample
     extends java.lang.Object
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        PDFSignatureExample() 
        PDFSignatureExample() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    voidmain​(java.lang.String APIKey) 
    voidmain​(java.lang.String APIKey) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          PDFSignatureExample

          -
          public PDFSignatureExample()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          PDFSignatureExample

          +
          public PDFSignatureExample()
          +
        - -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            main

            -
            public void main​(java.lang.String APIKey)
          • -
          + +
        • +
          +

          Method Details

          +
            +
          • +
            +

            main

            +
            public void main​(java.lang.String APIKey)
            +
        -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html index 7fdd45b6..19bad7dd 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html @@ -2,162 +2,102 @@ - -com.cloudofficeprint.Examples.PDFSignature (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.PDFSignature + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Examples.PDFSignature

-
-
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html index e6a5d31c..fd91edea 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html @@ -2,159 +2,93 @@ - -com.cloudofficeprint.Examples.PDFSignature Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.PDFSignature Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Examples.PDFSignature

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html index 53d1a751..bb81f3bb 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html @@ -2,312 +2,227 @@ - -SolarSystemExample (cloudofficeprint 21.2.1 API) + +SolarSystemExample + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class SolarSystemExample

+ +

Class SolarSystemExample

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    +
    +

    -
    public class SolarSystemExample
    +
    public class SolarSystemExample
     extends java.lang.Object
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        SolarSystemExample() 
        SolarSystemExample() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    voidmain​(java.lang.String APIKey, - java.lang.String templatetype) 
    voidmain​(java.lang.String APIKey, +java.lang.String templatetype) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          SolarSystemExample

          -
          public SolarSystemExample()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          SolarSystemExample

          +
          public SolarSystemExample()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            main

            -
            public void main​(java.lang.String APIKey,
            -                 java.lang.String templatetype)
            -          throws java.lang.Exception
            -
            -
            Parameters:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              main

              +
              public void main​(java.lang.String APIKey, +java.lang.String templatetype) + throws java.lang.Exception
              +
              +
              Parameters:
              APIKey - Your Cloud Office Print API key
              templatetype - The type of the template: either "docx" or "pptx"
              -
              Throws:
              +
              Throws:
              java.lang.Exception - if something went wrong
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html index 387225c4..010be3a7 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html @@ -2,162 +2,102 @@ - -com.cloudofficeprint.Examples.SolarSystem (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.SolarSystem + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Examples.SolarSystem

-
-
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html index c39ed6b2..9f32896a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html @@ -2,159 +2,93 @@ - -com.cloudofficeprint.Examples.SolarSystem Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.SolarSystem Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Examples.SolarSystem

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html index c3445ce9..36a6a485 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html @@ -2,333 +2,245 @@ - -SpaceXExample (cloudofficeprint 21.2.1 API) + +SpaceXExample + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class SpaceXExample

+ +

Class SpaceXExample

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    +
    +

    -
    public class SpaceXExample
    +
    public class SpaceXExample
     extends java.lang.Object
    This example is fully explained in the spacex_example.md file.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        SpaceXExample() 
        SpaceXExample() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    voidmain​(java.lang.String APIKey, - java.lang.String template) 
    voidmain​(java.lang.String APIKey, +java.lang.String template) 
    java.lang.StringshortenDescription​(java.lang.String description) 
    java.lang.StringshortenDescription​(java.lang.String description) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          SpaceXExample

          -
          public SpaceXExample()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          SpaceXExample

          +
          public SpaceXExample()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            shortenDescription

            -
            public java.lang.String shortenDescription​(java.lang.String description)
            -
            -
            Parameters:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              shortenDescription

              +
              public java.lang.String shortenDescription​(java.lang.String description)
              +
              +
              Parameters:
              description - Text to shorten.
              -
              Returns:
              +
              Returns:
              Only the first phrase of the description.
              +
            • -
            - - - -
              -
            • -

              main

              -
              public void main​(java.lang.String APIKey,
              -                 java.lang.String template)
              -          throws java.lang.Exception
              -
              -
              Parameters:
              +
            • +
              +

              main

              +
              public void main​(java.lang.String APIKey, +java.lang.String template) + throws java.lang.Exception
              +
              +
              Parameters:
              template - Should be docx, pptx or xlsx.
              APIKey - Your APIKey.
              -
              Throws:
              +
              Throws:
              java.lang.Exception - Exceptions.
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html index a1125155..9409a7bb 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html @@ -2,164 +2,104 @@ - -com.cloudofficeprint.Examples.SpaceX (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.SpaceX + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Examples.SpaceX

-
-
    -
  • - - +
    +
      +
    • +
      +
    Class Summary 
    + + - - + + + - - - + +
    Class Summary
    ClassDescriptionClassDescription
    SpaceXExample +
    SpaceXExample
    This example is fully explained in the spacex_example.md file.
    +
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html index 5d82695e..dfbfeffa 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html @@ -2,159 +2,93 @@ - -com.cloudofficeprint.Examples.SpaceX Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Examples.SpaceX Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Examples.SpaceX

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html index c4180ba6..fe89dd47 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html @@ -2,307 +2,222 @@ - -Main (cloudofficeprint 21.2.1 API) + +Main + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class Main

+ +

Class Main

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Main
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Main
    +
    +

    -
    public class Main
    +
    public class Main
     extends java.lang.Object
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        Main() 
        Main() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Static Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    static voidmain​(java.lang.String[] args) 
    static voidmain​(java.lang.String[] args) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          Main

          -
          public Main()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          Main

          +
          public Main()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            main

            -
            public static void main​(java.lang.String[] args)
            -                 throws java.lang.Exception
            -
            -
            Throws:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              main

              +
              public static void main​(java.lang.String[] args) + throws java.lang.Exception
              +
              +
              Throws:
              java.lang.Exception
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html index e802a54c..e427433f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html @@ -2,366 +2,275 @@ - -Mimetype (cloudofficeprint 21.2.1 API) + +Mimetype + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class Mimetype

+ +

Class Mimetype

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Mimetype
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Mimetype
    +
    +

    -
    public class Mimetype
    +
    public class Mimetype
     extends java.lang.Object
    Own mimetype class (org.apache.tike gives warnings for logging)
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        Mimetype() 
        Mimetype() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Static Methods Concrete Methods 
    + - - - + + + - - - - + + + + + - - - - + + + - - - - + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    static java.lang.StringgetExtension​(java.lang.String mimetype) +
    static java.lang.StringgetExtension​(java.lang.String mimetype)
    Return the extension given the mimetype of a file.
    static java.lang.StringgetMimeType​(java.lang.String extension) +
    static java.lang.StringgetMimeType​(java.lang.String extension)
    Return the mimetype given the extension of a file.
    static java.lang.StringgetMimetypeFromContentType​(java.lang.String contentType) +
    static java.lang.StringgetMimetypeFromContentType​(java.lang.String contentType)
    Extract the mimetype from the Content-Type argument in an HTTP reponse.
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          Mimetype

          -
          public Mimetype()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          Mimetype

          +
          public Mimetype()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getMimeType

            -
            public static java.lang.String getMimeType​(java.lang.String extension)
            -                                    throws java.lang.Exception
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getMimeType

              +
              public static java.lang.String getMimeType​(java.lang.String extension) + throws java.lang.Exception
              Return the mimetype given the extension of a file.
              -
              -
              Parameters:
              +
              +
              Parameters:
              extension - Extension of the file to find the mimetype.
              -
              Returns:
              +
              Returns:
              Mimetype of the file.
              -
              Throws:
              +
              Throws:
              java.lang.Exception - If the file type is not supported (cannot find the mimetype).
              +
            • -
            - - - -
              -
            • -

              getExtension

              -
              public static java.lang.String getExtension​(java.lang.String mimetype)
              -                                     throws java.lang.Exception
              +
            • +
              +

              getExtension

              +
              public static java.lang.String getExtension​(java.lang.String mimetype) + throws java.lang.Exception
              Return the extension given the mimetype of a file.
              -
              -
              Parameters:
              +
              +
              Parameters:
              mimetype - Mimetype of the file to find the extension.
              -
              Returns:
              +
              Returns:
              Extension of the file.
              -
              Throws:
              +
              Throws:
              java.lang.Exception - If the mimetype is not supported (cannot find the extension).
              +
            • -
            - - - -
              -
            • -

              getMimetypeFromContentType

              -
              public static java.lang.String getMimetypeFromContentType​(java.lang.String contentType)
              +
            • +
              +

              getMimetypeFromContentType

              +
              public static java.lang.String getMimetypeFromContentType​(java.lang.String contentType)
              Extract the mimetype from the Content-Type argument in an HTTP reponse.
              -
              -
              Parameters:
              +
              +
              Parameters:
              contentType - The Content-Type argument in an HTTP response
              -
              Returns:
              +
              Returns:
              the mimetype in the Content-Type argument
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html index 542904de..409ce041 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html @@ -2,405 +2,301 @@ - -AWSToken (cloudofficeprint 21.2.1 API) + +AWSToken + + + - + + - - - - - + + - - -
+
+ - +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        AWSToken​(java.lang.String keyID, - java.lang.String secretKey) +
        AWSToken​(java.lang.String keyID, +java.lang.String secretKey)
        Constructor for an AWSToken object.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.StringgetKeyID() 
    java.lang.StringgetKeyID() 
    java.lang.StringgetSecretKey() 
    java.lang.StringgetSecretKey() 
    voidsetKeyID​(java.lang.String keyID) 
    voidsetKeyID​(java.lang.String keyID) 
    voidsetSecretKey​(java.lang.String secretKey) 
    voidsetSecretKey​(java.lang.String secretKey) 
    - -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken

+getService, setService
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          AWSToken

          -
          public AWSToken​(java.lang.String keyID,
          -                java.lang.String secretKey)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            AWSToken

            +
            public AWSToken​(java.lang.String keyID, +java.lang.String secretKey)
            Constructor for an AWSToken object. Needs to be used if output wants to be stored on AWS.
            -
            -
            Parameters:
            +
            +
            Parameters:
            keyID - AWS access key ID.
            secretKey - AWS secret key.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getSecretKey

          -
          public java.lang.String getSecretKey()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getSecretKey

            +
            public java.lang.String getSecretKey()
            +
            +
            Returns:
            AWS secret key.
            +
          • -
          - - - -
            -
          • -

            getKeyID

            -
            public java.lang.String getKeyID()
            -
            -
            Returns:
            +
          • +
            +

            getKeyID

            +
            public java.lang.String getKeyID()
            +
            +
            Returns:
            AWS key ID.
            +
          • -
          - - - -
            -
          • -

            setKeyID

            -
            public void setKeyID​(java.lang.String keyID)
            -
            -
            Parameters:
            +
          • +
            +

            setKeyID

            +
            public void setKeyID​(java.lang.String keyID)
            +
            +
            Parameters:
            keyID - AWS keyID.
            +
          • -
          - - - -
            -
          • -

            setSecretKey

            -
            public void setSecretKey​(java.lang.String secretKey)
            -
            -
            Parameters:
            +
          • +
            +

            setSecretKey

            +
            public void setSecretKey​(java.lang.String secretKey)
            +
            +
            Parameters:
            secretKey - AWS secret key.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class CloudAccessToken
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for the AWSToken for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html index f1c4fc0d..684d55e5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html @@ -2,349 +2,258 @@ - -CloudAccessToken (cloudofficeprint 21.2.1 API) + +CloudAccessToken + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class CloudAccessToken

+ +

Class CloudAccessToken

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    • -
    -
  • -
-
-
    -
  • -
    +
    java.lang.Object +
    com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
    +
    +
    Direct Known Subclasses:
    AWSToken, FTPToken, OAuth2Token

    -
    public abstract class CloudAccessToken
    +
    public abstract class CloudAccessToken
     extends java.lang.Object
    CloudAccessToken is an abstract class for all the different cloud access tokens : OAuth tokens, AWS tokens,FTP/SFTP tokens
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        CloudAccessToken() 
        CloudAccessToken() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Abstract Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    abstract com.google.gson.JsonObjectgetJSON() 
    abstract com.google.gson.JsonObjectgetJSON() 
    java.lang.StringgetService() 
    java.lang.StringgetService() 
    voidsetService​(java.lang.String service) 
    voidsetService​(java.lang.String service) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          CloudAccessToken

          -
          public CloudAccessToken()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          CloudAccessToken

          +
          public CloudAccessToken()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getService

            -
            public java.lang.String getService()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getService

              +
              public java.lang.String getService()
              +
              +
              Returns:
              which cloud service needs to be used for the output.
              +
            • -
            - - - -
              -
            • -

              setService

              -
              public void setService​(java.lang.String service)
              -
              -
              Parameters:
              +
            • +
              +

              setService

              +
              public void setService​(java.lang.String service)
              +
              +
              Parameters:
              service - Cloud service needs to be used for the output.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public abstract com.google.gson.JsonObject getJSON()
              -
              -
              Returns:
              +
            • +
              +

              getJSON

              +
              public abstract com.google.gson.JsonObject getJSON()
              +
              +
              Returns:
              JSONObject with the tags for the cloudAccesToken for the Cloud Office Print server.
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html index f5fa2138..d7652f9e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html @@ -2,282 +2,218 @@ - -FTPToken (cloudofficeprint 21.2.1 API) + +FTPToken + + + - + + - - - - - + + - - -
+
+ - +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        FTPToken​(java.lang.String host, - java.lang.Boolean SFTP, - int port, - java.lang.String username, - java.lang.String password) +
        FTPToken​(java.lang.String host, +java.lang.Boolean SFTP, +int port, +java.lang.String username, +java.lang.String password)
        Constructor for an FTPToken object.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.StringgetHost() 
    java.lang.StringgetHost() 
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.StringgetPassword() 
    java.lang.StringgetPassword() 
    intgetPort() 
    intgetPort() 
    java.lang.StringgetUsername() 
    java.lang.StringgetUsername() 
    voidsetHost​(java.lang.String host) 
    voidsetHost​(java.lang.String host) 
    voidsetPassword​(java.lang.String password) 
    voidsetPassword​(java.lang.String password) 
    voidsetPort​(int port) 
    voidsetPort​(int port) 
    voidsetUsername​(java.lang.String username) 
    voidsetUsername​(java.lang.String username) 
    - -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken

+getService, setService
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          FTPToken

          -
          public FTPToken​(java.lang.String host,
          -                java.lang.Boolean SFTP,
          -                int port,
          -                java.lang.String username,
          -                java.lang.String password)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            FTPToken

            +
            public FTPToken​(java.lang.String host, +java.lang.Boolean SFTP, +int port, +java.lang.String username, +java.lang.String password)
            Constructor for an FTPToken object. Needs to be used if output wants to be stored on a FTP/SFTP server. If you don't need to instantiate some variables, use their default value as argument. If no default value is specified this argument is compulsory.
            -
            -
            Parameters:
            +
            +
            Parameters:
            host - Host name or IP address of the FTP/SFTP server.
            SFTP - True if server uses SFTP, false if server uses FTP.
            port - Port number of the FTP/SFTP server. Default : 0 (The Cloud @@ -288,206 +224,154 @@

            FTPToken

            (The Cloud Office Print server will then use anonymous@ as password).
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getHost

          -
          public java.lang.String getHost()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getHost

            +
            public java.lang.String getHost()
            +
            +
            Returns:
            Host name or IP address of the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            getPort

            -
            public int getPort()
            -
            -
            Returns:
            +
          • +
            +

            getPort

            +
            public int getPort()
            +
            +
            Returns:
            Port number of the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            getUsername

            -
            public java.lang.String getUsername()
            -
            -
            Returns:
            +
          • +
            +

            getUsername

            +
            public java.lang.String getUsername()
            +
            +
            Returns:
            User name for the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            getPassword

            -
            public java.lang.String getPassword()
            -
            -
            Returns:
            +
          • +
            +

            getPassword

            +
            public java.lang.String getPassword()
            +
            +
            Returns:
            Password of the user for the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            setHost

            -
            public void setHost​(java.lang.String host)
            -
            -
            Parameters:
            +
          • +
            +

            setHost

            +
            public void setHost​(java.lang.String host)
            +
            +
            Parameters:
            host - Host name or IP address of the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            setPort

            -
            public void setPort​(int port)
            -
            -
            Parameters:
            +
          • +
            +

            setPort

            +
            public void setPort​(int port)
            +
            +
            Parameters:
            port - Port number of the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            setUsername

            -
            public void setUsername​(java.lang.String username)
            -
            -
            Parameters:
            +
          • +
            +

            setUsername

            +
            public void setUsername​(java.lang.String username)
            +
            +
            Parameters:
            username - User name for the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            setPassword

            -
            public void setPassword​(java.lang.String password)
            -
            -
            Parameters:
            +
          • +
            +

            setPassword

            +
            public void setPassword​(java.lang.String password)
            +
            +
            Parameters:
            password - Password of the user for the FTP/SFTP server.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class CloudAccessToken
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for the FTPToken for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html index 5ffea5ff..72939360 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html @@ -2,370 +2,272 @@ - -OAuth2Token (cloudofficeprint 21.2.1 API) + +OAuth2Token + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class OAuth2Token

+ +

Class OAuth2Token

-
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        OAuth2Token​(java.lang.String service, - java.lang.String token) +
        OAuth2Token​(java.lang.String service, +java.lang.String token)
        Constructor for an OAuth2Token object.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.StringgetToken() 
    java.lang.StringgetToken() 
    voidsetToken​(java.lang.String token) 
    voidsetToken​(java.lang.String token) 
    - -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken

+getService, setService
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          OAuth2Token

          -
          public OAuth2Token​(java.lang.String service,
          -                   java.lang.String token)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            OAuth2Token

            +
            public OAuth2Token​(java.lang.String service, +java.lang.String token)
            Constructor for an OAuth2Token object. Needs to be used if output wants to be stored on Dropbox, Google Drive or OneDrive.
            -
            -
            Parameters:
            +
            +
            Parameters:
            service - Dropbox, Google Drive or OneDrive
            token - OAuth2Token
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getToken

          -
          public java.lang.String getToken()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getToken

            +
            public java.lang.String getToken()
            +
            +
            Returns:
            OAuth 2 access token.
            +
          • -
          - - - -
            -
          • -

            setToken

            -
            public void setToken​(java.lang.String token)
            -
            -
            Parameters:
            +
          • +
            +

            setToken

            +
            public void setToken​(java.lang.String token)
            +
            +
            Parameters:
            token - OAuth 2 access token.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class CloudAccessToken
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for the OAuth2token for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html index 5d390e58..978e1689 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html @@ -2,183 +2,123 @@ - -com.cloudofficeprint.Output.CloudAcessToken (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Output.CloudAcessToken + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Output.CloudAcessToken

-
-
    -
  • - - +
    +
      +
    • +
      +
    Class Summary 
    + + - - + + + - - - + + - - - + + - - - + + - - - + +
    Class Summary
    ClassDescriptionClassDescription
    AWSToken +
    AWSToken
    Class to use for AWS tokens to store output on AWS.
    CloudAccessToken +
    CloudAccessToken
    CloudAccessToken is an abstract class for all the different cloud access tokens : OAuth tokens, AWS tokens,FTP/SFTP tokens
    FTPToken +
    FTPToken
    Class to use for FTP/SFTP tokens to store output on a FTP/SFTP server.
    OAuth2Token +
    OAuth2Token
    Class to use for OAuth 2 tokens.
    +
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html index 020992f5..4a481d50 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html @@ -2,165 +2,99 @@ - -com.cloudofficeprint.Output.CloudAcessToken Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Output.CloudAcessToken Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Output.CloudAcessToken

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

  • java.lang.Object
      -
    • com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken +
    • com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
        -
      • com.cloudofficeprint.Output.CloudAcessToken.AWSToken
      • -
      • com.cloudofficeprint.Output.CloudAcessToken.FTPToken
      • -
      • com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
      • +
      • com.cloudofficeprint.Output.CloudAcessToken.AWSToken
      • +
      • com.cloudofficeprint.Output.CloudAcessToken.FTPToken
      • +
      • com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html index fe3b36ef..95195426 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html @@ -2,423 +2,320 @@ - -CsvOptions (cloudofficeprint 21.2.1 API) + +CsvOptions + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class CsvOptions

+ +

Class CsvOptions

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Output.CsvOptions
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Output.CsvOptions
    +
    +

    -
    public class CsvOptions
    +
    public class CsvOptions
     extends java.lang.Object
    Class for all the optional PDF output options. Only for
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        CsvOptions() +
        CsvOptions()
        Constructor for the CsvOptions object.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          CsvOptions

          -
          public CsvOptions()
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            CsvOptions

            +
            public CsvOptions()
            Constructor for the CsvOptions object. Set the options with the setters. Uninitialized options won't be included in the JSON.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getTextDelimiter

          -
          public java.lang.String getTextDelimiter()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getTextDelimiter

            +
            public java.lang.String getTextDelimiter()
            +
            +
            Returns:
            The text delimiter. Can be " or ' (default ").
            +
          • -
          - - - -
            -
          • -

            setTextDelimiter

            -
            public void setTextDelimiter​(java.lang.String textDelimiter)
            -
            -
            Parameters:
            +
          • +
            +

            setTextDelimiter

            +
            public void setTextDelimiter​(java.lang.String textDelimiter)
            +
            +
            Parameters:
            textDelimiter - The text delimiter. Can be " or ' (default ").
            +
          • -
          - - - -
            -
          • -

            getFieldSeparator

            -
            public java.lang.String getFieldSeparator()
            -
            -
            Returns:
            +
          • +
            +

            getFieldSeparator

            +
            public java.lang.String getFieldSeparator()
            +
            +
            Returns:
            The field separator. Default ,.
            +
          • -
          - - - -
            -
          • -

            setFieldSeparator

            -
            public void setFieldSeparator​(java.lang.String fieldSeparator)
            -
            -
            Parameters:
            +
          • +
            +

            setFieldSeparator

            +
            public void setFieldSeparator​(java.lang.String fieldSeparator)
            +
            +
            Parameters:
            fieldSeparator - The field separator. Default ,.
            +
          • -
          - - - -
            -
          • -

            getCharacterSet

            -
            public java.lang.Integer getCharacterSet()
            -
            -
            Returns:
            +
          • +
            +

            getCharacterSet

            +
            public java.lang.Integer getCharacterSet()
            +
            +
            Returns:
            The character set. Should be an integer. See: https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options#Filter_Options_for_Lotus.2C_dBase_and_DIF_Filters for possible values. Default 0 or system encoding.
            +
          • -
          - - - -
            -
          • -

            setCharacterSet

            -
            public void setCharacterSet​(java.lang.Integer characterSet)
            -
            -
            Parameters:
            +
          • +
            +

            setCharacterSet

            +
            public void setCharacterSet​(java.lang.Integer characterSet)
            +
            +
            Parameters:
            characterSet - The character set. Should be an integer. See: https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options#Filter_Options_for_Lotus.2C_dBase_and_DIF_Filters for possible values. Default 0 or system encoding.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            JSON-representation of this object
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html index 213e9d06..52ced3fc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html @@ -2,309 +2,252 @@ - -Output (cloudofficeprint 21.2.1 API) + +Output + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class Output

+ +

Class Output

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Output.Output
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Output.Output
    +
    +

    -
    public class Output
    +
    public class Output
     extends java.lang.Object
    Class representing the output configuration of a request. The class only has the Output() constructor, you need to use the set functions to populate this object.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        Output​(java.lang.String filetype, - java.lang.String encoding, - java.lang.String converter, - CloudAccessToken token, - java.lang.String serverDirectory, - PDFOptions pdfOptions, - CsvOptions csvOptions) +
        Output​(java.lang.String filetype, +java.lang.String encoding, +java.lang.String converter, +CloudAccessToken token, +java.lang.String serverDirectory, +PDFOptions pdfOptions, +CsvOptions csvOptions)
        Constructor to create a populated output object.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          Output

          -
          public Output​(java.lang.String filetype,
          -              java.lang.String encoding,
          -              java.lang.String converter,
          -              CloudAccessToken token,
          -              java.lang.String serverDirectory,
          -              PDFOptions pdfOptions,
          -              CsvOptions csvOptions)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            Output

            +
            public Output​(java.lang.String filetype, +java.lang.String encoding, +java.lang.String converter, +CloudAccessToken token, +java.lang.String serverDirectory, +PDFOptions pdfOptions, +CsvOptions csvOptions)
            Constructor to create a populated output object. If you don't need to instantiate some variables, use their default value as argument.
            -
            -
            Parameters:
            +
            +
            Parameters:
            filetype - This states what kind of output file type is required. It can be either the same as template_type ("docx", "pptx", "xlsx", "html", "md"), "pdf" or any other @@ -336,147 +279,115 @@

            Output

            csvOptions - Optional CSV options. They are described in the CsvOptions class. Default : null.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getEncoding

          -
          public java.lang.String getEncoding()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getEncoding

            +
            public java.lang.String getEncoding()
            +
            +
            Returns:
            the encoding to use for the output.
            +
          • -
          - - - -
            -
          • -

            getType

            -
            public java.lang.String getType()
            -
            -
            Returns:
            +
          • +
            +

            getType

            +
            public java.lang.String getType()
            +
            +
            Returns:
            The file type as extension to use for the output.
            +
          • -
          - - - -
            -
          • -

            getAccessToken

            -
            public CloudAccessToken getAccessToken()
            -
            -
            Returns:
            +
          • +
            +

            getAccessToken

            +
            public CloudAccessToken getAccessToken()
            +
            +
            Returns:
            the accesstoken object of this output.
            +
          • -
          - - - -
            -
          • -

            getConverter

            -
            public java.lang.String getConverter()
            -
            -
            Returns:
            +
          • +
            +

            getConverter

            +
            public java.lang.String getConverter()
            +
            +
            Returns:
            the PDF converter for this output.
            +
          • -
          - - - -
            -
          • -

            getPDFOptions

            -
            public PDFOptions getPDFOptions()
            -
            -
            Returns:
            +
          • +
            +

            getPDFOptions

            +
            public PDFOptions getPDFOptions()
            +
            +
            Returns:
            the PDFOptions object for this output.
            +
          • -
          - - - -
            -
          • -

            getServerDirectory

            -
            public java.lang.String getServerDirectory()
            -
            -
            Returns:
            +
          • +
            +

            getServerDirectory

            +
            public java.lang.String getServerDirectory()
            +
            +
            Returns:
            the directory path on server for the output.
            +
          • -
          - - - -
            -
          • -

            setEncoding

            -
            public void setEncoding​(java.lang.String encoding)
            -
            -
            Parameters:
            +
          • +
            +

            setEncoding

            +
            public void setEncoding​(java.lang.String encoding)
            +
            +
            Parameters:
            encoding - Encoding of the output. It must be either "raw" or "base64".
            +
          • -
          - - - -
            -
          • -

            setType

            -
            public void setType​(java.lang.String type)
            +
          • +
            +

            setType

            +
            public void setType​(java.lang.String type)
            Sets the file type (extension) of the output to type.
            -
            -
            Parameters:
            +
            +
            Parameters:
            type - extension for the output
            +
          • -
          - - - -
            -
          • -

            setAccessToken

            -
            public void setAccessToken​(CloudAccessToken accessToken)
            +
          • +
            +

            setAccessToken

            +
            public void setAccessToken​(CloudAccessToken accessToken)
            Sets the access token object of the output, if you want to store the output on a cloud based service.
            -
            -
            Parameters:
            +
            +
            Parameters:
            accessToken - for the output
            +
          • -
          - - - -
            -
          • -

            setConverter

            -
            public void setConverter​(java.lang.String converter)
            -
            -
            Parameters:
            +
          • +
            +

            setConverter

            +
            public void setConverter​(java.lang.String converter)
            +
            +
            Parameters:
            converter - Sets which software the server should use to convert the output to pdf. The Cloud Office Print server uses LibreOffice. If you are running the on premise version then @@ -485,145 +396,107 @@

            setConverter

            "libreoffice-standalone" or any other custom defined converters in the aop_config.json file.
            +
          • -
          - - - -
            -
          • -

            setServerDirectory

            -
            public void setServerDirectory​(java.lang.String serverDirectory)
            -
            -
            Parameters:
            +
          • +
            +

            setServerDirectory

            +
            public void setServerDirectory​(java.lang.String serverDirectory)
            +
            +
            Parameters:
            serverDirectory - Directory path on server, if you want to save the output on the server.
            +
          • -
          - - - -
            -
          • -

            setPDFOptions

            -
            public void setPDFOptions​(PDFOptions PDFOptions)
            -
            -
            Parameters:
            +
          • +
            +

            setPDFOptions

            +
            public void setPDFOptions​(PDFOptions PDFOptions)
            +
            +
            Parameters:
            PDFOptions - PDF options object of this output. All the options are described in the PDFOptions class.
            +
          • -
          - - - -
            -
          • -

            getCsvOptions

            -
            public CsvOptions getCsvOptions()
            -
            -
            Returns:
            +
          • +
            +

            getCsvOptions

            +
            public CsvOptions getCsvOptions()
            +
            +
            Returns:
            the CsvOptions object for this output.
            +
          • -
          - - - -
            -
          • -

            setCsvOptions

            -
            public void setCsvOptions​(CsvOptions csvOptions)
            -
            -
            Parameters:
            +
          • +
            +

            setCsvOptions

            +
            public void setCsvOptions​(CsvOptions csvOptions)
            +
            +
            Parameters:
            csvOptions - Csv options object of this output. All the options are described in the CsvOptions class.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            JSONObject with the tags for the output for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html index 75ffbe43..545df99d 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html @@ -2,1024 +2,1069 @@ - -PDFOptions (cloudofficeprint 21.2.1 API) + +PDFOptions + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class PDFOptions

+ +

Class PDFOptions

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.Output.PDFOptions
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.Output.PDFOptions
    +
    +

    -
    public class PDFOptions
    +
    public class PDFOptions
     extends java.lang.Object
    Class for all the optional PDF output options. Only for
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        PDFOptions() +
        PDFOptions()
        Constructor for the PDFOptions object.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + + - - - - + + + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + + + + + + + - - - - + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.IntegergetCopies() 
    java.lang.IntegergetCopies() 
    java.lang.BooleangetEvenPage() 
    java.lang.BooleangetEvenPage() 
    java.lang.BooleangetIdentifyFormFields() 
    java.lang.BooleangetIdentifyFormFields() +
    If it is set to true Cloud Office Print tries to identify the for + fields and fills them in.
    +
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.BooleangetLandscape() +
    java.lang.BooleangetLandscape()
    Only supported when converting HTML to PDF.
    java.lang.BooleangetLockForm() 
    java.lang.BooleangetLockForm() 
    java.lang.BooleangetMerge() 
    java.lang.BooleangetMerge() +
    It is possible to set whether to return a zip file of multiple output.
    +
    java.lang.BooleangetMergeMakingEven() 
    java.lang.BooleangetMergeMakingEven() 
    java.lang.StringgetModifyPassword() 
    java.lang.StringgetModifyPassword() 
    java.lang.StringgetPageFormat() +
    java.lang.StringgetPageFormat()
    Only supported when converting HTML to PDF.
    java.lang.StringgetPageHeight() +
    java.lang.StringgetPageHeight()
    Only supported when converting HTML to PDF.
    int[]getPageMargin() +
    int[]getPageMargin()
    Only supported when converting HTML to PDF.
    java.lang.StringgetPageWidth() +
    java.lang.StringgetPageWidth()
    Only supported when converting HTML to PDF.
    java.lang.IntegergetPasswordProtectionFlag() +
    java.lang.IntegergetPasswordProtectionFlag()
    More info on the flag bits on https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
    java.lang.StringgetReadPassword() 
    java.lang.StringgetReadPassword() 
    java.lang.StringgetSignCertificate() +
    java.lang.BooleangetRemoveLastPage() +
    It is possible to remove last page from output.
    +
    java.lang.StringgetSignCertificate()
    It is possible to sign the output PDF if the output pdf has a signature field.
    java.lang.BooleangetSplit() 
    java.lang.StringgetSignCertificateWithPassword() +
    It is possible to sign certificate with password.
    +
    java.lang.StringgetWatermark() 
    java.lang.BooleangetSplit() +
    the output PDF should be split into one file per page in a zip file.
    +
    voidsetCopies​(java.lang.Integer copies) 
    java.lang.StringgetWatermark() +
    It is possible to set your own watermark.
    +
    voidsetEvenPage​(java.lang.Boolean evenPage) 
    java.lang.StringgetWatermarkColor() +
    It is possible to assign color of your watermark.
    +
    voidsetIdentifyFormFields​(java.lang.Boolean identifyFormFields) 
    java.lang.StringgetWatermarkFont() +
    It is possible to assign font to your watermark.
    +
    voidsetLandscape​(java.lang.Boolean landscape) +
    java.lang.IntegergetWatermarkOpacity() +
    It is possible to set opacity of your watermark.
    +
    java.lang.IntegergetWatermarkSize() +
    It is possible to set size of your watermark.
    +
    voidsetCopies​(java.lang.Integer copies) 
    voidsetEvenPage​(java.lang.Boolean evenPage) 
    voidsetIdentifyFormFields​(java.lang.Boolean identifyFormFields) +
    If it is set to true Cloud Office Print tries to identify the form fields and fills them in.
    +
    voidsetLandscape​(java.lang.Boolean landscape)
    Only supported when converting HTML to PDF.
    voidsetLockForm​(java.lang.Boolean lockForm) 
    voidsetLockForm​(java.lang.Boolean lockForm) 
    voidsetMerge​(java.lang.Boolean merge) 
    voidsetMerge​(java.lang.Boolean merge) 
    voidsetMergeMakingEven​(java.lang.Boolean mergeMakingEven) 
    voidsetMergeMakingEven​(java.lang.Boolean mergeMakingEven) 
    voidsetModifyPassword​(java.lang.String modifyPassword) 
    voidsetModifyPassword​(java.lang.String modifyPassword) 
    voidsetPageFormat​(java.lang.String pageFormat) +
    voidsetPageFormat​(java.lang.String pageFormat)
    Only supported when converting HTML to PDF.
    voidsetPageHeight​(java.lang.String pageHeight) +
    voidsetPageHeight​(java.lang.String pageHeight)
    Only supported when converting HTML to PDF.
    voidsetPageMargin​(int pageMargin) +
    voidsetPageMargin​(int pageMargin)
    Only supported when converting HTML to PDF.
    voidsetPageMargin​(int[] pageMargins) +
    voidsetPageMargin​(int[] pageMargins)
    Only supported when converting HTML to PDF.
    voidsetPageWidth​(java.lang.String pageWidth) +
    voidsetPageWidth​(java.lang.String pageWidth)
    Only supported when converting HTML to PDF.
    voidsetPasswordProtectionFlag​(java.lang.Integer passwordProtectionFlag) +
    voidsetPasswordProtectionFlag​(java.lang.Integer passwordProtectionFlag)
    More info on the flag bits on https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
    voidsetReadPassword​(java.lang.String readPassword) 
    voidsetReadPassword​(java.lang.String readPassword) 
    voidsetRemoveLastPage​(java.lang.Boolean removeLastPage) +
    It is possible to remove last page from output.
    +
    voidsetSignCertificate​(java.lang.String signCertificate) +
    voidsetSignCertificate​(java.lang.String signCertificate)
    It is possible to sign the output PDF if the output pdf has a signature field.
    voidsetSplit​(java.lang.Boolean split) 
    voidsetSignCertificateWithPassword​(java.lang.String signCertificateWithPassword) +
    It is possible to sign certificate with password.
    +
    voidsetSplit​(java.lang.Boolean split) +
    whether the output PDF should be split into one file per page in a zip file
    +
    voidsetWatermark​(java.lang.String watermark) +
    It is possible to set your own watermark.
    +
    voidsetWatermarkColor​(java.lang.String watermarkColor) +
    It is possible to assign color of your watermark.
    +
    voidsetWatermarkFont​(java.lang.String watermarkFont) +
    It is possible to assign font to your watermark.
    +
    voidsetWatermark​(java.lang.String watermark) 
    voidsetWatermarkOpacity​(java.lang.Integer watermarkOpacity) +
    It is possible to set opacity of your watermark.
    +
    voidsetWatermarkSize​(java.lang.Integer watermarkSize) +
    It is possible to set size of your watermark.
    +
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          PDFOptions

          -
          public PDFOptions()
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            PDFOptions

            +
            public PDFOptions()
            Constructor for the PDFOptions object. Set the options with the setters. Uninitialized options won't be included in the JSON.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getReadPassword

          -
          public java.lang.String getReadPassword()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getReadPassword

            +
            public java.lang.String getReadPassword()
            +
            +
            Returns:
            password to read the output.
            +
          • -
          - - - -
            -
          • -

            setReadPassword

            -
            public void setReadPassword​(java.lang.String readPassword)
            -
            -
            Parameters:
            +
          • +
            +

            setReadPassword

            +
            public void setReadPassword​(java.lang.String readPassword)
            +
            +
            Parameters:
            readPassword - password to read the output.
            +
          • -
          - - - -
            -
          • -

            getWatermark

            -
            public java.lang.String getWatermark()
            -
            -
            Returns:
            +
          • +
            +

            getWatermark

            +
            public java.lang.String getWatermark()
            +
            It is possible to set your own watermark.
            +
            +
            Returns:
            diagonal custom watermark on every page in the output file.
            +
          • -
          - - - -
            -
          • -

            setWatermark

            -
            public void setWatermark​(java.lang.String watermark)
            -
            -
            Parameters:
            +
          • +
            +

            setWatermark

            +
            public void setWatermark​(java.lang.String watermark)
            +
            It is possible to set your own watermark.
            +
            +
            Parameters:
            watermark - diagonal custom watermark on every page in the output file.
            +
          • -
          - - - -
            -
          • -

            getPageWidth

            -
            public java.lang.String getPageWidth()
            +
          • +
            +

            getWatermarkOpacity

            +
            public java.lang.Integer getWatermarkOpacity()
            +
            It is possible to set opacity of your watermark.
            +
            +
            Returns:
            +
            opacity of watermark.
            +
            +
            +
          • +
          • +
            +

            setWatermarkOpacity

            +
            public void setWatermarkOpacity​(java.lang.Integer watermarkOpacity)
            +
            It is possible to set opacity of your watermark.
            +
            +
            Parameters:
            +
            watermarkOpacity - opacity of watermark in percentage.
            +
            +
            +
          • +
          • +
            +

            getWatermarkSize

            +
            public java.lang.Integer getWatermarkSize()
            +
            It is possible to set size of your watermark.
            +
            +
            Returns:
            +
            size of watermark.
            +
            +
            +
          • +
          • +
            +

            setWatermarkSize

            +
            public void setWatermarkSize​(java.lang.Integer watermarkSize)
            +
            It is possible to set size of your watermark.
            +
            +
            Parameters:
            +
            watermarkSize - size of watermark in percentage.
            +
            +
            +
          • +
          • +
            +

            getWatermarkColor

            +
            public java.lang.String getWatermarkColor()
            +
            It is possible to assign color of your watermark.
            +
            +
            Returns:
            +
            color of watermark.
            +
            +
            +
          • +
          • +
            +

            setWatermarkColor

            +
            public void setWatermarkColor​(java.lang.String watermarkColor)
            +
            It is possible to assign color of your watermark.
            +
            +
            Parameters:
            +
            watermarkColor - color of watermark. Default is black
            +
            +
            +
          • +
          • +
            +

            getWatermarkFont

            +
            public java.lang.String getWatermarkFont()
            +
            It is possible to assign font to your watermark.
            +
            +
            Returns:
            +
            font of watermark.
            +
            +
            +
          • +
          • +
            +

            setWatermarkFont

            +
            public void setWatermarkFont​(java.lang.String watermarkFont)
            +
            It is possible to assign font to your watermark.
            +
            +
            Parameters:
            +
            watermarkFont - font of watermark.
            +
            +
            +
          • +
          • +
            +

            getPageWidth

            +
            public java.lang.String getPageWidth()
            Only supported when converting HTML to PDF.
            -
            -
            Returns:
            +
            +
            Returns:
            pageWidth width followed by unit : px, mm, cm, in (e.g. : 20 px). No unit means px.
            +
          • -
          - - - -
            -
          • -

            setPageWidth

            -
            public void setPageWidth​(java.lang.String pageWidth)
            +
          • +
            +

            setPageWidth

            +
            public void setPageWidth​(java.lang.String pageWidth)
            Only supported when converting HTML to PDF.
            -
            -
            Parameters:
            +
            +
            Parameters:
            pageWidth - width followed by unit : px, mm, cm, in (e.g. : 20 px). No unit means px.
            +
          • -
          - - - -
            -
          • -

            getPageHeight

            -
            public java.lang.String getPageHeight()
            +
          • +
            +

            getPageHeight

            +
            public java.lang.String getPageHeight()
            Only supported when converting HTML to PDF.
            -
            -
            Returns:
            +
            +
            Returns:
            pageHeight height followed by unit : px, mm, cm, in (e.g. : 20 px). No unit means px.
            +
          • -
          - - - -
            -
          • -

            setPageHeight

            -
            public void setPageHeight​(java.lang.String pageHeight)
            +
          • +
            +

            setPageHeight

            +
            public void setPageHeight​(java.lang.String pageHeight)
            Only supported when converting HTML to PDF.
            -
            -
            Parameters:
            +
            +
            Parameters:
            pageHeight - eight followed by unit : px, mm, cm, in (e.g. : 20 px). No unit means px.
            +
          • -
          - - - -
            -
          • -

            getEvenPage

            -
            public java.lang.Boolean getEvenPage()
            -
            -
            Returns:
            +
          • +
            +

            getEvenPage

            +
            public java.lang.Boolean getEvenPage()
            +
            +
            Returns:
            true if output will have even pages (blank page added if uneven amount of pages).
            +
          • -
          - - - -
            -
          • -

            setEvenPage

            -
            public void setEvenPage​(java.lang.Boolean evenPage)
            -
            -
            Parameters:
            +
          • +
            +

            setEvenPage

            +
            public void setEvenPage​(java.lang.Boolean evenPage)
            +
            +
            Parameters:
            evenPage - Whether output has even pages (blank page added if uneven amount of pages).
            +
          • -
          - - - -
            -
          • -

            getMergeMakingEven

            -
            public java.lang.Boolean getMergeMakingEven()
            -
            -
            Returns:
            +
          • +
            +

            getMergeMakingEven

            +
            public java.lang.Boolean getMergeMakingEven()
            +
            +
            Returns:
            If Cloud Office Print is going to merge all the append/prepend and template files, making sure the output is even-paged (adding a blank page if the output is uneven-paged).
            +
          • -
          - - - -
            -
          • -

            setMergeMakingEven

            -
            public void setMergeMakingEven​(java.lang.Boolean mergeMakingEven)
            -
            -
            Parameters:
            +
          • +
            +

            setMergeMakingEven

            +
            public void setMergeMakingEven​(java.lang.Boolean mergeMakingEven)
            +
            +
            Parameters:
            mergeMakingEven - Whether you want to merge all the append/prepend and template files, making sure the output is even-paged (adding a blank page if the output is uneven-paged).
            +
          • -
          - - - -
            -
          • -

            getModifyPassword

            -
            public java.lang.String getModifyPassword()
            -
            -
            Returns:
            +
          • +
            +

            getModifyPassword

            +
            public java.lang.String getModifyPassword()
            +
            +
            Returns:
            The password needed to modify the PDF.
            +
          • -
          - - - -
            -
          • -

            setModifyPassword

            -
            public void setModifyPassword​(java.lang.String modifyPassword)
            -
            -
            Parameters:
            +
          • +
            +

            setModifyPassword

            +
            public void setModifyPassword​(java.lang.String modifyPassword)
            +
            +
            Parameters:
            modifyPassword - Password needed to modify the PDF.
            +
          • -
          - - - -
            -
          • -

            getPasswordProtectionFlag

            -
            public java.lang.Integer getPasswordProtectionFlag()
            +
          • +
            +

            getPasswordProtectionFlag

            +
            public java.lang.Integer getPasswordProtectionFlag()
            More info on the flag bits on https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
            -
            -
            Returns:
            +
            +
            Returns:
            protection flag for the PDF (in addition to the user password). (int representation of the 12 flag bits)
            +
          • -
          - - - -
            -
          • -

            setPasswordProtectionFlag

            -
            public void setPasswordProtectionFlag​(java.lang.Integer passwordProtectionFlag)
            +
          • +
            +

            setPasswordProtectionFlag

            +
            public void setPasswordProtectionFlag​(java.lang.Integer passwordProtectionFlag)
            More info on the flag bits on https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
            -
            -
            Parameters:
            +
            +
            Parameters:
            passwordProtectionFlag - protection flag for the PDF (in addition to the user password). (int representation of the 12 flag bits)
            +
          • -
          - - - -
            -
          • -

            getLockForm

            -
            public java.lang.Boolean getLockForm()
            -
            -
            Returns:
            +
          • +
            +

            getLockForm

            +
            public java.lang.Boolean getLockForm()
            +
            +
            Returns:
            If the output PDF will be locked/flattened.
            +
          • -
          - - - -
            -
          • -

            setLockForm

            -
            public void setLockForm​(java.lang.Boolean lockForm)
            -
            -
            Parameters:
            +
          • +
            +

            setLockForm

            +
            public void setLockForm​(java.lang.Boolean lockForm)
            +
            +
            Parameters:
            lockForm - Set to true if you want the output PDF to be locked/flattened.
            +
          • -
          - - - -
            -
          • -

            getCopies

            -
            public java.lang.Integer getCopies()
            -
            -
            Returns:
            +
          • +
            +

            getCopies

            +
            public java.lang.Integer getCopies()
            +
            +
            Returns:
            Number of times the output will be repeated.
            +
          • -
          - - - -
            -
          • -

            setCopies

            -
            public void setCopies​(java.lang.Integer copies)
            -
            -
            Parameters:
            +
          • +
            +

            setCopies

            +
            public void setCopies​(java.lang.Integer copies)
            +
            +
            Parameters:
            copies - Amount of times the output will be repeated.
            +
          • -
          - - - -
            -
          • -

            getPageMargin

            -
            public int[] getPageMargin()
            +
          • +
            +

            getPageMargin

            +
            public int[] getPageMargin()
            Only supported when converting HTML to PDF.
            -
            -
            Returns:
            +
            +
            Returns:
            top bottom left right margin in pixels .
            +
          • -
          - - - -
            -
          • -

            setPageMargin

            -
            public void setPageMargin​(int[] pageMargins)
            -                   throws java.lang.Exception
            +
          • +
            +

            setPageMargin

            +
            public void setPageMargin​(int[] pageMargins) + throws java.lang.Exception
            Only supported when converting HTML to PDF.
            -
            -
            Parameters:
            +
            +
            Parameters:
            pageMargins - top bottom left right margin in pixels .
            -
            Throws:
            +
            Throws:
            java.lang.Exception - If not exact 4 margins are given.
            +
          • -
          - - - -
            -
          • -

            setPageMargin

            -
            public void setPageMargin​(int pageMargin)
            +
          • +
            +

            setPageMargin

            +
            public void setPageMargin​(int pageMargin)
            Only supported when converting HTML to PDF.
            -
            -
            Parameters:
            +
            +
            Parameters:
            pageMargin - Margin (same for all sides).
            +
          • -
          - - - -
            -
          • -

            getLandscape

            -
            public java.lang.Boolean getLandscape()
            +
          • +
            +

            getLandscape

            +
            public java.lang.Boolean getLandscape()
            Only supported when converting HTML to PDF.
            -
            -
            Returns:
            +
            +
            Returns:
            True if orientation is landscape, false if orientation is portrait (default used by server).
            +
          • -
          - - - -
            -
          • -

            setLandscape

            -
            public void setLandscape​(java.lang.Boolean landscape)
            +
          • +
            +

            setLandscape

            +
            public void setLandscape​(java.lang.Boolean landscape)
            Only supported when converting HTML to PDF.
            -
            -
            Parameters:
            +
            +
            Parameters:
            landscape - Set to true if you want the orientation of the output to be landscape, false for portrait (default used by server).
            +
          • -
          - - - -
            -
          • -

            getPageFormat

            -
            public java.lang.String getPageFormat()
            +
          • +
            +

            getPageFormat

            +
            public java.lang.String getPageFormat()
            Only supported when converting HTML to PDF.
            -
            -
            Returns:
            +
            +
            Returns:
            The page format: "A4" (default used by Cloud Office Print) or "letter".
            +
          • -
          - - - -
            -
          • -

            setPageFormat

            -
            public void setPageFormat​(java.lang.String pageFormat)
            +
          • +
            +

            setPageFormat

            +
            public void setPageFormat​(java.lang.String pageFormat)
            Only supported when converting HTML to PDF.
            -
            -
            Parameters:
            +
            +
            Parameters:
            pageFormat - The page format: "A4" or "letter".
            +
          • -
          - - - -
            -
          • -

            getMerge

            -
            public java.lang.Boolean getMerge()
            -
            -
            Returns:
            -
            True if instead of returning back a zip file for multiple outputs, +
          • +
            +

            getMerge

            +
            public java.lang.Boolean getMerge()
            +
            It is possible to set whether to return a zip file of multiple output.
            +
            +
            Returns:
            +
            True if instead of returning a zip file for multiple outputs, they will be merged in one output.
            +
          • -
          - - - -
            -
          • -

            setMerge

            -
            public void setMerge​(java.lang.Boolean merge)
            -
            -
            Parameters:
            +
          • +
            +

            setMerge

            +
            public void setMerge​(java.lang.Boolean merge)
            +
            +
            Parameters:
            merge - Set to true if you want to instead of returning back a zip file for multiple outputs, they will be merged in one output.
            +
          • -
          - - - -
            -
          • -

            getSignCertificate

            -
            public java.lang.String getSignCertificate()
            +
          • +
            +

            getSignCertificate

            +
            public java.lang.String getSignCertificate()
            It is possible to sign the output PDF if the output pdf has a signature field.
            -
            -
            Returns:
            +
            +
            Returns:
            The certificate (pkcs #12 .p12/.pfx) in a base64 encoded format (this can also be a URL, FTP location or a location in the file system of the server).
            +
          • -
          - - - -
            -
          • -

            setSignCertificate

            -
            public void setSignCertificate​(java.lang.String signCertificate)
            +
          • +
            +

            setSignCertificate

            +
            public void setSignCertificate​(java.lang.String signCertificate)
            It is possible to sign the output PDF if the output pdf has a signature field.
            -
            -
            Parameters:
            +
            +
            Parameters:
            signCertificate - The certificate (pkcs #12 .p12/.pfx) in a base64 encoded format (this can also be a URL, FTP location or a location in the file system of the server).
            +
          • -
          - - - -
            -
          • -

            getIdentifyFormFields

            -
            public java.lang.Boolean getIdentifyFormFields()
            -
            -
            Returns:
            -
            If it is set to true Cloud Office Print tries to identify the form - fields and fills them in.
            +
          • +
            +

            getSignCertificateWithPassword

            +
            public java.lang.String getSignCertificateWithPassword()
            +
            It is possible to sign certificate with password.
            +
            +
            Returns:
            +
            password protected signature
            +
          • -
          - - - -
            -
          • -

            setIdentifyFormFields

            -
            public void setIdentifyFormFields​(java.lang.Boolean identifyFormFields)
            -
            -
            Parameters:
            -
            identifyFormFields - If it is set to true Cloud Office Print tries to - identify the form fields and fills them in.
            +
          • +
            +

            setSignCertificateWithPassword

            +
            public void setSignCertificateWithPassword​(java.lang.String signCertificateWithPassword)
            +
            It is possible to sign certificate with password.
            +
            +
            Parameters:
            +
            signCertificateWithPassword - value for the password of signature.
            +
          • -
          - - - -
            -
          • -

            getSplit

            -
            public java.lang.Boolean getSplit()
            -
            -
            Returns:
            -
            whether or not the output PDF should be split into one file per page - in a zip file
            +
          • +
            +

            getIdentifyFormFields

            +
            public java.lang.Boolean getIdentifyFormFields()
            +
            If it is set to true Cloud Office Print tries to identify the for + fields and fills them in.
            +
            +
            Returns:
            +
            whether to get identityFormFields.
            +
          • -
          - - - -
            -
          • -

            setSplit

            -
            public void setSplit​(java.lang.Boolean split)
            -
            -
            Parameters:
            -
            split - whether or not the output PDF should be split into one file per - page in a zip file
            +
          • +
            +

            setIdentifyFormFields

            +
            public void setIdentifyFormFields​(java.lang.Boolean identifyFormFields)
            +
            If it is set to true Cloud Office Print tries to identify the form fields and fills them in.
            +
            +
            Parameters:
            +
            identifyFormFields - value for identify form fields.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            -
            JSON-representation of this object
            +
          • +
            +

            getSplit

            +
            public java.lang.Boolean getSplit()
            +
            the output PDF should be split into one file per page in a zip file.
            +
            +
            Returns:
            +
            split whether to split or not.
            +
          • -
          +
        • +
          +

          setSplit

          +
          public void setSplit​(java.lang.Boolean split)
          +
          whether the output PDF should be split into one file per page in a zip file
          +
          +
          Parameters:
          +
          split - whether to split or not.
          +
          +
          +
        • +
        • +
          +

          getRemoveLastPage

          +
          public java.lang.Boolean getRemoveLastPage()
          +
          It is possible to remove last page from output. It is useful when the last page of output is blank.
          +
          +
          Returns:
          +
          whether to remove last page or not
          +
          +
          +
        • +
        • +
          +

          setRemoveLastPage

          +
          public void setRemoveLastPage​(java.lang.Boolean removeLastPage)
          +
          It is possible to remove last page from output. It is useful when the last page of output is blank.
          +
          +
          Parameters:
          +
          removeLastPage - whether to remove last page
          +
          +
          +
        • +
        • +
          +

          getJSON

          +
          public com.google.gson.JsonObject getJSON()
          +
          +
          Returns:
          +
          JSON-representation of this object
          +
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html index b07d80ea..f9b24dc6 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html @@ -2,176 +2,116 @@ - -com.cloudofficeprint.Output (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Output + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.Output

-
-
    -
  • - - +
    +
      +
    • +
      +
    Class Summary 
    + + - - + + + - - - + + - - - + + - - - + +
    Class Summary
    ClassDescriptionClassDescription
    CsvOptions +
    CsvOptions
    Class for all the optional PDF output options.
    Output +
    Output
    Class representing the output configuration of a request.
    PDFOptions +
    PDFOptions
    Class for all the optional PDF output options.
    +
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html index e84ed3ef..e9960e8c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html @@ -2,161 +2,95 @@ - -com.cloudofficeprint.Output Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Output Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.Output

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html index a334c614..6efbd906 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html @@ -2,382 +2,325 @@ - -PrintJob (cloudofficeprint 21.2.1 API) + +PrintJob + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class PrintJob

+ +

Class PrintJob

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.PrintJob
    • -
    -
  • -
-
-
    -
  • -
    +
    java.lang.Object +
    com.cloudofficeprint.PrintJob
    +
    +
    +
    All Implemented Interfaces:
    java.lang.Runnable

    -
    public class PrintJob
    +
    public class PrintJob
     extends java.lang.Object
     implements java.lang.Runnable
    A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + - - - + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        PrintJob​(ExternalResource externalResource, - Server server, - Output output, - Resource template, - java.util.Hashtable<java.lang.String,​Resource> subTemplates, - Resource[] prependFiles, - Resource[] appendFiles, - java.lang.Boolean copRemoteDebug) +
        PrintJob​(ExternalResource externalResource, +Server server, +Output output, +Resource template, +java.util.Hashtable<java.lang.String,​Resource> subTemplates, +Resource[] prependFiles, +Resource[] appendFiles, +java.lang.Boolean copRemoteDebug)
        A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server.
        PrintJob​(java.util.Hashtable<java.lang.String,​RenderElement> data, - Server server, - Output output, - Resource template, - java.util.Hashtable<java.lang.String,​Resource> subTemplates, - Resource[] prependFiles, - Resource[] appendFiles, - java.lang.Boolean copRemoteDebug) +
        PrintJob​(java.util.Hashtable<java.lang.String,​RenderElement> data, +Server server, +Output output, +Resource template, +java.util.Hashtable<java.lang.String,​Resource> subTemplates, +Resource[] prependFiles, +Resource[] appendFiles, +java.lang.Boolean copRemoteDebug)
        A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          PrintJob

          -
          public PrintJob​(java.util.Hashtable<java.lang.String,​RenderElement> data,
          -                Server server,
          -                Output output,
          -                Resource template,
          -                java.util.Hashtable<java.lang.String,​Resource> subTemplates,
          -                Resource[] prependFiles,
          -                Resource[] appendFiles,
          -                java.lang.Boolean copRemoteDebug)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            PrintJob

            +
            public PrintJob​(java.util.Hashtable<java.lang.String,​RenderElement> data, +Server server, +Output output, +Resource template, +java.util.Hashtable<java.lang.String,​Resource> subTemplates, +Resource[] prependFiles, +Resource[] appendFiles, +java.lang.Boolean copRemoteDebug)
            A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server. If you don't want to instantiate a variable, use null for this argument.
            -
            -
            Parameters:
            +
            +
            Parameters:
            data - Hashtable of (filename, RenderElement) elements. Multiple output files will be produced if the hashtable has more then one element, the Cloud Office Print @@ -396,27 +339,24 @@

            PrintJob

            your JSON into out database and you can see it when you log into cloudofficeprint.com.
            +
          • -
          - - - -
            -
          • -

            PrintJob

            -
            public PrintJob​(ExternalResource externalResource,
            -                Server server,
            -                Output output,
            -                Resource template,
            -                java.util.Hashtable<java.lang.String,​Resource> subTemplates,
            -                Resource[] prependFiles,
            -                Resource[] appendFiles,
            -                java.lang.Boolean copRemoteDebug)
            +
          • +
            +

            PrintJob

            +
            public PrintJob​(ExternalResource externalResource, +Server server, +Output output, +Resource template, +java.util.Hashtable<java.lang.String,​Resource> subTemplates, +Resource[] prependFiles, +Resource[] appendFiles, +java.lang.Boolean copRemoteDebug)
            A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server. If you don't want to instantiate a variable, use null for this argument.
            -
            -
            Parameters:
            +
            +
            Parameters:
            externalResource - External resource for the data (REST or graphQL).
            server - Server to user for this printjob.
            output - object containing the output configuration for this @@ -435,412 +375,318 @@

            PrintJob

            your JSON into out database and you can see it when you log into cloudofficeprint.com.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getServer

          -
          public Server getServer()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getServer

            +
            public Server getServer()
            +
            +
            Returns:
            Server to user for this printjob.
            +
          • -
          - - - -
            -
          • -

            setServer

            -
            public void setServer​(Server server)
            -
            -
            Parameters:
            +
          • +
            +

            setServer

            +
            public void setServer​(Server server)
            +
            +
            Parameters:
            server - to use for this printjob.
            +
          • -
          - - - -
            -
          • -

            getOutput

            -
            public Output getOutput()
            -
            -
            Returns:
            +
          • +
            +

            getOutput

            +
            public Output getOutput()
            +
            +
            Returns:
            Output object containing output configuration for this printjob.
            +
          • -
          - - - -
            -
          • -

            setOutput

            -
            public void setOutput​(Output output)
            -
            -
            Parameters:
            +
          • +
            +

            setOutput

            +
            public void setOutput​(Output output)
            +
            +
            Parameters:
            output - object containing the output configuration for this printjob.
            +
          • -
          - - - -
            -
          • -

            getTemplate

            -
            public Resource getTemplate()
            -
            -
            Returns:
            +
          • +
            +

            getTemplate

            +
            public Resource getTemplate()
            +
            +
            Returns:
            Template for this print job.
            +
          • -
          - - - -
            -
          • -

            setTemplate

            -
            public void setTemplate​(Resource template)
            -
            -
            Parameters:
            +
          • +
            +

            setTemplate

            +
            public void setTemplate​(Resource template)
            +
            +
            Parameters:
            template - for this printjob.
            +
          • -
          - - - -
            -
          • -

            getPrependFiles

            -
            public Resource[] getPrependFiles()
            -
            -
            Returns:
            +
          • +
            +

            getPrependFiles

            +
            public Resource[] getPrependFiles()
            +
            +
            Returns:
            Files to prepend to the output.
            +
          • -
          - - - -
            -
          • -

            setPrependFiles

            -
            public void setPrependFiles​(Resource[] prependFiles)
            -
            -
            Parameters:
            +
          • +
            +

            setPrependFiles

            +
            public void setPrependFiles​(Resource[] prependFiles)
            +
            +
            Parameters:
            prependFiles - Files to prepend to the output.
            +
          • -
          - - - -
            -
          • -

            getAppendFiles

            -
            public Resource[] getAppendFiles()
            -
            -
            Returns:
            +
          • +
            +

            getAppendFiles

            +
            public Resource[] getAppendFiles()
            +
            +
            Returns:
            Files to append to the output.
            +
          • -
          - - - -
            -
          • -

            setAppendFiles

            -
            public void setAppendFiles​(Resource[] appendFiles)
            -
            -
            Parameters:
            +
          • +
            +

            setAppendFiles

            +
            public void setAppendFiles​(Resource[] appendFiles)
            +
            +
            Parameters:
            appendFiles - Files to append to the output.
            +
          • -
          - - - -
            -
          • -

            getSubTemplates

            -
            public java.util.Hashtable<java.lang.String,​Resource> getSubTemplates()
            +
          • +
            +

            getSubTemplates

            +
            public java.util.Hashtable<java.lang.String,​Resource> getSubTemplates()
            Subtemplates are only accessible (in docx). They will replace the `{?include subtemplate_dict_key}` tag in the docx.
            -
            -
            Returns:
            +
            +
            Returns:
            Subtemplates for this print job. Hashtable(key, subTemplate).
            +
          • -
          - - - -
            -
          • -

            setSubTemplates

            -
            public void setSubTemplates​(java.util.Hashtable<java.lang.String,​Resource> subTemplates)
            +
          • +
            +

            setSubTemplates

            +
            public void setSubTemplates​(java.util.Hashtable<java.lang.String,​Resource> subTemplates)
            Subtemplates are only accessible (in docx). They will replace the `{?include subtemplate_dict_key}` tag in the docx.
            -
            -
            Parameters:
            +
            +
            Parameters:
            subTemplates - for this print job. Hashtable(key, subTemplate).
            +
          • -
          - - - -
            -
          • -

            getData

            -
            public java.util.Hashtable<java.lang.String,​RenderElement> getData()
            +
          • +
            +

            getData

            +
            public java.util.Hashtable<java.lang.String,​RenderElement> getData()
            Renderelements will replace their corresponding tag in the template. Multiple output files will be produced if the hashtable has more then one element, the Cloud Office Print server will return a zip file containing all of them.
            -
            -
            Returns:
            +
            +
            Returns:
            Hashtable(filename, RenderElement)
            +
          • -
          - - - -
            -
          • -

            setData

            -
            public void setData​(java.util.Hashtable<java.lang.String,​RenderElement> data)
            +
          • +
            +

            setData

            +
            public void setData​(java.util.Hashtable<java.lang.String,​RenderElement> data)
            Renderelements will replace their corresponding tag in the template. Multiple output files will be produced if the hashtable has more then one element, the Cloud Office Print server will return a zip file containing all of them.
            -
            -
            Parameters:
            +
            +
            Parameters:
            data - Hashtable(filename, RenderElement)
            +
          • -
          - - - -
            -
          • -

            getCopRemoteDebug

            -
            public java.lang.Boolean getCopRemoteDebug()
            -
            -
            Returns:
            +
          • +
            +

            getCopRemoteDebug

            +
            public java.lang.Boolean getCopRemoteDebug()
            +
            +
            Returns:
            If set to true the Cloud Office Print server will log your JSON into out database and you can see it when you log into cloudofficeprint.com.
            +
          • -
          - - - -
            -
          • -

            setCopRemoteDebug

            -
            public void setCopRemoteDebug​(java.lang.Boolean copRemoteDebug)
            -
            -
            Parameters:
            +
          • +
            +

            setCopRemoteDebug

            +
            public void setCopRemoteDebug​(java.lang.Boolean copRemoteDebug)
            +
            +
            Parameters:
            copRemoteDebug - If set to true the Cloud Office Print server will log your JSON into out database and you can see it when you log into cloudofficeprint.com.
            +
          • -
          - - - -
            -
          • -

            getExternalResource

            -
            public ExternalResource getExternalResource()
            -
            -
            Returns:
            +
          • +
            +

            getExternalResource

            +
            public ExternalResource getExternalResource()
            +
            +
            Returns:
            External resource for the data (REST or graphQL).
            +
          • -
          - - - -
            -
          • -

            setExternalResource

            -
            public void setExternalResource​(ExternalResource externalResource)
            -
            -
            Parameters:
            +
          • +
            +

            setExternalResource

            +
            public void setExternalResource​(ExternalResource externalResource)
            +
            +
            Parameters:
            externalResource - External resource for the data (REST or graphQL).
            +
          • -
          - - - -
            -
          • -

            getResponse

            -
            public Response getResponse()
            +
          • +
            +

            getResponse

            +
            public Response getResponse()
            For getting to response after asynchronous execution. To used after run() has been called and the thread joined.
            -
            -
            Returns:
            +
            +
            Returns:
            Response of the request to Cloud Office Print.
            +
          • -
          - - - -
            -
          • -

            setResponse

            -
            public void setResponse​(Response response)
            +
          • +
            +

            setResponse

            +
            public void setResponse​(Response response)
            For setting to response after asynchronous execution. Call getResponse() after run() has been called and the thread joined to get the response.
            -
            -
            Parameters:
            +
            +
            Parameters:
            response - Response of the request to Cloud Office Print.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            Jsonobject containing all the info about the printjob, for the POST request to the Cloud Office Print server.
            +
          • -
          - - - -
            -
          • -

            execute

            -
            public Response execute()
            -                 throws java.lang.Exception
            +
          • +
            +

            execute

            +
            public Response execute() + throws java.lang.Exception
            Creates the adequate JSON and sends it to the Cloud Office Print server.
            -
            -
            Returns:
            +
            +
            Returns:
            The response of the Cloud Office Print server.
            -
            Throws:
            +
            Throws:
            java.lang.Exception - If the server is not reachable.
            COPException - If the server response doesn't have a 200 code.
            +
          • -
          - - - -
            -
          • -

            run

            -
            public void run()
            +
          • +
            +

            run

            +
            public void run()
            Asynchronous version of execute(). The response can be obtained with the getResponse() function. Creates the adequate JSON and sends it to the Cloud Office Print server.
            -
            -
            Specified by:
            +
            +
            Specified by:
            run in interface java.lang.Runnable
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html index 889e1cd4..d8768e41 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html @@ -2,140 +2,88 @@ - -COPChart (cloudofficeprint 21.2.1 API) + +COPChart + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class COPChart

+ +

Class COPChart

-
- -
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.COPChart
    +
    +
    +

    -
    public class COPChart
    +
    public class COPChart
     extends RenderElement
    Supported in Word, Excel and Powerpoint templates. This class represent Cloud Office Print charts (including the data and style). The chart in the template @@ -144,197 +92,185 @@

    Class COPChart

    options we do not support, but moves the chart styling from the data to the template. This may case some difficulties, e.g. : loops containing a chart with different style on each iteration would not be possible using this tag.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        COPChart​(java.lang.String name, - com.google.gson.JsonArray xData, - java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> yData, - java.lang.String title, - java.lang.String xTitle, - java.lang.String yTitle, - java.lang.String y2Title, - java.lang.String x2Title, - COPChartDateOptions copChartDateOptions) +
        COPChart​(java.lang.String name, +com.google.gson.JsonArray xData, +java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> yData, +java.lang.String title, +java.lang.String xTitle, +java.lang.String yTitle, +java.lang.String y2Title, +java.lang.String x2Title, +COPChartDateOptions copChartDateOptions)
        Represent a Cloud Office Print chart (including data and style).
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          COPChart

          -
          public COPChart​(java.lang.String name,
          -                com.google.gson.JsonArray xData,
          -                java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> yData,
          -                java.lang.String title,
          -                java.lang.String xTitle,
          -                java.lang.String yTitle,
          -                java.lang.String y2Title,
          -                java.lang.String x2Title,
          -                COPChartDateOptions copChartDateOptions)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            COPChart

            +
            public COPChart​(java.lang.String name, +com.google.gson.JsonArray xData, +java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> yData, +java.lang.String title, +java.lang.String xTitle, +java.lang.String yTitle, +java.lang.String y2Title, +java.lang.String x2Title, +COPChartDateOptions copChartDateOptions)
            Represent a Cloud Office Print chart (including data and style). If you don't want te specify some parameters, use null as argument.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart for the tag.
            xData - ArrayList(String) of the data of the x-axis. Format : ["day 1", "day 2", "day 3", "day 4", "day @@ -350,333 +286,254 @@

            COPChart

            x2Title - Title of the second y-axis.
            copChartDateOptions - Date options for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getXData

          -
          public com.google.gson.JsonArray getXData()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getXData

            +
            public com.google.gson.JsonArray getXData()
            +
            +
            Returns:
            JsonArray of the data of the x-axis. Format : ["day 1", "day 2", "day 3", "day 4", "day 5"] or [{"value": "day 1"}, {"value": "day 2"}, {"value": "day 3"}, {"value": "day 4"}, {"value": "day 5"}]
            +
          • -
          - - - -
            -
          • -

            setXData

            -
            public void setXData​(com.google.gson.JsonArray xData)
            -
            -
            Parameters:
            +
          • +
            +

            setXData

            +
            public void setXData​(com.google.gson.JsonArray xData)
            +
            +
            Parameters:
            xData - JsonArray of the data of the x-axis. Format : ["day 1", "day 2", "day 3", "day 4", "day 5"] or [{"value": "day 1"}, {"value": "day 2"}, {"value": "day 3"}, {"value": "day 4"}, {"value": "day 5"}]
            +
          • -
          - - - -
            -
          • -

            getYData

            -
            public java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> getYData()
            -
            -
            Returns:
            +
          • +
            +

            getYData

            +
            public java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> getYData()
            +
            +
            Returns:
            HashMap(Name of the serie, JsonArray of y-data) in the same format as xData.
            +
          • -
          - - - -
            -
          • -

            setYData

            -
            public void setYData​(java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> yData)
            -
            -
            Parameters:
            +
          • +
            +

            setYData

            +
            public void setYData​(java.util.HashMap<java.lang.String,​com.google.gson.JsonArray> yData)
            +
            +
            Parameters:
            yData - HashMap(Name of the serie, JsonArray of y-data) in the same format as xData.
            +
          • -
          - - - -
            -
          • -

            getTitle

            -
            public java.lang.String getTitle()
            -
            -
            Returns:
            +
          • +
            +

            getTitle

            +
            public java.lang.String getTitle()
            +
            +
            Returns:
            Title of the chart.
            +
          • -
          - - - -
            -
          • -

            setTitle

            -
            public void setTitle​(java.lang.String title)
            -
            -
            Parameters:
            +
          • +
            +

            setTitle

            +
            public void setTitle​(java.lang.String title)
            +
            +
            Parameters:
            title - Title of the chart.
            +
          • -
          - - - -
            -
          • -

            getXTitle

            -
            public java.lang.String getXTitle()
            -
            -
            Returns:
            +
          • +
            +

            getXTitle

            +
            public java.lang.String getXTitle()
            +
            +
            Returns:
            Title of the x-axis.
            +
          • -
          - - - -
            -
          • -

            setXTitle

            -
            public void setXTitle​(java.lang.String xTitle)
            -
            -
            Parameters:
            +
          • +
            +

            setXTitle

            +
            public void setXTitle​(java.lang.String xTitle)
            +
            +
            Parameters:
            xTitle - Title of the x-axis.
            +
          • -
          - - - -
            -
          • -

            getYTitle

            -
            public java.lang.String getYTitle()
            -
            -
            Returns:
            +
          • +
            +

            getYTitle

            +
            public java.lang.String getYTitle()
            +
            +
            Returns:
            Title of the y-axis.
            +
          • -
          - - - -
            -
          • -

            setYTitle

            -
            public void setYTitle​(java.lang.String yTitle)
            -
            -
            Parameters:
            +
          • +
            +

            setYTitle

            +
            public void setYTitle​(java.lang.String yTitle)
            +
            +
            Parameters:
            yTitle - Title of the y-axis.
            +
          • -
          - - - -
            -
          • -

            getY2Title

            -
            public java.lang.String getY2Title()
            -
            -
            Returns:
            +
          • +
            +

            getY2Title

            +
            public java.lang.String getY2Title()
            +
            +
            Returns:
            Title of the second y-axis.
            +
          • -
          - - - -
            -
          • -

            setY2Title

            -
            public void setY2Title​(java.lang.String y2Title)
            -
            -
            Parameters:
            +
          • +
            +

            setY2Title

            +
            public void setY2Title​(java.lang.String y2Title)
            +
            +
            Parameters:
            y2Title - Title of the second y-axis.
            +
          • -
          - - - -
            -
          • -

            getX2Title

            -
            public java.lang.String getX2Title()
            -
            -
            Returns:
            +
          • +
            +

            getX2Title

            +
            public java.lang.String getX2Title()
            +
            +
            Returns:
            Title of the second x-axis.
            +
          • -
          - - - -
            -
          • -

            setX2Title

            -
            public void setX2Title​(java.lang.String x2Title)
            -
            -
            Parameters:
            +
          • +
            +

            setX2Title

            +
            public void setX2Title​(java.lang.String x2Title)
            +
            +
            Parameters:
            x2Title - Title of the second x-axis.
            +
          • -
          - - - -
            -
          • -

            getCopChartDateOptions

            -
            public COPChartDateOptions getCopChartDateOptions()
            -
            -
            Returns:
            +
          • +
            +

            getCopChartDateOptions

            +
            public COPChartDateOptions getCopChartDateOptions()
            +
            +
            Returns:
            Date options for the chart.
            +
          • -
          - - - -
            -
          • -

            setCopChartDateOptions

            -
            public void setCopChartDateOptions​(COPChartDateOptions copChartDateOptions)
            -
            -
            Parameters:
            +
          • +
            +

            setCopChartDateOptions

            +
            public void setCopChartDateOptions​(COPChartDateOptions copChartDateOptions)
            +
            +
            Parameters:
            copChartDateOptions - Date options for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            +
          • -
          - - - -
            -
          • -

            getTemplateTags

            -
            public java.util.Set<java.lang.String> getTemplateTags()
            -
            -
            Specified by:
            +
          • +
            +

            getTemplateTags

            +
            public java.util.Set<java.lang.String> getTemplateTags()
            +
            +
            Specified by:
            getTemplateTags in class RenderElement
            -
            Returns:
            +
            Returns:
            An immutable set containing all available template tags this element can replace.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html index 60976644..24289560 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html @@ -2,435 +2,332 @@ - -COPChartDateOptions (cloudofficeprint 21.2.1 API) + +COPChartDateOptions + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class COPChartDateOptions

+ +

Class COPChartDateOptions

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.RenderElements.COPChartDateOptions
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    +

    -
    public class COPChartDateOptions
    +
    public class COPChartDateOptions
     extends java.lang.Object
    Date options for an COPChart (different from ChartDateOptions for the other Charts).
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        COPChartDateOptions​(java.lang.String format, - java.lang.String unit, - java.lang.Integer step) +
        COPChartDateOptions​(java.lang.String format, +java.lang.String unit, +java.lang.Integer step)
        This object represents the date options for a chart.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.StringgetFormat() 
    java.lang.StringgetFormat() 
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.IntegergetStep() 
    java.lang.IntegergetStep() 
    java.lang.StringgetUnit() 
    java.lang.StringgetUnit() 
    voidsetFormat​(java.lang.String format) 
    voidsetFormat​(java.lang.String format) 
    voidsetStep​(java.lang.Integer step) 
    voidsetStep​(java.lang.Integer step) 
    voidsetUnit​(java.lang.String unit) 
    voidsetUnit​(java.lang.String unit) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          COPChartDateOptions

          -
          public COPChartDateOptions​(java.lang.String format,
          -                           java.lang.String unit,
          -                           java.lang.Integer step)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            COPChartDateOptions

            +
            public COPChartDateOptions​(java.lang.String format, +java.lang.String unit, +java.lang.Integer step)
            This object represents the date options for a chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            format - Date format e.g. : unix.
            unit - The unit to be used for spacing the axis values e.g. : months.
            step - How many units should be used for spacing the axis values (automatic if undefined). This option is not supported in LibreOffice.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getFormat

          -
          public java.lang.String getFormat()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getFormat

            +
            public java.lang.String getFormat()
            +
            +
            Returns:
            Date format e.g. : unix.
            +
          • -
          - - - -
            -
          • -

            setFormat

            -
            public void setFormat​(java.lang.String format)
            -
            -
            Parameters:
            +
          • +
            +

            setFormat

            +
            public void setFormat​(java.lang.String format)
            +
            +
            Parameters:
            format - Date format e.g. : unix.
            +
          • -
          - - - -
            -
          • -

            getUnit

            -
            public java.lang.String getUnit()
            -
            -
            Returns:
            +
          • +
            +

            getUnit

            +
            public java.lang.String getUnit()
            +
            +
            Returns:
            The unit to be used for spacing the axis values e.g. : months.
            +
          • -
          - - - -
            -
          • -

            setUnit

            -
            public void setUnit​(java.lang.String unit)
            -
            -
            Parameters:
            +
          • +
            +

            setUnit

            +
            public void setUnit​(java.lang.String unit)
            +
            +
            Parameters:
            unit - The unit to be used for spacing the axis values e.g. : months.
            +
          • -
          - - - -
            -
          • -

            getStep

            -
            public java.lang.Integer getStep()
            -
            -
            Returns:
            +
          • +
            +

            getStep

            +
            public java.lang.Integer getStep()
            +
            +
            Returns:
            How many units should be used for spacing the axis values (automatic if undefined). This option is not supported in LibreOffice.
            +
          • -
          - - - -
            -
          • -

            setStep

            -
            public void setStep​(java.lang.Integer step)
            -
            -
            Parameters:
            +
          • +
            +

            setStep

            +
            public void setStep​(java.lang.Integer step)
            +
            +
            Parameters:
            step - How many units should be used for spacing the axis values (automatic if undefined). This option is not supported in LibreOffice.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html index a37de402..39b29608 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html @@ -2,430 +2,323 @@ - -CellSpan (cloudofficeprint 21.2.1 API) + +CellSpan + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class CellSpan

+ +

Class CellSpan

-
- -
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.CellSpan
    +
    +
    +

    -
    public class CellSpan
    +
    public class CellSpan
     extends RenderElement
    Only available for Excel and HTML templates. This element allows you to specify the columns and rows to span for this cell. The tag in the cell of the template will be replaced by the value.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        CellSpan​(java.lang.String name, - java.lang.String value, - int columns, - int rows) 
        CellSpan​(java.lang.String name, +java.lang.String value, +int columns, +int rows) 
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          CellSpan

          -
          public CellSpan​(java.lang.String name,
          -                java.lang.String value,
          -                int columns,
          -                int rows)
          -
          -
          Parameters:
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            CellSpan

            +
            public CellSpan​(java.lang.String name, +java.lang.String value, +int columns, +int rows)
            +
            +
            Parameters:
            name - Name of this property.
            value - Value of this property.
            columns - Number of columns to span.
            rows - Number of rows to span.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getColumns

          -
          public int getColumns()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getColumns

            +
            public int getColumns()
            +
            +
            Returns:
            Columns to span by cell.
            +
          • -
          - - - -
            -
          • -

            setColumns

            -
            public void setColumns​(int columns)
            -
            -
            Parameters:
            +
          • +
            +

            setColumns

            +
            public void setColumns​(int columns)
            +
            +
            Parameters:
            columns - Columns to span by cell.
            +
          • -
          - - - -
            -
          • -

            getRows

            -
            public int getRows()
            -
            -
            Returns:
            +
          • +
            +

            getRows

            +
            public int getRows()
            +
            +
            Returns:
            Rows to span by cell.
            +
          • -
          - - - -
            -
          • -

            setRows

            -
            public void setRows​(int rows)
            -
            -
            Parameters:
            +
          • +
            +

            setRows

            +
            public void setRows​(int rows)
            +
            +
            Parameters:
            rows - Rows to span by cell.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this property for the Cloud Office Print server.
            +
          • -
          - - - -
            -
          • -

            getTemplateTags

            -
            public java.util.Set<java.lang.String> getTemplateTags()
            -
            -
            Specified by:
            +
          • +
            +

            getTemplateTags

            +
            public java.util.Set<java.lang.String> getTemplateTags()
            +
            +
            Specified by:
            getTemplateTags in class RenderElement
            -
            Returns:
            +
            Returns:
            An immutable set containing all available template tags this element can replace.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html index a987e905..ffb49908 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html @@ -2,312 +2,227 @@ - -CellStyle (cloudofficeprint 21.2.1 API) + +CellStyle + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class CellStyle

+ +

Class CellStyle

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.RenderElements.Cells.CellStyle
    • -
    -
  • -
-
-
    -
  • -
    +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.Cells.CellStyle
    +
    +
    +
    Direct Known Subclasses:
    CellStyleDocxPpt, CellStyleXlsx

    -
    public abstract class CellStyle
    +
    public abstract class CellStyle
     extends java.lang.Object
    Abstract class for cellstyles.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        CellStyle() 
        CellStyle() 
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Abstract Methods 
    + - - - + + + - - - - + + + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    abstract com.google.gson.JsonObjectgetJSON() 
    abstract com.google.gson.JsonObjectgetJSON() 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          CellStyle

          -
          public CellStyle()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          CellStyle

          +
          public CellStyle()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public abstract com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public abstract com.google.gson.JsonObject getJSON()
              +
              +
              Returns:
              JSONObject with the tags for this tableCell for the Cloud Office Print server.
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html index c7573680..314010b0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html @@ -2,251 +2,191 @@ - -CellStyleDocxPpt (cloudofficeprint 21.2.1 API) + +CellStyleDocxPpt + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class CellStyleDocxPpt

+ +

Class CellStyleDocxPpt

-
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        CellStyleDocxPpt​(java.lang.String backgroundColor, - java.lang.String width) +
        CellStyleDocxPpt​(java.lang.String backgroundColor, +java.lang.String width)
        Represents the style of a Word/PowerPoint cell element.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + - - - - + + + + - - - - + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.StringgetBackgroundColor() 
    java.lang.StringgetBackgroundColor() 
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.StringgetWidth() +
    java.lang.StringgetWidth()
    The width manipulation is available from Cloud Office Print 20.2.
    voidsetBackgroundColor​(java.lang.String backgroundColor) 
    voidsetBackgroundColor​(java.lang.String backgroundColor) 
    voidsetWidth​(java.lang.String width) +
    voidsetWidth​(java.lang.String width)
    The width manipulation is available from Cloud Office Print 20.2.
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          CellStyleDocxPpt

          -
          public CellStyleDocxPpt​(java.lang.String backgroundColor,
          -                        java.lang.String width)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            CellStyleDocxPpt

            +
            public CellStyleDocxPpt​(java.lang.String backgroundColor, +java.lang.String width)
            Represents the style of a Word/PowerPoint cell element. Use default value if you don't want to specify an optional argument.
            -
            -
            Parameters:
            +
            +
            Parameters:
            backgroundColor - The background color of the cell (hex format). (Optional)
            width - The width of the cell + unit ( in, cm, px, pt, em and @@ -254,160 +194,120 @@

            CellStyleDocxPpt

            table)). Giving a width of 0 will remove the whole column.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getBackgroundColor

          -
          public java.lang.String getBackgroundColor()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getBackgroundColor

            +
            public java.lang.String getBackgroundColor()
            +
            +
            Returns:
            The background color of the cell (hex format).
            +
          • -
          - - - -
            -
          • -

            setBackgroundColor

            -
            public void setBackgroundColor​(java.lang.String backgroundColor)
            -
            -
            Parameters:
            +
          • +
            +

            setBackgroundColor

            +
            public void setBackgroundColor​(java.lang.String backgroundColor)
            +
            +
            Parameters:
            backgroundColor - The background color of the cell (hex format).
            +
          • -
          - - - -
            -
          • -

            getWidth

            -
            public java.lang.String getWidth()
            +
          • +
            +

            getWidth

            +
            public java.lang.String getWidth()
            The width manipulation is available from Cloud Office Print 20.2. Giving a width of 0 will remove the whole column.
            -
            -
            Returns:
            +
            +
            Returns:
            width The width + unit ( in, cm, px, pt, em and % (% is in respect to the initial width of the table)).
            +
          • -
          - - - -
            -
          • -

            setWidth

            -
            public void setWidth​(java.lang.String width)
            +
          • +
            +

            setWidth

            +
            public void setWidth​(java.lang.String width)
            The width manipulation is available from Cloud Office Print 20.2. Giving a width of 0 will remove the whole column.
            -
            -
            Parameters:
            +
            +
            Parameters:
            width - The width +unit ( in, cm, px, pt, em and % (% is in respect to the initial width of the table)).
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class CellStyle
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this tableCell for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html index da876b01..df2122b8 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html @@ -2,1278 +2,1034 @@ - -CellStyleXlsx (cloudofficeprint 21.2.1 API) + +CellStyleXlsx + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class CellStyleXlsx

+ +

Class CellStyleXlsx

-
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        CellStyleXlsx() +
        CellStyleXlsx()
        Represents the style of an Excell cell element.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          CellStyleXlsx

          -
          public CellStyleXlsx()
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            CellStyleXlsx

            +
            public CellStyleXlsx()
            Represents the style of an Excell cell element. The options can be set with the setter functions.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getCellLocked

          -
          public java.lang.Boolean getCellLocked()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getCellLocked

            +
            public java.lang.Boolean getCellLocked()
            +
            +
            Returns:
            Whether the cell is locked.
            +
          • -
          - - - -
            -
          • -

            setCellLocked

            -
            public void setCellLocked​(java.lang.Boolean cellLocked)
            -
            -
            Parameters:
            +
          • +
            +

            setCellLocked

            +
            public void setCellLocked​(java.lang.Boolean cellLocked)
            +
            +
            Parameters:
            cellLocked - Whether the cell is locked.
            +
          • -
          - - - -
            -
          • -

            getCellHidden

            -
            public java.lang.Boolean getCellHidden()
            -
            -
            Returns:
            +
          • +
            +

            getCellHidden

            +
            public java.lang.Boolean getCellHidden()
            +
            +
            Returns:
            Whether the cell is hidden.
            +
          • -
          - - - -
            -
          • -

            setCellHidden

            -
            public void setCellHidden​(java.lang.Boolean cellHidden)
            -
            -
            Parameters:
            +
          • +
            +

            setCellHidden

            +
            public void setCellHidden​(java.lang.Boolean cellHidden)
            +
            +
            Parameters:
            cellHidden - Whether the cell is hidden.
            +
          • -
          - - - -
            -
          • -

            getCellBackground

            -
            public java.lang.String getCellBackground()
            -
            -
            Returns:
            +
          • +
            +

            getCellBackground

            +
            public java.lang.String getCellBackground()
            +
            +
            Returns:
            Background color of the cell in hex format.
            +
          • -
          - - - -
            -
          • -

            setCellBackground

            -
            public void setCellBackground​(java.lang.String cellBackground)
            -
            -
            Parameters:
            +
          • +
            +

            setCellBackground

            +
            public void setCellBackground​(java.lang.String cellBackground)
            +
            +
            Parameters:
            cellBackground - Background color of the cell in hex format.
            +
          • -
          - - - -
            -
          • -

            getFont

            -
            public java.lang.String getFont()
            -
            -
            Returns:
            +
          • +
            +

            getFont

            +
            public java.lang.String getFont()
            +
            +
            Returns:
            Font of the text in the cell.
            +
          • -
          - - - -
            -
          • -

            setFont

            -
            public void setFont​(java.lang.String font)
            -
            -
            Parameters:
            +
          • +
            +

            setFont

            +
            public void setFont​(java.lang.String font)
            +
            +
            Parameters:
            font - Font of the text in the cell.
            +
          • -
          - - - -
            -
          • -

            getFontSize

            -
            public java.lang.Integer getFontSize()
            -
            -
            Returns:
            +
          • +
            +

            getFontSize

            +
            public java.lang.Integer getFontSize()
            +
            +
            Returns:
            Size of the font.
            +
          • -
          - - - -
            -
          • -

            setFontSize

            -
            public void setFontSize​(java.lang.Integer fontSize)
            -
            -
            Parameters:
            +
          • +
            +

            setFontSize

            +
            public void setFontSize​(java.lang.Integer fontSize)
            +
            +
            Parameters:
            fontSize - Size of the font.
            +
          • -
          - - - -
            -
          • -

            getFontColor

            -
            public java.lang.String getFontColor()
            -
            -
            Returns:
            +
          • +
            +

            getFontColor

            +
            public java.lang.String getFontColor()
            +
            +
            Returns:
            Color of the font.
            +
          • -
          - - - -
            -
          • -

            setFontColor

            -
            public void setFontColor​(java.lang.String fontColor)
            -
            -
            Parameters:
            +
          • +
            +

            setFontColor

            +
            public void setFontColor​(java.lang.String fontColor)
            +
            +
            Parameters:
            fontColor - Color of the font.
            +
          • -
          - - - -
            -
          • -

            getFontItalic

            -
            public java.lang.Boolean getFontItalic()
            -
            -
            Returns:
            +
          • +
            +

            getFontItalic

            +
            public java.lang.Boolean getFontItalic()
            +
            +
            Returns:
            Whether the text is in italic.
            +
          • -
          - - - -
            -
          • -

            setFontItalic

            -
            public void setFontItalic​(java.lang.Boolean fontItalic)
            -
            -
            Parameters:
            +
          • +
            +

            setFontItalic

            +
            public void setFontItalic​(java.lang.Boolean fontItalic)
            +
            +
            Parameters:
            fontItalic - Whether the text is in italic.
            +
          • -
          - - - -
            -
          • -

            getFontBold

            -
            public java.lang.Boolean getFontBold()
            -
            -
            Returns:
            +
          • +
            +

            getFontBold

            +
            public java.lang.Boolean getFontBold()
            +
            +
            Returns:
            Whether the text is in bold.
            +
          • -
          - - - -
            -
          • -

            setFontBold

            -
            public void setFontBold​(java.lang.Boolean fontBold)
            -
            -
            Parameters:
            +
          • +
            +

            setFontBold

            +
            public void setFontBold​(java.lang.Boolean fontBold)
            +
            +
            Parameters:
            fontBold - Whether the text is in bold.
            +
          • -
          - - - -
            -
          • -

            getFontStrike

            -
            public java.lang.Boolean getFontStrike()
            -
            -
            Returns:
            +
          • +
            +

            getFontStrike

            +
            public java.lang.Boolean getFontStrike()
            +
            +
            Returns:
            Whether the text is striked.
            +
          • -
          - - - -
            -
          • -

            setFontStrike

            -
            public void setFontStrike​(java.lang.Boolean fontStrike)
            -
            -
            Parameters:
            +
          • +
            +

            setFontStrike

            +
            public void setFontStrike​(java.lang.Boolean fontStrike)
            +
            +
            Parameters:
            fontStrike - Whether the text is striked.
            +
          • -
          - - - -
            -
          • -

            getFontUnderline

            -
            public java.lang.Boolean getFontUnderline()
            -
            -
            Returns:
            +
          • +
            +

            getFontUnderline

            +
            public java.lang.Boolean getFontUnderline()
            +
            +
            Returns:
            Whether the text is underlined.
            +
          • -
          - - - -
            -
          • -

            setFontUnderline

            -
            public void setFontUnderline​(java.lang.Boolean fontUnderline)
            -
            -
            Parameters:
            +
          • +
            +

            setFontUnderline

            +
            public void setFontUnderline​(java.lang.Boolean fontUnderline)
            +
            +
            Parameters:
            fontUnderline - Whether the text is underlined.
            +
          • -
          - - - -
            -
          • -

            getFontSuperscript

            -
            public java.lang.Boolean getFontSuperscript()
            -
            -
            Returns:
            +
          • +
            +

            getFontSuperscript

            +
            public java.lang.Boolean getFontSuperscript()
            +
            +
            Returns:
            Whether the text is a superscript.
            +
          • -
          - - - -
            -
          • -

            setFontSuperscript

            -
            public void setFontSuperscript​(java.lang.Boolean fontSuperscript)
            -
            -
            Parameters:
            +
          • +
            +

            setFontSuperscript

            +
            public void setFontSuperscript​(java.lang.Boolean fontSuperscript)
            +
            +
            Parameters:
            fontSuperscript - Whether the text is a superscript.
            +
          • -
          - - - -
            -
          • -

            getFontSubscript

            -
            public java.lang.Boolean getFontSubscript()
            -
            -
            Returns:
            +
          • +
            +

            getFontSubscript

            +
            public java.lang.Boolean getFontSubscript()
            +
            +
            Returns:
            Whether the text is a subscript.
            +
          • -
          - - - -
            -
          • -

            setFontSubscript

            -
            public void setFontSubscript​(java.lang.Boolean fontSubscript)
            -
            -
            Parameters:
            +
          • +
            +

            setFontSubscript

            +
            public void setFontSubscript​(java.lang.Boolean fontSubscript)
            +
            +
            Parameters:
            fontSubscript - Whether the text is a subscript.
            +
          • -
          - - - -
            -
          • -

            getBorderTop

            -
            public java.lang.String getBorderTop()
            -
            -
            Returns:
            +
          • +
            +

            getBorderTop

            +
            public java.lang.String getBorderTop()
            +
            +
            Returns:
            Top border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            setBorderTop

            -
            public void setBorderTop​(java.lang.String borderTop)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderTop

            +
            public void setBorderTop​(java.lang.String borderTop)
            +
            +
            Parameters:
            borderTop - Top border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            getBorderTopColor

            -
            public java.lang.String getBorderTopColor()
            -
            -
            Returns:
            +
          • +
            +

            getBorderTopColor

            +
            public java.lang.String getBorderTopColor()
            +
            +
            Returns:
            Top border color.
            +
          • -
          - - - -
            -
          • -

            setBorderTopColor

            -
            public void setBorderTopColor​(java.lang.String borderTopColor)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderTopColor

            +
            public void setBorderTopColor​(java.lang.String borderTopColor)
            +
            +
            Parameters:
            borderTopColor - Top border color.
            +
          • -
          - - - -
            -
          • -

            getBorderBottom

            -
            public java.lang.String getBorderBottom()
            -
            -
            Returns:
            +
          • +
            +

            getBorderBottom

            +
            public java.lang.String getBorderBottom()
            +
            +
            Returns:
            Bottom border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            setBorderBottom

            -
            public void setBorderBottom​(java.lang.String borderBottom)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderBottom

            +
            public void setBorderBottom​(java.lang.String borderBottom)
            +
            +
            Parameters:
            borderBottom - Bottom border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            getBorderBottomColor

            -
            public java.lang.String getBorderBottomColor()
            -
            -
            Returns:
            +
          • +
            +

            getBorderBottomColor

            +
            public java.lang.String getBorderBottomColor()
            +
            +
            Returns:
            Bottom border color.
            +
          • -
          - - - -
            -
          • -

            setBorderBottomColor

            -
            public void setBorderBottomColor​(java.lang.String borderBottomColor)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderBottomColor

            +
            public void setBorderBottomColor​(java.lang.String borderBottomColor)
            +
            +
            Parameters:
            borderBottomColor - Bottom border color.
            +
          • -
          - - - -
            -
          • -

            getBorderLeft

            -
            public java.lang.String getBorderLeft()
            -
            -
            Returns:
            +
          • +
            +

            getBorderLeft

            +
            public java.lang.String getBorderLeft()
            +
            +
            Returns:
            Left border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            setBorderLeft

            -
            public void setBorderLeft​(java.lang.String borderLeft)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderLeft

            +
            public void setBorderLeft​(java.lang.String borderLeft)
            +
            +
            Parameters:
            borderLeft - Left border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            getBorderLeftColor

            -
            public java.lang.String getBorderLeftColor()
            -
            -
            Returns:
            +
          • +
            +

            getBorderLeftColor

            +
            public java.lang.String getBorderLeftColor()
            +
            +
            Returns:
            Left border color.
            +
          • -
          - - - -
            -
          • -

            setBorderLeftColor

            -
            public void setBorderLeftColor​(java.lang.String borderLeftColor)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderLeftColor

            +
            public void setBorderLeftColor​(java.lang.String borderLeftColor)
            +
            +
            Parameters:
            borderLeftColor - Left border color.
            +
          • -
          - - - -
            -
          • -

            getBorderRight

            -
            public java.lang.String getBorderRight()
            -
            -
            Returns:
            +
          • +
            +

            getBorderRight

            +
            public java.lang.String getBorderRight()
            +
            +
            Returns:
            Right border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            setBorderRight

            -
            public void setBorderRight​(java.lang.String borderRight)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderRight

            +
            public void setBorderRight​(java.lang.String borderRight)
            +
            +
            Parameters:
            borderRight - Right border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            getBorderRightColor

            -
            public java.lang.String getBorderRightColor()
            -
            -
            Returns:
            +
          • +
            +

            getBorderRightColor

            +
            public java.lang.String getBorderRightColor()
            +
            +
            Returns:
            Right border color.
            +
          • -
          - - - -
            -
          • -

            setBorderRightColor

            -
            public void setBorderRightColor​(java.lang.String borderRightColor)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderRightColor

            +
            public void setBorderRightColor​(java.lang.String borderRightColor)
            +
            +
            Parameters:
            borderRightColor - Right border color.
            +
          • -
          - - - -
            -
          • -

            getBorderDiagonal

            -
            public java.lang.String getBorderDiagonal()
            -
            -
            Returns:
            +
          • +
            +

            getBorderDiagonal

            +
            public java.lang.String getBorderDiagonal()
            +
            +
            Returns:
            Diagonal border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            setBorderDiagonal

            -
            public void setBorderDiagonal​(java.lang.String borderDiagonal)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderDiagonal

            +
            public void setBorderDiagonal​(java.lang.String borderDiagonal)
            +
            +
            Parameters:
            borderDiagonal - Diagonal border style : dashed / dashDot / hair / dashDotDot / dotted / mediumDashDot / mediumDashed / mediumDashDotDot / slantDashDot / medium / double / thick ]
            +
          • -
          - - - -
            -
          • -

            getBorderDiagonalDirection

            -
            public java.lang.String getBorderDiagonalDirection()
            -
            -
            Returns:
            +
          • +
            +

            getBorderDiagonalDirection

            +
            public java.lang.String getBorderDiagonalDirection()
            +
            +
            Returns:
            Direction of the diagonal border : [up-wards|down-wards| both]
            +
          • -
          - - - -
            -
          • -

            setBorderDiagonalDirection

            -
            public void setBorderDiagonalDirection​(java.lang.String borderDiagonalDirection)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderDiagonalDirection

            +
            public void setBorderDiagonalDirection​(java.lang.String borderDiagonalDirection)
            +
            +
            Parameters:
            borderDiagonalDirection - Direction of the diagonal border : [up-wards|down-wards| both]
            +
          • -
          - - - -
            -
          • -

            getBorderDiagonalColor

            -
            public java.lang.String getBorderDiagonalColor()
            -
            -
            Returns:
            +
          • +
            +

            getBorderDiagonalColor

            +
            public java.lang.String getBorderDiagonalColor()
            +
            +
            Returns:
            Color of the diagonal border.
            +
          • -
          - - - -
            -
          • -

            setBorderDiagonalColor

            -
            public void setBorderDiagonalColor​(java.lang.String borderDiagonalColor)
            -
            -
            Parameters:
            +
          • +
            +

            setBorderDiagonalColor

            +
            public void setBorderDiagonalColor​(java.lang.String borderDiagonalColor)
            +
            +
            Parameters:
            borderDiagonalColor - Color of the diagonal border.
            +
          • -
          - - - -
            -
          • -

            getTextHAlignment

            -
            public java.lang.String getTextHAlignment()
            -
            -
            Returns:
            +
          • +
            +

            getTextHAlignment

            +
            public java.lang.String getTextHAlignment()
            +
            +
            Returns:
            Horizontal text alignment : [top|bottom|center|justify]
            +
          • -
          - - - -
            -
          • -

            setTextHAlignment

            -
            public void setTextHAlignment​(java.lang.String textHAlignment)
            -
            -
            Parameters:
            +
          • +
            +

            setTextHAlignment

            +
            public void setTextHAlignment​(java.lang.String textHAlignment)
            +
            +
            Parameters:
            textHAlignment - Horizontal text alignment : [top|bottom|center|justify]
            +
          • -
          - - - -
            -
          • -

            getTextVAlignment

            -
            public java.lang.String getTextVAlignment()
            -
            -
            Returns:
            +
          • +
            +

            getTextVAlignment

            +
            public java.lang.String getTextVAlignment()
            +
            +
            Returns:
            Vertical text alignment.
            +
          • -
          - - - -
            -
          • -

            setTextVAlignment

            -
            public void setTextVAlignment​(java.lang.String textVAlignment)
            -
            -
            Parameters:
            +
          • +
            +

            setTextVAlignment

            +
            public void setTextVAlignment​(java.lang.String textVAlignment)
            +
            +
            Parameters:
            textVAlignment - Vertical text alignment.
            +
          • -
          - - - -
            -
          • -

            getTextRotation

            -
            public java.lang.Integer getTextRotation()
            -
            -
            Returns:
            +
          • +
            +

            getTextRotation

            +
            public java.lang.Integer getTextRotation()
            +
            +
            Returns:
            Rotation of the text.
            +
          • -
          - - - -
            -
          • -

            setTextRotation

            -
            public void setTextRotation​(java.lang.Integer textRotation)
            -
            -
            Parameters:
            +
          • +
            +

            setTextRotation

            +
            public void setTextRotation​(java.lang.Integer textRotation)
            +
            +
            Parameters:
            textRotation - Rotation of the text.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class CellStyle
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this tableCell for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html index 8a4d0ac6..5849da13 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html @@ -2,395 +2,294 @@ - -TableCell (cloudofficeprint 21.2.1 API) + +TableCell + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class TableCell

+ +

Class TableCell

-
- -
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.Cells.TableCell
    +
    +
    +

    -
    public class TableCell
    +
    public class TableCell
     extends RenderElement
    Only supported in Word, Excel, Powerpoint templates (they all have tables with cells). Represents a cell element. It includes the name for the tag, the value and optionally the cell background color and width.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        TableCell​(java.lang.String name, - java.lang.String value, - CellStyle cellStyle) +
        TableCell​(java.lang.String name, +java.lang.String value, +CellStyle cellStyle)
        Represents a cell element.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          TableCell

          -
          public TableCell​(java.lang.String name,
          -                 java.lang.String value,
          -                 CellStyle cellStyle)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            TableCell

            +
            public TableCell​(java.lang.String name, +java.lang.String value, +CellStyle cellStyle)
            Represents a cell element. It includes the name for the tag, the value and optionally the cell style.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of this element (for the tempalteTag).
            value - Value that will replace the tag.
            cellStyle - The style of the cell. (optional)
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getCellStyle

          -
          public CellStyle getCellStyle()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getCellStyle

            +
            public CellStyle getCellStyle()
            +
            +
            Returns:
            Style of the cell.
            +
          • -
          - - - -
            -
          • -

            setCellStyle

            -
            public void setCellStyle​(CellStyle cellStyle)
            -
            -
            Parameters:
            +
          • +
            +

            setCellStyle

            +
            public void setCellStyle​(CellStyle cellStyle)
            +
            +
            Parameters:
            cellStyle - Style of the cell.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this tableCell for the Cloud Office Print server.
            +
          • -
          - - - -
            -
          • -

            getTemplateTags

            -
            public java.util.Set<java.lang.String> getTemplateTags()
            -
            -
            Specified by:
            +
          • +
            +

            getTemplateTags

            +
            public java.util.Set<java.lang.String> getTemplateTags()
            +
            +
            Specified by:
            getTemplateTags in class RenderElement
            -
            Returns:
            +
            Returns:
            An immutable set containing all available template tags this element can replace.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html index 9fb0ae5f..c16f9c08 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html @@ -2,183 +2,123 @@ - -com.cloudofficeprint.RenderElements.Cells (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Cells + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.RenderElements.Cells

-
-
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html index b9695778..ed90f7e5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html @@ -2,169 +2,103 @@ - -com.cloudofficeprint.RenderElements.Cells Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Cells Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.RenderElements.Cells

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html index de7154ca..ec2009a9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html @@ -2,818 +2,649 @@ - -ChartAxisOptions (cloudofficeprint 21.2.1 API) + +ChartAxisOptions + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class ChartAxisOptions

+ +

Class ChartAxisOptions

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    +

    -
    public class ChartAxisOptions
    +
    public class ChartAxisOptions
     extends java.lang.Object
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - - - - - + + + + + + + +
        Constructors
        ConstructorDescription
        ChartAxisOptions() +ConstructorDescription
        ChartAxisOptions()
        Represents the options for an axis of a chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ChartAxisOptions

          -
          public ChartAxisOptions()
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ChartAxisOptions

            +
            public ChartAxisOptions()
            Represents the options for an axis of a chart. Options can be populated with the setter functions.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getOrientation

          -
          public java.lang.String getOrientation()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getOrientation

            +
            public java.lang.String getOrientation()
            +
            +
            Returns:
            Orientation of the axis : minMax or maxMin.
            +
          • -
          - - - -
            -
          • -

            setOrientation

            -
            public void setOrientation​(java.lang.String orientation)
            -
            -
            Parameters:
            +
          • +
            +

            setOrientation

            +
            public void setOrientation​(java.lang.String orientation)
            +
            +
            Parameters:
            orientation - Orientation of the axis : minMax or maxMin.
            +
          • -
          - - - -
            -
          • -

            getMin

            -
            public java.lang.Float getMin()
            -
            -
            Returns:
            +
          • +
            +

            getMin

            +
            public java.lang.Float getMin()
            +
            +
            Returns:
            Minimum of the axis.
            +
          • -
          - - - -
            -
          • -

            setMin

            -
            public void setMin​(java.lang.Float min)
            -
            -
            Parameters:
            +
          • +
            +

            setMin

            +
            public void setMin​(java.lang.Float min)
            +
            +
            Parameters:
            min - Minimum of the axis.
            +
          • -
          - - - -
            -
          • -

            getMax

            -
            public java.lang.Float getMax()
            -
            -
            Returns:
            +
          • +
            +

            getMax

            +
            public java.lang.Float getMax()
            +
            +
            Returns:
            Maximum of the axis.
            +
          • -
          - - - -
            -
          • -

            setMax

            -
            public void setMax​(java.lang.Float max)
            -
            -
            Parameters:
            +
          • +
            +

            setMax

            +
            public void setMax​(java.lang.Float max)
            +
            +
            Parameters:
            max - Maximum of the axis.
            +
          • -
          - - - -
            -
          • -

            getDate

            -
            public ChartDateOptions getDate()
            -
            -
            Returns:
            +
          • +
            +

            getDate

            +
            public ChartDateOptions getDate()
            +
            +
            Returns:
            Date options, only for stock charts.
            +
          • -
          - - - -
            -
          • -

            setDateOptions

            -
            public void setDateOptions​(ChartDateOptions date)
            -
            -
            Parameters:
            +
          • +
            +

            setDateOptions

            +
            public void setDateOptions​(ChartDateOptions date)
            +
            +
            Parameters:
            date - Date options, only for stock charts.
            +
          • -
          - - - -
            -
          • -

            getTitle

            -
            public java.lang.String getTitle()
            -
            -
            Returns:
            +
          • +
            +

            getTitle

            +
            public java.lang.String getTitle()
            +
            +
            Returns:
            Tittle of the axis.
            +
          • -
          - - - -
            -
          • -

            setTitle

            -
            public void setTitle​(java.lang.String title)
            -
            -
            Parameters:
            +
          • +
            +

            setTitle

            +
            public void setTitle​(java.lang.String title)
            +
            +
            Parameters:
            title - Tittle of the axis.
            +
          • -
          - - - -
            -
          • -

            getValues

            -
            public java.lang.Boolean getValues()
            -
            -
            Returns:
            +
          • +
            +

            getValues

            +
            public java.lang.Boolean getValues()
            +
            +
            Returns:
            Whether to show or not the values of the axis.
            +
          • -
          - - - -
            -
          • -

            setValues

            -
            public void setValues​(java.lang.Boolean values)
            -
            -
            Parameters:
            +
          • +
            +

            setValues

            +
            public void setValues​(java.lang.Boolean values)
            +
            +
            Parameters:
            values - Whether to show or not the values of the axis.
            +
          • -
          - - - -
            -
          • -

            getValuesStyle

            -
            public ChartTextStyle getValuesStyle()
            -
            -
            Returns:
            +
          • +
            +

            getValuesStyle

            +
            public ChartTextStyle getValuesStyle()
            +
            +
            Returns:
            Axis value styles.
            +
          • -
          - - - -
            -
          • -

            setValuesStyle

            -
            public void setValuesStyle​(ChartTextStyle valuesStyle)
            -
            -
            Parameters:
            +
          • +
            +

            setValuesStyle

            +
            public void setValuesStyle​(ChartTextStyle valuesStyle)
            +
            +
            Parameters:
            valuesStyle - Axis value styles.
            +
          • -
          - - - -
            -
          • -

            getTitleStyle

            -
            public ChartTextStyle getTitleStyle()
            -
            -
            Returns:
            +
          • +
            +

            getTitleStyle

            +
            public ChartTextStyle getTitleStyle()
            +
            +
            Returns:
            Style options of the title.
            +
          • -
          - - - -
            -
          • -

            setTitleStyle

            -
            public void setTitleStyle​(ChartTextStyle titleStyle)
            -
            -
            Parameters:
            +
          • +
            +

            setTitleStyle

            +
            public void setTitleStyle​(ChartTextStyle titleStyle)
            +
            +
            Parameters:
            titleStyle - Style options of the title.
            +
          • -
          - - - -
            -
          • -

            getTitleRotation

            -
            public java.lang.Integer getTitleRotation()
            -
            -
            Returns:
            +
          • +
            +

            getTitleRotation

            +
            public java.lang.Integer getTitleRotation()
            +
            +
            Returns:
            Title rotation in degrees, clockwise from horizontal axis.
            +
          • -
          - - - -
            -
          • -

            setTitleRotation

            -
            public void setTitleRotation​(java.lang.Integer titleRotation)
            -
            -
            Parameters:
            +
          • +
            +

            setTitleRotation

            +
            public void setTitleRotation​(java.lang.Integer titleRotation)
            +
            +
            Parameters:
            titleRotation - Title rotation in degrees, clockwise from horizontal axis.
            +
          • -
          - - - -
            -
          • -

            getMajorGridLines

            -
            public java.lang.Boolean getMajorGridLines()
            -
            -
            Returns:
            +
          • +
            +

            getMajorGridLines

            +
            public java.lang.Boolean getMajorGridLines()
            +
            +
            Returns:
            Whether to show major grid lines or not.
            +
          • -
          - - - -
            -
          • -

            setMajorGridLines

            -
            public void setMajorGridLines​(java.lang.Boolean majorGridLines)
            -
            -
            Parameters:
            +
          • +
            +

            setMajorGridLines

            +
            public void setMajorGridLines​(java.lang.Boolean majorGridLines)
            +
            +
            Parameters:
            majorGridLines - Whether to show major grid lines or not.
            +
          • -
          - - - -
            -
          • -

            getMajorUnit

            -
            public java.lang.Float getMajorUnit()
            -
            -
            Returns:
            +
          • +
            +

            getMajorUnit

            +
            public java.lang.Float getMajorUnit()
            +
            +
            Returns:
            Automatic when undefined, spacing between major grid lines and axis values.
            +
          • -
          - - - -
            -
          • -

            setMajorUnit

            -
            public void setMajorUnit​(java.lang.Float majorUnit)
            -
            -
            Parameters:
            +
          • +
            +

            setMajorUnit

            +
            public void setMajorUnit​(java.lang.Float majorUnit)
            +
            +
            Parameters:
            majorUnit - Automatic when undefined, spacing between major grid lines and axis values.
            +
          • -
          - - - -
            -
          • -

            getMinorGridLines

            -
            public java.lang.Boolean getMinorGridLines()
            -
            -
            Returns:
            +
          • +
            +

            getMinorGridLines

            +
            public java.lang.Boolean getMinorGridLines()
            +
            +
            Returns:
            Whether to show minor grid lines or not.
            +
          • -
          - - - -
            -
          • -

            setMinorGridLines

            -
            public void setMinorGridLines​(java.lang.Boolean minorGridLines)
            -
            -
            Parameters:
            +
          • +
            +

            setMinorGridLines

            +
            public void setMinorGridLines​(java.lang.Boolean minorGridLines)
            +
            +
            Parameters:
            minorGridLines - Whether to show minor grid lines or not.
            +
          • -
          - - - -
            -
          • -

            getMinorUnit

            -
            public java.lang.Float getMinorUnit()
            -
            -
            Returns:
            +
          • +
            +

            getMinorUnit

            +
            public java.lang.Float getMinorUnit()
            +
            +
            Returns:
            Automatic when undefined, spacing between minor grid lines.
            +
          • -
          - - - -
            -
          • -

            setMinorUnit

            -
            public void setMinorUnit​(java.lang.Float minorUnit)
            -
            -
            Parameters:
            +
          • +
            +

            setMinorUnit

            +
            public void setMinorUnit​(java.lang.Float minorUnit)
            +
            +
            Parameters:
            minorUnit - Automatic when undefined, spacing between minor grid lines.
            +
          • -
          - - - -
            -
          • -

            getFormatCode

            -
            public java.lang.String getFormatCode()
            -
            -
            Returns:
            +
          • +
            +

            getFormatCode

            +
            public java.lang.String getFormatCode()
            +
            +
            Returns:
            Format code for axis data, "General", "Number" ...
            +
          • -
          - - - -
            -
          • -

            setFormatCode

            -
            public void setFormatCode​(java.lang.String formatCode)
            -
            -
            Parameters:
            +
          • +
            +

            setFormatCode

            +
            public void setFormatCode​(java.lang.String formatCode)
            +
            +
            Parameters:
            formatCode - Format code for axis data, "General", "Number" ...
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html index d6f7aa94..2ddd7e07 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html @@ -2,265 +2,208 @@ - -ChartDateOptions (cloudofficeprint 21.2.1 API) + +ChartDateOptions + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class ChartDateOptions

+ +

Class ChartDateOptions

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    +

    -
    public class ChartDateOptions
    +
    public class ChartDateOptions
     extends java.lang.Object
    This class represents date options, only applicable for stock charts.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        ChartDateOptions​(java.lang.String format, - java.lang.String code, - java.lang.String unit, - java.lang.Integer step) +
        ChartDateOptions​(java.lang.String format, +java.lang.String code, +java.lang.String unit, +java.lang.Integer step)
        This object represents the date options for a chart.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.StringgetCode() 
    java.lang.StringgetCode() 
    java.lang.StringgetFormat() 
    java.lang.StringgetFormat() 
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.IntegergetStep() 
    java.lang.IntegergetStep() 
    java.lang.StringgetUnit() 
    java.lang.StringgetUnit() 
    voidsetCode​(java.lang.String code) 
    voidsetCode​(java.lang.String code) 
    voidsetFormat​(java.lang.String format) 
    voidsetFormat​(java.lang.String format) 
    voidsetStep​(java.lang.Integer step) 
    voidsetStep​(java.lang.Integer step) 
    voidsetUnit​(java.lang.String unit) 
    voidsetUnit​(java.lang.String unit) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ChartDateOptions

          -
          public ChartDateOptions​(java.lang.String format,
          -                        java.lang.String code,
          -                        java.lang.String unit,
          -                        java.lang.Integer step)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ChartDateOptions

            +
            public ChartDateOptions​(java.lang.String format, +java.lang.String code, +java.lang.String unit, +java.lang.Integer step)
            This object represents the date options for a chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            format - Date format e.g. : unix.
            code - Code format of the date. e.g. : mm/yy
            unit - The unit to be used for spacing the axis values e.g. : months.
            @@ -268,207 +211,155 @@

            ChartDateOptions

            (automatic if undefined). This option is not supported in LibreOffice.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getFormat

          -
          public java.lang.String getFormat()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getFormat

            +
            public java.lang.String getFormat()
            +
            +
            Returns:
            Date format e.g. : unix.
            +
          • -
          - - - -
            -
          • -

            setFormat

            -
            public void setFormat​(java.lang.String format)
            -
            -
            Parameters:
            +
          • +
            +

            setFormat

            +
            public void setFormat​(java.lang.String format)
            +
            +
            Parameters:
            format - Date format e.g. : unix.
            +
          • -
          - - - -
            -
          • -

            getCode

            -
            public java.lang.String getCode()
            -
            -
            Returns:
            +
          • +
            +

            getCode

            +
            public java.lang.String getCode()
            +
            +
            Returns:
            Code format of the date. e.g. : mm/yy
            +
          • -
          - - - -
            -
          • -

            setCode

            -
            public void setCode​(java.lang.String code)
            -
            -
            Parameters:
            +
          • +
            +

            setCode

            +
            public void setCode​(java.lang.String code)
            +
            +
            Parameters:
            code - Code format of the date. e.g. : mm/yy
            +
          • -
          - - - -
            -
          • -

            getUnit

            -
            public java.lang.String getUnit()
            -
            -
            Returns:
            +
          • +
            +

            getUnit

            +
            public java.lang.String getUnit()
            +
            +
            Returns:
            The unit to be used for spacing the axis values e.g. : months.
            +
          • -
          - - - -
            -
          • -

            setUnit

            -
            public void setUnit​(java.lang.String unit)
            -
            -
            Parameters:
            +
          • +
            +

            setUnit

            +
            public void setUnit​(java.lang.String unit)
            +
            +
            Parameters:
            unit - The unit to be used for spacing the axis values e.g. : months.
            +
          • -
          - - - -
            -
          • -

            getStep

            -
            public java.lang.Integer getStep()
            -
            -
            Returns:
            +
          • +
            +

            getStep

            +
            public java.lang.Integer getStep()
            +
            +
            Returns:
            How many units should be used for spacing the axis values (automatic if undefined). This option is not supported in LibreOffice.
            +
          • -
          - - - -
            -
          • -

            setStep

            -
            public void setStep​(java.lang.Integer step)
            -
            -
            Parameters:
            +
          • +
            +

            setStep

            +
            public void setStep​(java.lang.Integer step)
            +
            +
            Parameters:
            step - How many units should be used for spacing the axis values (automatic if undefined). This option is not supported in LibreOffice.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html index ea597588..8ce00d99 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html @@ -2,946 +2,779 @@ - -ChartOptions (cloudofficeprint 21.2.1 API) + +ChartOptions + + + - + + - - - - - + + - - -
+
+ - +
+
- -

Class ChartOptions

+ +

Class ChartOptions

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.RenderElements.Charts.ChartOptions
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +

    -
    public class ChartOptions
    +
    public class ChartOptions
     extends java.lang.Object
    This class represents the chart options.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - - - - - + + + + + + + +
        Constructors
        ConstructorDescription
        ChartOptions() +ConstructorDescription
        ChartOptions()
        This object represents the options for a chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ChartOptions

          -
          public ChartOptions()
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ChartOptions

            +
            public ChartOptions()
            This object represents the options for a chart. You can populate the options with the setter functions.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getXAxis

          -
          public ChartAxisOptions getXAxis()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getXAxis

            +
            public ChartAxisOptions getXAxis()
            +
            +
            Returns:
            The options for the x-axis.
            +
          • -
          - - - -
            -
          • -

            setXAxisOptions

            -
            public void setXAxisOptions​(ChartAxisOptions xAxis)
            -
            -
            Parameters:
            +
          • +
            +

            setXAxisOptions

            +
            public void setXAxisOptions​(ChartAxisOptions xAxis)
            +
            +
            Parameters:
            xAxis - The options for the x-axis.
            +
          • -
          - - - - - - - -
            -
          • -

            setYAxisOptions

            -
            public void setYAxisOptions​(ChartAxisOptions yAxis)
            -
            -
            Parameters:
            +
          • +
            +

            setYAxisOptions

            +
            public void setYAxisOptions​(ChartAxisOptions yAxis)
            +
            +
            Parameters:
            yAxis - The options for the y-axis.
            +
          • -
          - - - -
            -
          • -

            getY2AxisOptions

            -
            public ChartAxisOptions getY2AxisOptions()
            -
            -
            Returns:
            +
          • +
            +

            getY2AxisOptions

            +
            public ChartAxisOptions getY2AxisOptions()
            +
            +
            Returns:
            The options for the second y-axis.
            +
          • -
          - - - -
            -
          • -

            setY2AxisOptions

            -
            public void setY2AxisOptions​(ChartAxisOptions y2Axis)
            -
            -
            Parameters:
            +
          • +
            +

            setY2AxisOptions

            +
            public void setY2AxisOptions​(ChartAxisOptions y2Axis)
            +
            +
            Parameters:
            y2Axis - The options for the y2-axis.
            +
          • -
          - - - -
            -
          • -

            getWidth

            -
            public java.lang.Integer getWidth()
            -
            -
            Returns:
            +
          • +
            +

            getWidth

            +
            public java.lang.Integer getWidth()
            +
            +
            Returns:
            Width of the chart.
            +
          • -
          - - - -
            -
          • -

            setWidth

            -
            public void setWidth​(java.lang.Integer width)
            -
            -
            Parameters:
            +
          • +
            +

            setWidth

            +
            public void setWidth​(java.lang.Integer width)
            +
            +
            Parameters:
            width - Width of the chart.
            +
          • -
          - - - -
            -
          • -

            getHeight

            -
            public java.lang.Integer getHeight()
            -
            -
            Returns:
            +
          • +
            +

            getHeight

            +
            public java.lang.Integer getHeight()
            +
            +
            Returns:
            Height of the chart.
            +
          • -
          - - - -
            -
          • -

            setHeight

            -
            public void setHeight​(java.lang.Integer height)
            -
            -
            Parameters:
            +
          • +
            +

            setHeight

            +
            public void setHeight​(java.lang.Integer height)
            +
            +
            Parameters:
            height - Height of the chart.
            +
          • -
          - - - -
            -
          • -

            getBorder

            -
            public java.lang.Boolean getBorder()
            -
            -
            Returns:
            +
          • +
            +

            getBorder

            +
            public java.lang.Boolean getBorder()
            +
            +
            Returns:
            Whether the chart should have a border.
            +
          • -
          - - - -
            -
          • -

            setBorder

            -
            public void setBorder​(java.lang.Boolean border)
            -
            -
            Parameters:
            +
          • +
            +

            setBorder

            +
            public void setBorder​(java.lang.Boolean border)
            +
            +
            Parameters:
            border - Whether the chart should have a border.
            +
          • -
          - - - -
            -
          • -

            getRoundedCorners

            -
            public java.lang.Boolean getRoundedCorners()
            -
            -
            Returns:
            +
          • +
            +

            getRoundedCorners

            +
            public java.lang.Boolean getRoundedCorners()
            +
            +
            Returns:
            Whether the chart should have rounded borders.
            +
          • -
          - - - -
            -
          • -

            setRoundedCorners

            -
            public void setRoundedCorners​(java.lang.Boolean roundedCorners)
            -
            -
            Parameters:
            +
          • +
            +

            setRoundedCorners

            +
            public void setRoundedCorners​(java.lang.Boolean roundedCorners)
            +
            +
            Parameters:
            roundedCorners - Whether the chart should have rounded borders.
            +
          • -
          - - - -
            -
          • -

            getBackgroundColor

            -
            public java.lang.String getBackgroundColor()
            +
          • +
            +

            getBackgroundColor

            +
            public java.lang.String getBackgroundColor()
            Note: displaying rounded corners is not supported by LibreOffice.
            -
            -
            Returns:
            +
            +
            Returns:
            Background color of the entire chart.
            +
          • -
          - - - -
            -
          • -

            setBackgroundColor

            -
            public void setBackgroundColor​(java.lang.String backgroundColor)
            +
          • +
            +

            setBackgroundColor

            +
            public void setBackgroundColor​(java.lang.String backgroundColor)
            Note: displaying rounded corners is not supported by LibreOffice.
            -
            -
            Parameters:
            +
            +
            Parameters:
            backgroundColor - Background color of the entire chart.
            +
          • -
          - - - -
            -
          • -

            getBackgroundOpacity

            -
            public java.lang.Integer getBackgroundOpacity()
            +
          • +
            +

            getBackgroundOpacity

            +
            public java.lang.Integer getBackgroundOpacity()
            Note: backgroundOpacity is ignored if backgroundColor is not specified or if backgroundColor is specified in a color space which includes an alpha channel (e.g. rgba(0,191,255,0.5)). In the latter case, the alpha channel in backgroundColor is used.
            -
            -
            Returns:
            +
            +
            Returns:
            The opacity of the entire chart.
            +
          • -
          - - - -
            -
          • -

            setBackgroundOpacity

            -
            public void setBackgroundOpacity​(java.lang.Integer backgroundOpacity)
            +
          • +
            +

            setBackgroundOpacity

            +
            public void setBackgroundOpacity​(java.lang.Integer backgroundOpacity)
            Note: backgroundOpacity is ignored if backgroundColor is not specified or if backgroundColor is specified in a color space which includes an alpha channel (e.g. rgba(0,191,255,0.5)). In the latter case, the alpha channel in backgroundColor is used.
            -
            -
            Parameters:
            +
            +
            Parameters:
            backgroundOpacity - The opacity of the entire chart.
            +
          • -
          - - - -
            -
          • -

            getTitle

            -
            public java.lang.String getTitle()
            -
            -
            Returns:
            +
          • +
            +

            getTitle

            +
            public java.lang.String getTitle()
            +
            +
            Returns:
            Title of the chart.
            +
          • -
          - - - -
            -
          • -

            setTitle

            -
            public void setTitle​(java.lang.String title)
            -
            -
            Parameters:
            +
          • +
            +

            setTitle

            +
            public void setTitle​(java.lang.String title)
            +
            +
            Parameters:
            title - Title of the chart.
            +
          • -
          - - - -
            -
          • -

            getTitleStyle

            -
            public ChartTextStyle getTitleStyle()
            -
            -
            Returns:
            +
          • +
            +

            getTitleStyle

            +
            public ChartTextStyle getTitleStyle()
            +
            +
            Returns:
            Style of the title of the chart.
            +
          • -
          - - - -
            -
          • -

            setTitleStyle

            -
            public void setTitleStyle​(ChartTextStyle titleStyle)
            -
            -
            Parameters:
            +
          • +
            +

            setTitleStyle

            +
            public void setTitleStyle​(ChartTextStyle titleStyle)
            +
            +
            Parameters:
            titleStyle - Style of the title of the chart.
            +
          • -
          - - - -
            -
          • -

            getShowLegend

            -
            public java.lang.Boolean getShowLegend()
            -
            -
            Returns:
            +
          • +
            +

            getShowLegend

            +
            public java.lang.Boolean getShowLegend()
            +
            +
            Returns:
            Whether the legend should be shown.
            +
          • -
          - - - -
            -
          • -

            getLegendPosition

            -
            public java.lang.String getLegendPosition()
            -
            -
            Returns:
            +
          • +
            +

            getLegendPosition

            +
            public java.lang.String getLegendPosition()
            +
            +
            Returns:
            Position of the legend. 'l' for left, 'r' right, 'b' bottom, 't' top
            +
          • -
          - - - -
            -
          • -

            getLegendStyle

            -
            public ChartTextStyle getLegendStyle()
            -
            -
            Returns:
            +
          • +
            +

            getLegendStyle

            +
            public ChartTextStyle getLegendStyle()
            +
            +
            Returns:
            Style for the legend text.
            +
          • -
          - - - -
            -
          • -

            setLegend

            -
            public void setLegend​(java.lang.String position,
            -                      ChartTextStyle style)
            +
          • +
            +

            setLegend

            +
            public void setLegend​(java.lang.String position, +ChartTextStyle style)
            Turns the legend on. Use null for the parameters if you don't want to specify them.
            -
            -
            Parameters:
            +
            +
            Parameters:
            position - Position of the legend. 'l' for left, 'r' right, 'b' bottom, 't' top
            style - Style for the legend text.
            +
          • -
          - - - -
            -
          • -

            removeLegend

            -
            public void removeLegend()
            +
          • +
            +

            removeLegend

            +
            public void removeLegend()
            Turns the legend of.
            +
          • -
          - - - -
            -
          • -

            getShowDataLabels

            -
            public java.lang.Boolean getShowDataLabels()
            +
          • +
            +

            getShowDataLabels

            +
            public java.lang.Boolean getShowDataLabels()
            Default true for pie/pie3d and doughnut.
            -
            -
            Returns:
            +
            +
            Returns:
            Whether to show data labels on the chart.
            +
          • -
          - - - -
            -
          • -

            getSeparator

            -
            public java.lang.String getSeparator()
            -
            -
            Returns:
            +
          • +
            +

            getSeparator

            +
            public java.lang.String getSeparator()
            +
            +
            Returns:
            Seperator : can be either false or anything else for example \n or \t or ; or (, if false).
            +
          • -
          - - - -
            -
          • -

            getShowSeriesName

            -
            public java.lang.Boolean getShowSeriesName()
            -
            -
            Returns:
            +
          • +
            +

            getShowSeriesName

            +
            public java.lang.Boolean getShowSeriesName()
            +
            +
            Returns:
            Whether to include the series name in the data label.
            +
          • -
          - - - -
            -
          • -

            getShowCategoryName

            -
            public java.lang.Boolean getShowCategoryName()
            -
            -
            Returns:
            +
          • +
            +

            getShowCategoryName

            +
            public java.lang.Boolean getShowCategoryName()
            +
            +
            Returns:
            Whether to include the series category name in the data label.
            +
          • -
          - - - -
            -
          • -

            getShowLegendKey

            -
            public java.lang.Boolean getShowLegendKey()
            -
            -
            Returns:
            +
          • +
            +

            getShowLegendKey

            +
            public java.lang.Boolean getShowLegendKey()
            +
            +
            Returns:
            Whether to include the legend key (i.e the color of the series) in the data label.
            +
          • -
          - - - -
            -
          • -

            getShowValue

            -
            public java.lang.Boolean getShowValue()
            -
            -
            Returns:
            +
          • +
            +

            getShowValue

            +
            public java.lang.Boolean getShowValue()
            +
            +
            Returns:
            Whether to include the actual value in the data label.
            +
          • -
          - - - -
            -
          • -

            getShowPercentage

            -
            public java.lang.Boolean getShowPercentage()
            -
            -
            Returns:
            +
          • +
            +

            getShowPercentage

            +
            public java.lang.Boolean getShowPercentage()
            +
            +
            Returns:
            Whether to include the percentage, default true for pie/pie3d and doughnut.
            +
          • -
          - - - -
            -
          • -

            getPosition

            -
            public java.lang.String getPosition()
            +
          • +
            +

            getPosition

            +
            public java.lang.String getPosition()
            Note that not all options might be available for specific charts.
            -
            -
            Returns:
            +
            +
            Returns:
            Position of the data label , can be 'center', 'left', 'right', 'above', 'below', 'insideBase', 'bestFit', 'outsideEnd', 'insideEnd'.
            +
          • -
          - - - -
            -
          • -

            setDataLabels

            -
            public void setDataLabels​(java.lang.String separator,
            -                          java.lang.Boolean showSeriesName,
            -                          java.lang.Boolean showCategoryName,
            -                          java.lang.Boolean showLegendKey,
            -                          java.lang.Boolean showValue,
            -                          java.lang.Boolean showPercentage,
            -                          java.lang.String position)
            +
          • +
            +

            setDataLabels

            +
            public void setDataLabels​(java.lang.String separator, +java.lang.Boolean showSeriesName, +java.lang.Boolean showCategoryName, +java.lang.Boolean showLegendKey, +java.lang.Boolean showValue, +java.lang.Boolean showPercentage, +java.lang.String position)
            Turn the data labels on. If you don't want to specify an option use null as argument.
            -
            -
            Parameters:
            +
            +
            Parameters:
            separator - Seperator : can be either false or anything else for example \n or \t or ; or (, if false).
            showSeriesName - Whether to include the series name in the data label.
            @@ -958,126 +791,91 @@

            setDataLabels

            'outsideEnd', 'insideEnd'. Note that not all options might be available for specific charts.
            +
          • -
          - - - -
            -
          • -

            removeDataLabels

            -
            public void removeDataLabels()
            +
          • +
            +

            removeDataLabels

            +
            public void removeDataLabels()
            Turns the datalabels of.
            +
          • -
          - - - -
            -
          • -

            getGrid

            -
            public java.lang.Boolean getGrid()
            -
            -
            Returns:
            +
          • +
            +

            getGrid

            +
            public java.lang.Boolean getGrid()
            +
            +
            Returns:
            Whether the chart should have a grid or not.
            +
          • -
          - - - -
            -
          • -

            setGrid

            -
            public void setGrid​(java.lang.Boolean grid)
            -
            -
            Parameters:
            +
          • +
            +

            setGrid

            +
            public void setGrid​(java.lang.Boolean grid)
            +
            +
            Parameters:
            grid - Whether the chart should have a grid or not.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html index d8e272e3..06ba98be 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html @@ -2,468 +2,359 @@ - -ChartTextStyle (cloudofficeprint 21.2.1 API) + +ChartTextStyle + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class ChartTextStyle

+ +

Class ChartTextStyle

-
-
    -
  • java.lang.Object
  • -
  • -
      -
    • com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    • -
    -
  • -
-
-
    -
  • +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    +

    -
    public class ChartTextStyle
    +
    public class ChartTextStyle
     extends java.lang.Object
    This class represent chart styling.
    -
  • -
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        ChartTextStyle​(java.lang.Boolean italic, - java.lang.Boolean bold, - java.lang.String color, - java.lang.String font) +
        ChartTextStyle​(java.lang.Boolean italic, +java.lang.Boolean bold, +java.lang.String color, +java.lang.String font)
        Contains the styling options for the text of the chart.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.BooleangetBold() 
    java.lang.BooleangetBold() 
    java.lang.StringgetColor() 
    java.lang.StringgetColor() 
    java.lang.StringgetFont() 
    java.lang.StringgetFont() 
    java.lang.BooleangetItalic() 
    java.lang.BooleangetItalic() 
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    voidsetBold​(java.lang.Boolean bold) 
    voidsetBold​(java.lang.Boolean bold) 
    voidsetColor​(java.lang.String color) 
    voidsetColor​(java.lang.String color) 
    voidsetFont​(java.lang.String font) 
    voidsetFont​(java.lang.String font) 
    voidsetItalic​(java.lang.Boolean italic) 
    voidsetItalic​(java.lang.Boolean italic) 
    -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ChartTextStyle

          -
          public ChartTextStyle​(java.lang.Boolean italic,
          -                      java.lang.Boolean bold,
          -                      java.lang.String color,
          -                      java.lang.String font)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ChartTextStyle

            +
            public ChartTextStyle​(java.lang.Boolean italic, +java.lang.Boolean bold, +java.lang.String color, +java.lang.String font)
            Contains the styling options for the text of the chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            italic - Whether the text is in italic.
            bold - Whether the text is in bold.
            color - Color of the text.
            font - Font of the text.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getItalic

          -
          public java.lang.Boolean getItalic()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getItalic

            +
            public java.lang.Boolean getItalic()
            +
            +
            Returns:
            Whether the chart text is in italic.
            +
          • -
          - - - -
            -
          • -

            setItalic

            -
            public void setItalic​(java.lang.Boolean italic)
            -
            -
            Parameters:
            +
          • +
            +

            setItalic

            +
            public void setItalic​(java.lang.Boolean italic)
            +
            +
            Parameters:
            italic - Whether the chart text is in italic.
            +
          • -
          - - - -
            -
          • -

            getBold

            -
            public java.lang.Boolean getBold()
            -
            -
            Returns:
            +
          • +
            +

            getBold

            +
            public java.lang.Boolean getBold()
            +
            +
            Returns:
            Whether the chart text is in bold.
            +
          • -
          - - - -
            -
          • -

            setBold

            -
            public void setBold​(java.lang.Boolean bold)
            -
            -
            Parameters:
            +
          • +
            +

            setBold

            +
            public void setBold​(java.lang.Boolean bold)
            +
            +
            Parameters:
            bold - Whether the chart text is in bold.
            +
          • -
          - - - -
            -
          • -

            getColor

            -
            public java.lang.String getColor()
            -
            -
            Returns:
            +
          • +
            +

            getColor

            +
            public java.lang.String getColor()
            +
            +
            Returns:
            Color of the text.
            +
          • -
          - - - -
            -
          • -

            setColor

            -
            public void setColor​(java.lang.String color)
            -
            -
            Parameters:
            +
          • +
            +

            setColor

            +
            public void setColor​(java.lang.String color)
            +
            +
            Parameters:
            color - Color of the text.
            +
          • -
          - - - -
            -
          • -

            getFont

            -
            public java.lang.String getFont()
            -
            -
            Returns:
            +
          • +
            +

            getFont

            +
            public java.lang.String getFont()
            +
            +
            Returns:
            Font of the text.
            +
          • -
          - - - -
            -
          • -

            setFont

            -
            public void setFont​(java.lang.String font)
            -
            -
            Parameters:
            +
          • +
            +

            setFont

            +
            public void setFont​(java.lang.String font)
            +
            +
            Parameters:
            font - Font of the text.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Returns:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html index ba7666cd..9a45cb20 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html @@ -2,383 +2,278 @@ - -AreaChart (cloudofficeprint 21.2.1 API) + +AreaChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        AreaChart​(java.lang.String name, - ChartOptions options, - AreaSeries... series) +
        AreaChart​(java.lang.String name, +ChartOptions options, +AreaSeries... series)
        Represents an area chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          AreaChart

          -
          public AreaChart​(java.lang.String name,
          -                 ChartOptions options,
          -                 AreaSeries... series)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            AreaChart

            +
            public AreaChart​(java.lang.String name, +ChartOptions options, +AreaSeries... series)
            Represents an area chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            series - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getSeries

          -
          public java.util.ArrayList<AreaSeries> getSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getSeries

            +
            public java.util.ArrayList<AreaSeries> getSeries()
            +
            +
            Returns:
            Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setSeries

            -
            public void setSeries​(java.util.ArrayList<AreaSeries> series)
            -
            -
            Parameters:
            +
          • +
            +

            setSeries

            +
            public void setSeries​(java.util.ArrayList<AreaSeries> series)
            +
            +
            Parameters:
            series - Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html index 33bca26c..2e8f99f0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html @@ -2,383 +2,278 @@ - -BarChart (cloudofficeprint 21.2.1 API) + +BarChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        BarChart​(java.lang.String name, - ChartOptions options, - BarSeries... barSeries) +
        BarChart​(java.lang.String name, +ChartOptions options, +BarSeries... barSeries)
        Represents a bar chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          BarChart

          -
          public BarChart​(java.lang.String name,
          -                ChartOptions options,
          -                BarSeries... barSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            BarChart

            +
            public BarChart​(java.lang.String name, +ChartOptions options, +BarSeries... barSeries)
            Represents a bar chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            barSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getBarSeries

          -
          public java.util.ArrayList<BarSeries> getBarSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getBarSeries

            +
            public java.util.ArrayList<BarSeries> getBarSeries()
            +
            +
            Returns:
            BarSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setBarSeries

            -
            public void setBarSeries​(java.util.ArrayList<BarSeries> barSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setBarSeries

            +
            public void setBarSeries​(java.util.ArrayList<BarSeries> barSeries)
            +
            +
            Parameters:
            barSeries - BarSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html index 45a6a88c..e610c3e8 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html @@ -2,383 +2,278 @@ - -BarStackedChart (cloudofficeprint 21.2.1 API) + +BarStackedChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class BarStackedChart

+ +

Class BarStackedChart

-
- -
- -
-
-
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          BarStackedChart

          -
          public BarStackedChart​(java.lang.String name,
          -                       ChartOptions options,
          -                       BarStackedSeries... barStackedSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            BarStackedChart

            +
            public BarStackedChart​(java.lang.String name, +ChartOptions options, +BarStackedSeries... barStackedSeries)
            Represents a stacked bar chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            barStackedSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getBarStackedSeries

          -
          public java.util.ArrayList<BarStackedSeries> getBarStackedSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getBarStackedSeries

            +
            public java.util.ArrayList<BarStackedSeries> getBarStackedSeries()
            +
            +
            Returns:
            BarStackedSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setBarStackedSeries

            -
            public void setBarStackedSeries​(java.util.ArrayList<BarStackedSeries> lineseries)
            -
            -
            Parameters:
            +
          • +
            +

            setBarStackedSeries

            +
            public void setBarStackedSeries​(java.util.ArrayList<BarStackedSeries> lineseries)
            +
            +
            Parameters:
            lineseries - BarStackedSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html index 76a0792d..967e096d 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html @@ -2,384 +2,279 @@ - -BarStackedPercentChart (cloudofficeprint 21.2.1 API) + +BarStackedPercentChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class BarStackedPercentChart

+ +

Class BarStackedPercentChart

-
- -
- -
-
-
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          BarStackedPercentChart

          -
          public BarStackedPercentChart​(java.lang.String name,
          -                              ChartOptions options,
          -                              BarStackedPercentSeries... barStackedPercentSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            BarStackedPercentChart

            +
            public BarStackedPercentChart​(java.lang.String name, +ChartOptions options, +BarStackedPercentSeries... barStackedPercentSeries)
            Represents a stacked bar chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            barStackedPercentSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getBarStackedPercentSeries

          -
          public java.util.ArrayList<BarStackedPercentSeries> getBarStackedPercentSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getBarStackedPercentSeries

            +
            public java.util.ArrayList<BarStackedPercentSeries> getBarStackedPercentSeries()
            +
            +
            Returns:
            BarStackedPercentSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setBarStackedPercentSeries

            -
            public void setBarStackedPercentSeries​(java.util.ArrayList<BarStackedPercentSeries> barStackedPercentSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setBarStackedPercentSeries

            +
            public void setBarStackedPercentSeries​(java.util.ArrayList<BarStackedPercentSeries> barStackedPercentSeries)
            +
            +
            Parameters:
            barStackedPercentSeries - BarStackedPercentSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html index 662881b1..3c2da24a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html @@ -2,383 +2,278 @@ - -BubbleChart (cloudofficeprint 21.2.1 API) + +BubbleChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        BubbleChart​(java.lang.String name, - ChartOptions options, - BubbleSeries... series) +
        BubbleChart​(java.lang.String name, +ChartOptions options, +BubbleSeries... series)
        Represents a bubble chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          BubbleChart

          -
          public BubbleChart​(java.lang.String name,
          -                   ChartOptions options,
          -                   BubbleSeries... series)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            BubbleChart

            +
            public BubbleChart​(java.lang.String name, +ChartOptions options, +BubbleSeries... series)
            Represents a bubble chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            series - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getSeries

          -
          public java.util.ArrayList<BubbleSeries> getSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getSeries

            +
            public java.util.ArrayList<BubbleSeries> getSeries()
            +
            +
            Returns:
            Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setSeries

            -
            public void setSeries​(java.util.ArrayList<BubbleSeries> series)
            -
            -
            Parameters:
            +
          • +
            +

            setSeries

            +
            public void setSeries​(java.util.ArrayList<BubbleSeries> series)
            +
            +
            Parameters:
            series - Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html index c5220618..443da7aa 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html @@ -2,362 +2,264 @@ - -Chart (cloudofficeprint 21.2.1 API) + +Chart + + + - + + - - - - - + + - - -
+
+ - +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        Chart() 
        Chart() 
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getJSON, getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          Chart

          -
          public Chart()
          -
        • -
        +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          Chart

          +
          public Chart()
          +
        +
      • -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getOptions

            -
            public ChartOptions getOptions()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getOptions

              +
              public ChartOptions getOptions()
              +
              +
              Returns:
              Options of the chart.
              +
            • -
            - - - -
              -
            • -

              setOptions

              -
              public void setOptions​(ChartOptions options)
              -
              -
              Parameters:
              +
            • +
              +

              setOptions

              +
              public void setOptions​(ChartOptions options)
              +
              +
              Parameters:
              options - Options of the chart.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html index 42490314..7f47a8ff 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html @@ -2,383 +2,278 @@ - -ColumnChart (cloudofficeprint 21.2.1 API) + +ColumnChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        ColumnChart​(java.lang.String name, - ChartOptions options, - ColumnSeries... columnSeries) +
        ColumnChart​(java.lang.String name, +ChartOptions options, +ColumnSeries... columnSeries)
        Represents a column chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ColumnChart

          -
          public ColumnChart​(java.lang.String name,
          -                   ChartOptions options,
          -                   ColumnSeries... columnSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ColumnChart

            +
            public ColumnChart​(java.lang.String name, +ChartOptions options, +ColumnSeries... columnSeries)
            Represents a column chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            columnSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getColumnSeries

          -
          public java.util.ArrayList<ColumnSeries> getColumnSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getColumnSeries

            +
            public java.util.ArrayList<ColumnSeries> getColumnSeries()
            +
            +
            Returns:
            ColumnSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setColumnSeries

            -
            public void setColumnSeries​(java.util.ArrayList<ColumnSeries> columnSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setColumnSeries

            +
            public void setColumnSeries​(java.util.ArrayList<ColumnSeries> columnSeries)
            +
            +
            Parameters:
            columnSeries - ColumnSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html index 2725f057..0bd6ded0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html @@ -2,383 +2,278 @@ - -ColumnStackedChart (cloudofficeprint 21.2.1 API) + +ColumnStackedChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class ColumnStackedChart

+ +

Class ColumnStackedChart

-
- -
- -
-
-
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ColumnStackedChart

          -
          public ColumnStackedChart​(java.lang.String name,
          -                          ChartOptions options,
          -                          ColumnStackedSeries... stackedColumnSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ColumnStackedChart

            +
            public ColumnStackedChart​(java.lang.String name, +ChartOptions options, +ColumnStackedSeries... stackedColumnSeries)
            Represents a stacked column chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            stackedColumnSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getStackedColumnSeries

          -
          public java.util.ArrayList<ColumnStackedSeries> getStackedColumnSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getStackedColumnSeries

            +
            public java.util.ArrayList<ColumnStackedSeries> getStackedColumnSeries()
            +
            +
            Returns:
            ColumnStackedSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setStackedColumnSeries

            -
            public void setStackedColumnSeries​(java.util.ArrayList<ColumnStackedSeries> stackedColumnSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setStackedColumnSeries

            +
            public void setStackedColumnSeries​(java.util.ArrayList<ColumnStackedSeries> stackedColumnSeries)
            +
            +
            Parameters:
            stackedColumnSeries - ColumnStackedSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html index 25c8b1ba..fdef4a91 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html @@ -2,386 +2,281 @@ - -ColumnStackedPercentChart (cloudofficeprint 21.2.1 API) + +ColumnStackedPercentChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+
- -

Class ColumnStackedPercentChart

+ +

Class ColumnStackedPercentChart

-
- -
- -
-
-
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ColumnStackedPercentChart

          -
          public ColumnStackedPercentChart​(java.lang.String name,
          -                                 ChartOptions options,
          -                                 ColumnStackedPercentSeries... columnStackedPercentageSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ColumnStackedPercentChart

            +
            public ColumnStackedPercentChart​(java.lang.String name, +ChartOptions options, +ColumnStackedPercentSeries... columnStackedPercentageSeries)
            Represents a stacked column chart where the y-axis is expressed in percentage.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            columnStackedPercentageSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getColumnStackedPercentageSeries

          -
          public java.util.ArrayList<ColumnStackedPercentSeries> getColumnStackedPercentageSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getColumnStackedPercentageSeries

            +
            public java.util.ArrayList<ColumnStackedPercentSeries> getColumnStackedPercentageSeries()
            +
            +
            Returns:
            ColumnStackedPercentSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setColumnStackedPercentageSeries

            -
            public void setColumnStackedPercentageSeries​(java.util.ArrayList<ColumnStackedPercentSeries> columnStackedPercentageSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setColumnStackedPercentageSeries

            +
            public void setColumnStackedPercentageSeries​(java.util.ArrayList<ColumnStackedPercentSeries> columnStackedPercentageSeries)
            +
            +
            Parameters:
            columnStackedPercentageSeries - ColumnStackedPercentSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html index 856036f9..5c7e9796 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html @@ -2,472 +2,355 @@ - -CombinedChart (cloudofficeprint 21.2.1 API) + +CombinedChart + + + - + + - - - - - + + - - -
+
+ - +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        CombinedChart​(java.lang.String name, - ChartOptions options, - Chart[] charts, - Chart[] secondaryCharts) +
        CombinedChart​(java.lang.String name, +ChartOptions options, +Chart[] charts, +Chart[] secondaryCharts)
        Represents a combined chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          CombinedChart

          -
          public CombinedChart​(java.lang.String name,
          -                     ChartOptions options,
          -                     Chart[] charts,
          -                     Chart[] secondaryCharts)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            CombinedChart

            +
            public CombinedChart​(java.lang.String name, +ChartOptions options, +Chart[] charts, +Chart[] secondaryCharts)
            Represents a combined chart. Multiple chart types can be combined (but there can be maximum 2 y-axis).
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            charts - Charts for the first y-axis.
            secondaryCharts - Charts for the second y-axis.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getCharts

          -
          public java.util.ArrayList<Chart> getCharts()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getCharts

            +
            public java.util.ArrayList<Chart> getCharts()
            +
            +
            Returns:
            Charts for the first y-axis.
            +
          • -
          - - - -
            -
          • -

            setCharts

            -
            public void setCharts​(java.util.ArrayList<Chart> charts)
            -
            -
            Parameters:
            +
          • +
            +

            setCharts

            +
            public void setCharts​(java.util.ArrayList<Chart> charts)
            +
            +
            Parameters:
            charts - Charts for the first y-axis.
            +
          • -
          - - - -
            -
          • -

            getSecondaryCharts

            -
            public java.util.ArrayList<Chart> getSecondaryCharts()
            -
            -
            Returns:
            +
          • +
            +

            getSecondaryCharts

            +
            public java.util.ArrayList<Chart> getSecondaryCharts()
            +
            +
            Returns:
            Charts for the second y-axis.
            +
          • -
          - - - -
            -
          • -

            setSecondaryCharts

            -
            public void setSecondaryCharts​(java.util.ArrayList<Chart> secondaryCharts)
            -
            -
            Parameters:
            +
          • +
            +

            setSecondaryCharts

            +
            public void setSecondaryCharts​(java.util.ArrayList<Chart> secondaryCharts)
            +
            +
            Parameters:
            secondaryCharts - Charts for the second y-axis.
            +
          • -
          - - - -
            -
          • -

            replaceKeyRecursive

            -
            public com.google.gson.JsonObject replaceKeyRecursive​(com.google.gson.JsonObject jsonOld,
            -                                                      java.lang.String oldKey,
            -                                                      java.lang.String newKey)
            +
          • +
            +

            replaceKeyRecursive

            +
            public com.google.gson.JsonObject replaceKeyRecursive​(com.google.gson.JsonObject jsonOld, +java.lang.String oldKey, +java.lang.String newKey)
            Replaces all the occurrences of oldKey in the json with the newKey. Objects with key "options" will not be modified (y-axis stays y-axis).
            -
            -
            Parameters:
            +
            +
            Parameters:
            jsonOld - Json to be modified.
            oldKey - Old keys to be replaced.
            newKey - New key to replace the old key.
            -
            Returns:
            +
            Returns:
            Json with the old key replaced by the new key.
            +
          • -
          - - - -
            -
          • -

            getModifiedChartDicts

            -
            public com.google.gson.JsonArray getModifiedChartDicts()
            -
            -
            Returns:
            +
          • +
            +

            getModifiedChartDicts

            +
            public com.google.gson.JsonArray getModifiedChartDicts()
            +
            +
            Returns:
            An array of the JSONs of the charts but adapted to a multiple chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html index f538b4d7..22126ba4 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html @@ -2,383 +2,278 @@ - -DoughnutChart (cloudofficeprint 21.2.1 API) + +DoughnutChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        DoughnutChart​(java.lang.String name, - ChartOptions options, - PieSeries... pieSeries) +
        DoughnutChart​(java.lang.String name, +ChartOptions options, +PieSeries... pieSeries)
        Represents a doughnut chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          DoughnutChart

          -
          public DoughnutChart​(java.lang.String name,
          -                     ChartOptions options,
          -                     PieSeries... pieSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            DoughnutChart

            +
            public DoughnutChart​(java.lang.String name, +ChartOptions options, +PieSeries... pieSeries)
            Represents a doughnut chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            pieSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getPieSeries

          -
          public java.util.ArrayList<PieSeries> getPieSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getPieSeries

            +
            public java.util.ArrayList<PieSeries> getPieSeries()
            +
            +
            Returns:
            PieSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setPieSeries

            -
            public void setPieSeries​(java.util.ArrayList<PieSeries> pieSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setPieSeries

            +
            public void setPieSeries​(java.util.ArrayList<PieSeries> pieSeries)
            +
            +
            Parameters:
            pieSeries - PieSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html index ef70c9c1..39f0653b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html @@ -2,383 +2,278 @@ - -LineChart (cloudofficeprint 21.2.1 API) + +LineChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        LineChart​(java.lang.String name, - ChartOptions options, - LineSeries... lineseries) +
        LineChart​(java.lang.String name, +ChartOptions options, +LineSeries... lineseries)
        Represents a line chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          LineChart

          -
          public LineChart​(java.lang.String name,
          -                 ChartOptions options,
          -                 LineSeries... lineseries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            LineChart

            +
            public LineChart​(java.lang.String name, +ChartOptions options, +LineSeries... lineseries)
            Represents a line chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            lineseries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getLineseries

          -
          public java.util.ArrayList<LineSeries> getLineseries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getLineseries

            +
            public java.util.ArrayList<LineSeries> getLineseries()
            +
            +
            Returns:
            Lineseries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setLineseries

            -
            public void setLineseries​(java.util.ArrayList<LineSeries> lineseries)
            -
            -
            Parameters:
            +
          • +
            +

            setLineseries

            +
            public void setLineseries​(java.util.ArrayList<LineSeries> lineseries)
            +
            +
            Parameters:
            lineseries - Lineseries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html index bfe23606..ea35c99c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html @@ -2,383 +2,278 @@ - -Pie3DChart (cloudofficeprint 21.2.1 API) + +Pie3DChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        Pie3DChart​(java.lang.String name, - ChartOptions options, - PieSeries... pieSeries) +
        Pie3DChart​(java.lang.String name, +ChartOptions options, +PieSeries... pieSeries)
        Represents a 3D pie chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          Pie3DChart

          -
          public Pie3DChart​(java.lang.String name,
          -                  ChartOptions options,
          -                  PieSeries... pieSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            Pie3DChart

            +
            public Pie3DChart​(java.lang.String name, +ChartOptions options, +PieSeries... pieSeries)
            Represents a 3D pie chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            pieSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getPieSeries

          -
          public java.util.ArrayList<PieSeries> getPieSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getPieSeries

            +
            public java.util.ArrayList<PieSeries> getPieSeries()
            +
            +
            Returns:
            PieSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setPieSeries

            -
            public void setPieSeries​(java.util.ArrayList<PieSeries> pieSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setPieSeries

            +
            public void setPieSeries​(java.util.ArrayList<PieSeries> pieSeries)
            +
            +
            Parameters:
            pieSeries - PieSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html index f138e9b0..1c87bb28 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html @@ -2,383 +2,278 @@ - -PieChart (cloudofficeprint 21.2.1 API) + +PieChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        PieChart​(java.lang.String name, - ChartOptions options, - PieSeries... pieSeries) +
        PieChart​(java.lang.String name, +ChartOptions options, +PieSeries... pieSeries)
        Represents a pie chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          PieChart

          -
          public PieChart​(java.lang.String name,
          -                ChartOptions options,
          -                PieSeries... pieSeries)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            PieChart

            +
            public PieChart​(java.lang.String name, +ChartOptions options, +PieSeries... pieSeries)
            Represents a pie chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            pieSeries - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getPieSeries

          -
          public java.util.ArrayList<PieSeries> getPieSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getPieSeries

            +
            public java.util.ArrayList<PieSeries> getPieSeries()
            +
            +
            Returns:
            PieSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setPieSeries

            -
            public void setPieSeries​(java.util.ArrayList<PieSeries> pieSeries)
            -
            -
            Parameters:
            +
          • +
            +

            setPieSeries

            +
            public void setPieSeries​(java.util.ArrayList<PieSeries> pieSeries)
            +
            +
            Parameters:
            pieSeries - PieSeries with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html index d1dbf1ae..fe06bfcd 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html @@ -2,383 +2,278 @@ - -RadarChart (cloudofficeprint 21.2.1 API) + +RadarChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        RadarChart​(java.lang.String name, - ChartOptions options, - RadarSeries... series) +
        RadarChart​(java.lang.String name, +ChartOptions options, +RadarSeries... series)
        Represents a radar chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          RadarChart

          -
          public RadarChart​(java.lang.String name,
          -                  ChartOptions options,
          -                  RadarSeries... series)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            RadarChart

            +
            public RadarChart​(java.lang.String name, +ChartOptions options, +RadarSeries... series)
            Represents a radar chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            series - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getSeries

          -
          public java.util.ArrayList<RadarSeries> getSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getSeries

            +
            public java.util.ArrayList<RadarSeries> getSeries()
            +
            +
            Returns:
            Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setSeries

            -
            public void setSeries​(java.util.ArrayList<RadarSeries> series)
            -
            -
            Parameters:
            +
          • +
            +

            setSeries

            +
            public void setSeries​(java.util.ArrayList<RadarSeries> series)
            +
            +
            Parameters:
            series - Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html index dd580991..510cafd5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html @@ -2,383 +2,278 @@ - -ScatterChart (cloudofficeprint 21.2.1 API) + +ScatterChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          ScatterChart

          -
          public ScatterChart​(java.lang.String name,
          -                    ChartOptions options,
          -                    ScatterSeries... series)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            ScatterChart

            +
            public ScatterChart​(java.lang.String name, +ChartOptions options, +ScatterSeries... series)
            Represents an area chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            series - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getSeries

          -
          public java.util.ArrayList<ScatterSeries> getSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getSeries

            +
            public java.util.ArrayList<ScatterSeries> getSeries()
            +
            +
            Returns:
            Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setSeries

            -
            public void setSeries​(java.util.ArrayList<ScatterSeries> series)
            -
            -
            Parameters:
            +
          • +
            +

            setSeries

            +
            public void setSeries​(java.util.ArrayList<ScatterSeries> series)
            +
            +
            Parameters:
            series - Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html index 526c45ee..dea1533a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html @@ -2,383 +2,278 @@ - -StockChart (cloudofficeprint 21.2.1 API) + +StockChart + + + - + + - - - - - + + - - -
+
+
+ + + +
- +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        StockChart​(java.lang.String name, - ChartOptions options, - StockSeries... series) +
        StockChart​(java.lang.String name, +ChartOptions options, +StockSeries... series)
        Represents a stock chart.
        -
      • -
      +
+ -
- +
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Charts.Chart

+getOptions, getTemplateTags, setOptions
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

+getName, getValue, setName, setValue
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- -
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          StockChart

          -
          public StockChart​(java.lang.String name,
          -                  ChartOptions options,
          -                  StockSeries... series)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            StockChart

            +
            public StockChart​(java.lang.String name, +ChartOptions options, +StockSeries... series)
            Represents a stock chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart (for the tag).
            options - Options of the chart.
            series - Series with the data for the chart.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getSeries

          -
          public java.util.ArrayList<StockSeries> getSeries()
          -
          -
          Returns:
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getSeries

            +
            public java.util.ArrayList<StockSeries> getSeries()
            +
            +
            Returns:
            Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            setSeries

            -
            public void setSeries​(java.util.ArrayList<StockSeries> series)
            -
            -
            Parameters:
            +
          • +
            +

            setSeries

            +
            public void setSeries​(java.util.ArrayList<StockSeries> series)
            +
            +
            Parameters:
            series - Serie with the data for the chart.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Specified by:
            getJSON in class RenderElement
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html index ef2fb919..391e81b5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html @@ -2,260 +2,200 @@ - -com.cloudofficeprint.RenderElements.Charts.Charts (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Charts.Charts + + + - + + - - - - - + + - - -
+
+ +

Package com.cloudofficeprint.RenderElements.Charts.Charts

-
-
-
+ +
+ diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html index 641bff50..89a22aec 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html @@ -2,128 +2,86 @@ - -com.cloudofficeprint.RenderElements.Charts.Charts Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Charts.Charts Class Hierarchy + + + - + + - - - - - + + - - -
+
+ +

Hierarchy For Package com.cloudofficeprint.RenderElements.Charts.Charts

-Package Hierarchies: +Package Hierarchies:
-
-
+

Class Hierarchy

  • java.lang.Object
      -
    • com.cloudofficeprint.RenderElements.RenderElement +
    • com.cloudofficeprint.RenderElements.RenderElement
        -
      • com.cloudofficeprint.RenderElements.Charts.Charts.Chart +
      • com.cloudofficeprint.RenderElements.Charts.Charts.Chart
          -
        • com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
        • -
        • com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
        • +
        • com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
      @@ -132,52 +90,28 @@

      Class Hierarchy

-
+
+
diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html index d4b90a37..3227ae54 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html @@ -2,263 +2,199 @@ - -AreaSeries (cloudofficeprint 21.2.1 API) + +AreaSeries + + + - + + - - - - - + + - - -
+
+ - +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        AreaSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y, - java.lang.String color, - java.lang.Float opacity) +
        AreaSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String color, +java.lang.Float opacity)
        This object represents series for a pie chart.
        -
      • -
      +
+ -
-
    -
  • - - -

    Method Summary

    - - +
  • +
    +

    Method Summary

    +
    +
    +
    +
  • All Methods Instance Methods Concrete Methods 
    + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + - - - - + + + + - - - - + + + +
    Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
    java.lang.StringgetColor() 
    java.lang.StringgetColor() 
    com.google.gson.JsonObjectgetJSON() 
    com.google.gson.JsonObjectgetJSON() 
    java.lang.FloatgetOpacity() +
    java.lang.FloatgetOpacity()
    Note: Decimal value between 0 and 1.
    voidsetColor​(java.lang.String color) 
    voidsetColor​(java.lang.String color) 
    voidsetOpacity​(java.lang.Float opacity) +
    voidsetOpacity​(java.lang.Float opacity)
    Note: Decimal value between 0 and 1.
    - -
      -
    • - - -

      Methods inherited from class java.lang.Object

      -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • -
    -
  • -
+
+
+
+

Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

+getJSONData, getName, getX, getY, setName, setX, setY
+
+

Methods inherited from class java.lang.Object

+equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Detail

        - - - -
          -
        • -

          AreaSeries

          -
          public AreaSeries​(java.lang.String name,
          -                  java.lang.String[] x,
          -                  java.lang.String[] y,
          -                  java.lang.String color,
          -                  java.lang.Float opacity)
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            AreaSeries

            +
            public AreaSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String color, +java.lang.Float opacity)
            This object represents series for a pie chart.
            -
            -
            Parameters:
            +
            +
            Parameters:
            name - Name of the chart.
            x - X-data of the chart.
            y - Y-data of the chart.
            @@ -270,168 +206,128 @@

            AreaSeries

            the color field (rgba, hsla and hwba are supported). The opacity field is also ignored in that case.
            -
          • -
          +
      + -
      -
        -
      • - - -

        Method Detail

        - - - -
          -
        • -

          getOpacity

          -
          public java.lang.Float getOpacity()
          +
        • +
          +

          Method Details

          +
            +
          • +
            +

            getOpacity

            +
            public java.lang.Float getOpacity()
            Note: Decimal value between 0 and 1. It will only work when a color is manually specified, otherwise it is silently ignored. The opacity can also be set by using a scheme for the color option which includes an alpha value in the color field (rgba, hsla and hwba are supported). The opacity field is also ignored in that case.
            -
            -
            Returns:
            +
            +
            Returns:
            Opacity of the chart.
            +
          • -
          - - - -
            -
          • -

            setOpacity

            -
            public void setOpacity​(java.lang.Float opacity)
            +
          • +
            +

            setOpacity

            +
            public void setOpacity​(java.lang.Float opacity)
            Note: Decimal value between 0 and 1. It will only work when a color is manually specified, otherwise it is silently ignored. The opacity can also be set by using a scheme for the color option which includes an alpha value in the color field (rgba, hsla and hwba are supported). The opacity field is also ignored in that case.
            -
            -
            Parameters:
            +
            +
            Parameters:
            opacity - Opacity of the chart.
            +
          • -
          - - - -
            -
          • -

            getColor

            -
            public java.lang.String getColor()
            -
            -
            Overrides:
            +
          • +
            +

            getColor

            +
            public java.lang.String getColor()
            +
            +
            Overrides:
            getColor in class XYSeries
            -
            Returns:
            +
            Returns:
            Chart color in CSS format.
            +
          • -
          - - - -
            -
          • -

            setColor

            -
            public void setColor​(java.lang.String color)
            -
            -
            Overrides:
            +
          • +
            +

            setColor

            +
            public void setColor​(java.lang.String color)
            +
            +
            Overrides:
            setColor in class XYSeries
            -
            Parameters:
            +
            Parameters:
            color - Chart color in CSS format.
            +
          • -
          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Overrides:
            +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Overrides:
            getJSON in class XYSeries
            -
            Returns:
            +
            Returns:
            JSONObject with the tags for this element for the Cloud Office Print server.
            -
          • -
          +
    -
- - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html index f0dbbbaf..6003db0d 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html @@ -2,290 +2,195 @@ - -BarSeries (cloudofficeprint 21.2.1 API) + +BarSeries + + + - + + - - - - - + + - - -
+
+ - +
+ -
- -
- -
-
-
    -
  • + +
    +
      -
      -
        -
      • - - -

        Constructor Summary

        - - +
      • +
        +

        Constructor Summary

        +
        +
      • Constructors 
        + + - - + + - - - + + + + +
        Constructors
        ConstructorDescriptionConstructorDescription
        BarSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y) +
        BarSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
        This object represents series for a bar chart.
        -
      • -
      +
- -
- + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            BarSeries

            -
            public BarSeries​(java.lang.String name,
            -                 java.lang.String[] x,
            -                 java.lang.String[] y)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              BarSeries

              +
              public BarSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
              This object represents series for a bar chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              -
            • -
            +
      -
    -
    - + + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html index 78756d4b..f2855bd7 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html @@ -2,293 +2,198 @@ - -BarStackedPercentSeries (cloudofficeprint 21.2.1 API) + +BarStackedPercentSeries + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class BarStackedPercentSeries

    + +

    Class BarStackedPercentSeries

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.Charts.Series.XYSeries +
      com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries
      +
      +
      +

      -
      public class BarStackedPercentSeries
      +
      public class BarStackedPercentSeries
       extends XYSeries
      Represents series for stacked bar charts where the x-axis is expressed in percentage.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          BarStackedPercentSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y) +
          BarStackedPercentSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
          This object represents series for a stacked bar chart where the x-axis is expressed in percentage.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            BarStackedPercentSeries

            -
            public BarStackedPercentSeries​(java.lang.String name,
            -                               java.lang.String[] x,
            -                               java.lang.String[] y)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              BarStackedPercentSeries

              +
              public BarStackedPercentSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
              This object represents series for a stacked bar chart where the x-axis is expressed in percentage.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              -
            • -
            +
      -
    -
    - + + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html index 6b5e443a..f73739d0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html @@ -2,290 +2,195 @@ - -BarStackedSeries (cloudofficeprint 21.2.1 API) + +BarStackedSeries + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class BarStackedSeries

    + +

    Class BarStackedSeries

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          BarStackedSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y) +
          BarStackedSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
          This object series for represents a stacked bar chart.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            BarStackedSeries

            -
            public BarStackedSeries​(java.lang.String name,
            -                        java.lang.String[] x,
            -                        java.lang.String[] y)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              BarStackedSeries

              +
              public BarStackedSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
              This object series for represents a stacked bar chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              -
            • -
            +
      -
    -
    - + + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html index 3c016356..e71a1410 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html @@ -2,373 +2,275 @@ - -BubbleSeries (cloudofficeprint 21.2.1 API) + +BubbleSeries + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          BubbleSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y, - java.lang.Integer[] sizes) +
          BubbleSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.Integer[] sizes)
          This object represents series for a bubble chart.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonArraygetJSONData() 
      com.google.gson.JsonArraygetJSONData() 
      java.lang.Integer[]getSizes() 
      java.lang.Integer[]getSizes() 
      voidsetSizes​(java.lang.Integer[] sizes) 
      voidsetSizes​(java.lang.Integer[] sizes) 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            BubbleSeries

            -
            public BubbleSeries​(java.lang.String name,
            -                    java.lang.String[] x,
            -                    java.lang.String[] y,
            -                    java.lang.Integer[] sizes)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              BubbleSeries

              +
              public BubbleSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.Integer[] sizes)
              This object represents series for a bubble chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              sizes - Sizes of each of the bubbles.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getSizes

            -
            public java.lang.Integer[] getSizes()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getSizes

              +
              public java.lang.Integer[] getSizes()
              +
              +
              Returns:
              Sizes of each of the bubbles.
              +
            • -
            - - - -
              -
            • -

              setSizes

              -
              public void setSizes​(java.lang.Integer[] sizes)
              -
              -
              Parameters:
              +
            • +
              +

              setSizes

              +
              public void setSizes​(java.lang.Integer[] sizes)
              +
              +
              Parameters:
              sizes - Sizes of each of the bubbles.
              +
            • -
            - - - -
              -
            • -

              getJSONData

              -
              public com.google.gson.JsonArray getJSONData()
              -
              -
              Overrides:
              +
            • +
              +

              getJSONData

              +
              public com.google.gson.JsonArray getJSONData()
              +
              +
              Overrides:
              getJSONData in class XYSeries
              -
              Returns:
              +
              Returns:
              JsonArray of the data of the serie.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html index 505bab40..9dba1302 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html @@ -2,290 +2,195 @@ - -ColumnSeries (cloudofficeprint 21.2.1 API) + +ColumnSeries + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ColumnSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y) +
          ColumnSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
          This object represents series for a column chart.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ColumnSeries

            -
            public ColumnSeries​(java.lang.String name,
            -                    java.lang.String[] x,
            -                    java.lang.String[] y)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ColumnSeries

              +
              public ColumnSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
              This object represents series for a column chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              -
            • -
            +
      -
    -
    - + + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html index bcccb2f9..55ba6b74 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html @@ -2,293 +2,198 @@ - -ColumnStackedPercentSeries (cloudofficeprint 21.2.1 API) + +ColumnStackedPercentSeries + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class ColumnStackedPercentSeries

    + +

    Class ColumnStackedPercentSeries

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.Charts.Series.XYSeries +
      com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries
      +
      +
      +

      -
      public class ColumnStackedPercentSeries
      +
      public class ColumnStackedPercentSeries
       extends XYSeries
      Represents series for stacked column charts where the y-axis is expressed in percentage.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ColumnStackedPercentSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y) +
          ColumnStackedPercentSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
          This object represents series for a stacked column chart where the y-axis is expressed in percentage.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ColumnStackedPercentSeries

            -
            public ColumnStackedPercentSeries​(java.lang.String name,
            -                                  java.lang.String[] x,
            -                                  java.lang.String[] y)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ColumnStackedPercentSeries

              +
              public ColumnStackedPercentSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
              This object represents series for a stacked column chart where the y-axis is expressed in percentage.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              -
            • -
            +
      -
    -
    - + + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html index 91d9f534..3981ed9f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html @@ -2,290 +2,195 @@ - -ColumnStackedSeries (cloudofficeprint 21.2.1 API) + +ColumnStackedSeries + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class ColumnStackedSeries

    + +

    Class ColumnStackedSeries

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ColumnStackedSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y) +
          ColumnStackedSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
          This object represents series for a stacked column chart.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ColumnStackedSeries

            -
            public ColumnStackedSeries​(java.lang.String name,
            -                           java.lang.String[] x,
            -                           java.lang.String[] y)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ColumnStackedSeries

              +
              public ColumnStackedSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
              This object represents series for a stacked column chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              -
            • -
            +
      -
    -
    - + + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html index 1f28680a..b6f30c7f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html @@ -2,305 +2,241 @@ - -LineSeries (cloudofficeprint 21.2.1 API) + +LineSeries + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          LineSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y, - java.lang.String color, - java.lang.Boolean smooth, - java.lang.String symbol, - java.lang.String symbolSize, - java.lang.String lineThickness, - java.lang.String lineStyle) +
          LineSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String color, +java.lang.Boolean smooth, +java.lang.String symbol, +java.lang.String symbolSize, +java.lang.String lineThickness, +java.lang.String lineStyle)
          This object represents series for a line chart (where data-points are connected with lines).
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            LineSeries

            -
            public LineSeries​(java.lang.String name,
            -                  java.lang.String[] x,
            -                  java.lang.String[] y,
            -                  java.lang.String color,
            -                  java.lang.Boolean smooth,
            -                  java.lang.String symbol,
            -                  java.lang.String symbolSize,
            -                  java.lang.String lineThickness,
            -                  java.lang.String lineStyle)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              LineSeries

              +
              public LineSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String color, +java.lang.Boolean smooth, +java.lang.String symbol, +java.lang.String symbolSize, +java.lang.String lineThickness, +java.lang.String lineStyle)
              This object represents series for a line chart (where data-points are connected with lines).
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              @@ -317,243 +253,185 @@

              LineSeries

              lineStyle - Style of the line. Supported options can be found online on the Cloud Office Print documentation.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getSmooth

            -
            public java.lang.Boolean getSmooth()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getSmooth

              +
              public java.lang.Boolean getSmooth()
              +
              +
              Returns:
              Whether the corners of the angels formed in the data-points are smoothened.
              +
            • -
            - - - -
              -
            • -

              setSmooth

              -
              public void setSmooth​(java.lang.Boolean smooth)
              +
            • +
              +

              setSmooth

              +
              public void setSmooth​(java.lang.Boolean smooth)
              -
              -
              -
              Parameters:
              +
              +
              Parameters:
              smooth - Whether the corners of the angels formed in the data-points are smoothened.
              +
            • -
            - - - -
              -
            • -

              getSymbol

              -
              public java.lang.String getSymbol()
              -
              -
              Returns:
              +
            • +
              +

              getSymbol

              +
              public java.lang.String getSymbol()
              +
              +
              Returns:
              Symbol representing the datapoints. Can be square, diamond or triangle.
              +
            • -
            - - - -
              -
            • -

              setSymbol

              -
              public void setSymbol​(java.lang.String symbol)
              -
              -
              Parameters:
              +
            • +
              +

              setSymbol

              +
              public void setSymbol​(java.lang.String symbol)
              +
              +
              Parameters:
              symbol - Symbol representing the data-points. Can be square, diamond or triangle.
              +
            • -
            - - - -
              -
            • -

              getSymbolSize

              -
              public java.lang.String getSymbolSize()
              -
              -
              Returns:
              +
            • +
              +

              getSymbolSize

              +
              public java.lang.String getSymbolSize()
              +
              +
              Returns:
              Size of the symbol representing the data-points in (in em, pt, px, cm or in), by default: automatic.
              +
            • -
            - - - -
              -
            • -

              setSymbolSize

              -
              public void setSymbolSize​(java.lang.String symbolSize)
              -
              -
              Parameters:
              +
            • +
              +

              setSymbolSize

              +
              public void setSymbolSize​(java.lang.String symbolSize)
              +
              +
              Parameters:
              symbolSize - Size of the symbol representing the data-points in (in em, pt, px, cm or in) e.g. : 20 pt, by default: automatic.
              +
            • -
            - - - -
              -
            • -

              getLineThickness

              -
              public java.lang.String getLineThickness()
              -
              -
              Returns:
              +
            • +
              +

              getLineThickness

              +
              public java.lang.String getLineThickness()
              +
              +
              Returns:
              Thickness of the connecting line in em, pt, px, cm or in. e.g. : 20 pt.
              +
            • -
            - - - -
              -
            • -

              setLineThickness

              -
              public void setLineThickness​(java.lang.String lineThickness)
              -
              -
              Parameters:
              +
            • +
              +

              setLineThickness

              +
              public void setLineThickness​(java.lang.String lineThickness)
              +
              +
              Parameters:
              lineThickness - Thickness of the connecting line in em, pt, px, cm or in. e.g. : 20 pt.
              +
            • -
            - - - -
              -
            • -

              getLineStyle

              -
              public java.lang.String getLineStyle()
              -
              -
              Returns:
              +
            • +
              +

              getLineStyle

              +
              public java.lang.String getLineStyle()
              +
              +
              Returns:
              Style of the line. Supported options can be found online on the Cloud Office Print documentation.
              +
            • -
            - - - -
              -
            • -

              setLineStyle

              -
              public void setLineStyle​(java.lang.String lineStyle)
              -
              -
              Parameters:
              +
            • +
              +

              setLineStyle

              +
              public void setLineStyle​(java.lang.String lineStyle)
              +
              +
              Parameters:
              lineStyle - Style of the line. Supported options can be found online on the Cloud Office Print documentation.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class XYSeries
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html index fec740b1..b4079647 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html @@ -2,251 +2,187 @@ - -PieSeries (cloudofficeprint 21.2.1 API) + +PieSeries + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PieSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y, - java.lang.String[] colors) +
          PieSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String[] colors)
          This object represents series for a pie chart.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + - - - - + + + + - - - - + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.String[]getColors() +
      java.lang.String[]getColors()
      Note : If no colors are specified, the document's theme is used.
      com.google.gson.JsonArraygetJSONData() 
      com.google.gson.JsonArraygetJSONData() 
      voidsetColors​(java.lang.String[] colors) +
      voidsetColors​(java.lang.String[] colors)
      Note : If no colors are specified, the document's theme is used.
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PieSeries

            -
            public PieSeries​(java.lang.String name,
            -                 java.lang.String[] x,
            -                 java.lang.String[] y,
            -                 java.lang.String[] colors)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PieSeries

              +
              public PieSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String[] colors)
              This object represents series for a pie chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              @@ -256,133 +192,99 @@

              PieSeries

              fill the gaps. (setColor() doesn't have an impact on pieseries.)
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getColors

            -
            public java.lang.String[] getColors()
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getColors

              +
              public java.lang.String[] getColors()
              Note : If no colors are specified, the document's theme is used. If some colors are specified, but not for all data points, random colors will fill the gaps.
              -
              -
              Returns:
              +
              +
              Returns:
              Individual colors for each pie slice in CSS format.
              +
            • -
            - - - -
              -
            • -

              setColors

              -
              public void setColors​(java.lang.String[] colors)
              +
            • +
              +

              setColors

              +
              public void setColors​(java.lang.String[] colors)
              Note : If no colors are specified, the document's theme is used. If some colors are specified, but not for all data points, random colors will fill the gaps.
              -
              -
              Parameters:
              +
              +
              Parameters:
              colors - Individual colors for each pie slice.
              +
            • -
            - - - -
              -
            • -

              getJSONData

              -
              public com.google.gson.JsonArray getJSONData()
              -
              -
              Overrides:
              +
            • +
              +

              getJSONData

              +
              public com.google.gson.JsonArray getJSONData()
              +
              +
              Overrides:
              getJSONData in class XYSeries
              -
              Returns:
              +
              Returns:
              JsonArray of the data of the serie.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html index 8388bc08..e1cc6fa9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html @@ -2,240 +2,161 @@ - -RadarSeries (cloudofficeprint 21.2.1 API) + +RadarSeries + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          RadarSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y, - java.lang.String color, - java.lang.Boolean smooth, - java.lang.String symbol, - java.lang.String symbolSize, - java.lang.String lineThickness, - java.lang.String lineStyle) +
          RadarSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String color, +java.lang.Boolean smooth, +java.lang.String symbol, +java.lang.String symbolSize, +java.lang.String lineThickness, +java.lang.String lineStyle)
          This object represents series for a radar chart.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries

    +getJSON, getLineStyle, getLineThickness, getSmooth, getSymbol, getSymbolSize, setLineStyle, setLineThickness, setSmooth, setSymbol, setSymbolSize
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            RadarSeries

            -
            public RadarSeries​(java.lang.String name,
            -                   java.lang.String[] x,
            -                   java.lang.String[] y,
            -                   java.lang.String color,
            -                   java.lang.Boolean smooth,
            -                   java.lang.String symbol,
            -                   java.lang.String symbolSize,
            -                   java.lang.String lineThickness,
            -                   java.lang.String lineStyle)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              RadarSeries

              +
              public RadarSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y, +java.lang.String color, +java.lang.Boolean smooth, +java.lang.String symbol, +java.lang.String symbolSize, +java.lang.String lineThickness, +java.lang.String lineStyle)
              This object represents series for a radar chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              @@ -252,76 +173,53 @@

              RadarSeries

              lineStyle - Style of the line. Supported options can be found online on the Cloud Office Print documentation.
              -
            • -
            +
      -
    -
    - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html index a5aa24c5..9da614b5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html @@ -2,292 +2,197 @@ - -ScatterSeries (cloudofficeprint 21.2.1 API) + +ScatterSeries + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ScatterSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.String[] y) +
          ScatterSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
          This object represents series for a scatter charts.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ScatterSeries

            -
            public ScatterSeries​(java.lang.String name,
            -                     java.lang.String[] x,
            -                     java.lang.String[] y)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ScatterSeries

              +
              public ScatterSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.String[] y)
              This object represents series for a scatter charts. Note: x-axis should only contain numbers.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              y - Y-data of the chart.
              -
            • -
            +
      -
    -
    - + + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html index e0f577e2..25dab052 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html @@ -2,300 +2,236 @@ - -StockSeries (cloudofficeprint 21.2.1 API) + +StockSeries + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          StockSeries​(java.lang.String name, - java.lang.String[] x, - java.lang.Integer[] high, - java.lang.Integer[] low, - java.lang.Integer[] close, - java.lang.Integer[] open, - java.lang.Integer[] volume) +
          StockSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.Integer[] high, +java.lang.Integer[] low, +java.lang.Integer[] close, +java.lang.Integer[] open, +java.lang.Integer[] volume)
          This object represents series for a stock chart.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.Integer[]getClose() 
      java.lang.Integer[]getClose() 
      java.lang.Integer[]getHigh() 
      java.lang.Integer[]getHigh() 
      com.google.gson.JsonObjectgetJSON() +
      com.google.gson.JsonObjectgetJSON()
      No color needed for stockseries.
      com.google.gson.JsonArraygetJSONData() 
      com.google.gson.JsonArraygetJSONData() 
      java.lang.Integer[]getLow() 
      java.lang.Integer[]getLow() 
      java.lang.Integer[]getOpen() 
      java.lang.Integer[]getOpen() 
      java.lang.Integer[]getVolume() 
      java.lang.Integer[]getVolume() 
      voidsetClose​(java.lang.Integer[] close) 
      voidsetClose​(java.lang.Integer[] close) 
      voidsetHigh​(java.lang.Integer[] high) 
      voidsetHigh​(java.lang.Integer[] high) 
      voidsetLow​(java.lang.Integer[] low) 
      voidsetLow​(java.lang.Integer[] low) 
      voidsetOpen​(java.lang.Integer[] open) 
      voidsetOpen​(java.lang.Integer[] open) 
      voidsetVolume​(java.lang.Integer[] volume) 
      voidsetVolume​(java.lang.Integer[] volume) 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries

    +getColor, getName, getX, getY, setColor, setName, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            StockSeries

            -
            public StockSeries​(java.lang.String name,
            -                   java.lang.String[] x,
            -                   java.lang.Integer[] high,
            -                   java.lang.Integer[] low,
            -                   java.lang.Integer[] close,
            -                   java.lang.Integer[] open,
            -                   java.lang.Integer[] volume)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              StockSeries

              +
              public StockSeries​(java.lang.String name, +java.lang.String[] x, +java.lang.Integer[] high, +java.lang.Integer[] low, +java.lang.Integer[] close, +java.lang.Integer[] open, +java.lang.Integer[] volume)
              This object represents series for a stock chart.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the chart.
              x - X-data of the chart.
              high - High values for the open-high-low-close chart.
              @@ -304,248 +240,187 @@

              StockSeries

              open - Open values for the open-high-low-close chart.
              volume - Volume values for the open-high-low-close chart.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getHigh

            -
            public java.lang.Integer[] getHigh()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getHigh

              +
              public java.lang.Integer[] getHigh()
              +
              +
              Returns:
              High values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              setHigh

              -
              public void setHigh​(java.lang.Integer[] high)
              -
              -
              Parameters:
              +
            • +
              +

              setHigh

              +
              public void setHigh​(java.lang.Integer[] high)
              +
              +
              Parameters:
              high - High values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              getLow

              -
              public java.lang.Integer[] getLow()
              -
              -
              Returns:
              +
            • +
              +

              getLow

              +
              public java.lang.Integer[] getLow()
              +
              +
              Returns:
              Low values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              setLow

              -
              public void setLow​(java.lang.Integer[] low)
              -
              -
              Parameters:
              +
            • +
              +

              setLow

              +
              public void setLow​(java.lang.Integer[] low)
              +
              +
              Parameters:
              low - Low values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              getClose

              -
              public java.lang.Integer[] getClose()
              -
              -
              Returns:
              +
            • +
              +

              getClose

              +
              public java.lang.Integer[] getClose()
              +
              +
              Returns:
              Close values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              setClose

              -
              public void setClose​(java.lang.Integer[] close)
              -
              -
              Parameters:
              +
            • +
              +

              setClose

              +
              public void setClose​(java.lang.Integer[] close)
              +
              +
              Parameters:
              close - Close values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              getOpen

              -
              public java.lang.Integer[] getOpen()
              -
              -
              Returns:
              +
            • +
              +

              getOpen

              +
              public java.lang.Integer[] getOpen()
              +
              +
              Returns:
              Open values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              setOpen

              -
              public void setOpen​(java.lang.Integer[] open)
              -
              -
              Parameters:
              +
            • +
              +

              setOpen

              +
              public void setOpen​(java.lang.Integer[] open)
              +
              +
              Parameters:
              open - Open values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              getVolume

              -
              public java.lang.Integer[] getVolume()
              -
              -
              Returns:
              +
            • +
              +

              getVolume

              +
              public java.lang.Integer[] getVolume()
              +
              +
              Returns:
              Volume values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              setVolume

              -
              public void setVolume​(java.lang.Integer[] volume)
              -
              -
              Parameters:
              +
            • +
              +

              setVolume

              +
              public void setVolume​(java.lang.Integer[] volume)
              +
              +
              Parameters:
              volume - Volume values for the open-high-low-close chart.
              +
            • -
            - - - -
              -
            • -

              getJSONData

              -
              public com.google.gson.JsonArray getJSONData()
              -
              -
              Overrides:
              +
            • +
              +

              getJSONData

              +
              public com.google.gson.JsonArray getJSONData()
              +
              +
              Overrides:
              getJSONData in class XYSeries
              -
              Returns:
              +
              Returns:
              JsonArray of the data of the serie.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              No color needed for stockseries.
              -
              -
              Overrides:
              +
              +
              Overrides:
              getJSON in class XYSeries
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html index 55fb2376..d08532eb 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html @@ -2,473 +2,361 @@ - -XYSeries (cloudofficeprint 21.2.1 API) + +XYSeries + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
      • -
      -
    • -
    -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          XYSeries() 
          XYSeries() 
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringgetColor() 
      java.lang.StringgetColor() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonArraygetJSONData() 
      com.google.gson.JsonArraygetJSONData() 
      java.lang.StringgetName() 
      java.lang.StringgetName() 
      java.lang.String[]getX() 
      java.lang.String[]getX() 
      java.lang.String[]getY() 
      java.lang.String[]getY() 
      voidsetColor​(java.lang.String color) 
      voidsetColor​(java.lang.String color) 
      voidsetName​(java.lang.String name) 
      voidsetName​(java.lang.String name) 
      voidsetX​(java.lang.String[] x) 
      voidsetX​(java.lang.String[] x) 
      voidsetY​(java.lang.String[] y) 
      voidsetY​(java.lang.String[] y) 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            XYSeries

            -
            public XYSeries()
            -
          • -
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            XYSeries

            +
            public XYSeries()
            +
          +
        • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getName

              -
              public java.lang.String getName()
              -
              -
              Returns:
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getName

                +
                public java.lang.String getName()
                +
                +
                Returns:
                Name of the serie.
                +
              • -
              - - - -
                -
              • -

                setName

                -
                public void setName​(java.lang.String name)
                -
                -
                Parameters:
                +
              • +
                +

                setName

                +
                public void setName​(java.lang.String name)
                +
                +
                Parameters:
                name - Name of the serie.
                +
              • -
              - - - -
                -
              • -

                getX

                -
                public java.lang.String[] getX()
                -
                -
                Returns:
                +
              • +
                +

                getX

                +
                public java.lang.String[] getX()
                +
                +
                Returns:
                X-data of the serie.
                +
              • -
              - - - -
                -
              • -

                setX

                -
                public void setX​(java.lang.String[] x)
                -
                -
                Parameters:
                +
              • +
                +

                setX

                +
                public void setX​(java.lang.String[] x)
                +
                +
                Parameters:
                x - X-data of the serie.
                +
              • -
              - - - -
                -
              • -

                getY

                -
                public java.lang.String[] getY()
                -
                -
                Returns:
                +
              • +
                +

                getY

                +
                public java.lang.String[] getY()
                +
                +
                Returns:
                Y-data of the serie.
                +
              • -
              - - - -
                -
              • -

                setY

                -
                public void setY​(java.lang.String[] y)
                -
                -
                Parameters:
                +
              • +
                +

                setY

                +
                public void setY​(java.lang.String[] y)
                +
                +
                Parameters:
                y - Y-data of the serie.
                +
              • -
              - - - -
                -
              • -

                getColor

                -
                public java.lang.String getColor()
                -
                -
                Returns:
                +
              • +
                +

                getColor

                +
                public java.lang.String getColor()
                +
                +
                Returns:
                Color of the series in CSS format.
                +
              • -
              - - - -
                -
              • -

                setColor

                -
                public void setColor​(java.lang.String color)
                -
                -
                Parameters:
                +
              • +
                +

                setColor

                +
                public void setColor​(java.lang.String color)
                +
                +
                Parameters:
                color - Color of the series in CSS format.
                +
              • -
              - - - -
                -
              • -

                getJSONData

                -
                public com.google.gson.JsonArray getJSONData()
                -
                -
                Returns:
                +
              • +
                +

                getJSONData

                +
                public com.google.gson.JsonArray getJSONData()
                +
                +
                Returns:
                JsonArray of the data of the serie.
                +
              • -
              - - - -
                -
              • -

                getJSON

                -
                public com.google.gson.JsonObject getJSON()
                -
                -
                Returns:
                +
              • +
                +

                getJSON

                +
                public com.google.gson.JsonObject getJSON()
                +
                +
                Returns:
                JSONObject with the tags for this element for the Cloud Office Print server.
                -
              • -
              +
        -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html index 75c2dbb4..3bb13e07 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html @@ -2,242 +2,182 @@ - -com.cloudofficeprint.RenderElements.Charts.Series (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Charts.Series + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.RenderElements.Charts.Series

    -
    -
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html index fc4a2fee..beab8ff9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html @@ -2,178 +2,112 @@ - -com.cloudofficeprint.RenderElements.Charts.Series Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Charts.Series Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.RenderElements.Charts.Series

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html index 6c3d48eb..42dd5bac 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html @@ -2,180 +2,120 @@ - -com.cloudofficeprint.RenderElements.Charts (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Charts + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.RenderElements.Charts

    -
    -
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html index 40d8ecbb..5fe7d666 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html @@ -2,162 +2,96 @@ - -com.cloudofficeprint.RenderElements.Charts Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Charts Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.RenderElements.Charts

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html index 4d16ee0f..64c25e96 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html @@ -2,712 +2,559 @@ - -BarCode (cloudofficeprint 21.2.1 API) + +BarCode + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          BarCode​(java.lang.String name, - java.lang.String type, - java.lang.String value) +
          BarCode​(java.lang.String name, +java.lang.String type, +java.lang.String value)
          This class represents a barcode (created using the data of the key) for a template.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            BarCode

            -
            public BarCode​(java.lang.String name,
            -               java.lang.String type,
            -               java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              BarCode

              +
              public BarCode​(java.lang.String name, +java.lang.String type, +java.lang.String value)
              This class represents a barcode (created using the data of the key) for a template. All the options can be set with the setter functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              type - Type of barcode required. The options can be found on: http://www.cloudofficeprint.com/docs/#barcode-qrcode-tags
              value - Data to create the code from.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getHeight

            -
            public java.lang.Integer getHeight()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getHeight

              +
              public java.lang.Integer getHeight()
              +
              +
              Returns:
              Height for the generated code.
              +
            • -
            - - - -
              -
            • -

              setHeight

              -
              public void setHeight​(java.lang.Integer height)
              -
              -
              Parameters:
              +
            • +
              +

              setHeight

              +
              public void setHeight​(java.lang.Integer height)
              +
              +
              Parameters:
              height - Height for the generated code. Default is 200 for QR, 50 for the rest.
              +
            • -
            - - - -
              -
            • -

              getWidth

              -
              public java.lang.Integer getWidth()
              -
              -
              Returns:
              +
            • +
              +

              getWidth

              +
              public java.lang.Integer getWidth()
              +
              +
              Returns:
              Width for the generated code.
              +
            • -
            - - - -
              -
            • -

              setWidth

              -
              public void setWidth​(java.lang.Integer width)
              -
              -
              Parameters:
              +
            • +
              +

              setWidth

              +
              public void setWidth​(java.lang.Integer width)
              +
              +
              Parameters:
              width - Width for the generated code. Default is 200.
              +
            • -
            - - - -
              -
            • -

              getLinkUrl

              -
              public java.lang.String getLinkUrl()
              -
              -
              Returns:
              +
            • +
              +

              getLinkUrl

              +
              public java.lang.String getLinkUrl()
              +
              +
              Returns:
              URL to hyperlink to when the code is clicked.
              +
            • -
            - - - -
              -
            • -

              setLinkUrl

              -
              public void setLinkUrl​(java.lang.String linkUrl)
              -
              -
              Parameters:
              +
            • +
              +

              setLinkUrl

              +
              public void setLinkUrl​(java.lang.String linkUrl)
              +
              +
              Parameters:
              linkUrl - URL to hyperlink to when the code is clicked.
              +
            • -
            - - - -
              -
            • -

              getRotation

              -
              public java.lang.Integer getRotation()
              -
              -
              Returns:
              +
            • +
              +

              getRotation

              +
              public java.lang.Integer getRotation()
              +
              +
              Returns:
              Angle on which the inserted code should be rotated (in degrees, counterclockwise).
              +
            • -
            - - - -
              -
            • -

              setRotation

              -
              public void setRotation​(java.lang.Integer rotation)
              -
              -
              Parameters:
              +
            • +
              +

              setRotation

              +
              public void setRotation​(java.lang.Integer rotation)
              +
              +
              Parameters:
              rotation - Angle on which the inserted code should be rotated (in degrees, counterclockwise).
              +
            • -
            - - - -
              -
            • -

              getBackgroundColor

              -
              public java.lang.String getBackgroundColor()
              -
              -
              Returns:
              +
            • +
              +

              getBackgroundColor

              +
              public java.lang.String getBackgroundColor()
              +
              +
              Returns:
              The background color for the code.
              +
            • -
            - - - -
              -
            • -

              setBackgroundColor

              -
              public void setBackgroundColor​(java.lang.String backgroundColor)
              -
              -
              Parameters:
              +
            • +
              +

              setBackgroundColor

              +
              public void setBackgroundColor​(java.lang.String backgroundColor)
              +
              +
              Parameters:
              backgroundColor - The background color for the code. Default: white/ffffff.
              +
            • -
            - - - -
              -
            • -

              getPaddingWidth

              -
              public java.lang.Integer getPaddingWidth()
              -
              -
              Returns:
              +
            • +
              +

              getPaddingWidth

              +
              public java.lang.Integer getPaddingWidth()
              +
              +
              Returns:
              The padding width on the inserted code in pixels.
              +
            • -
            - - - -
              -
            • -

              setPaddingWidth

              -
              public void setPaddingWidth​(java.lang.Integer paddingWidth)
              -
              -
              Parameters:
              +
            • +
              +

              setPaddingWidth

              +
              public void setPaddingWidth​(java.lang.Integer paddingWidth)
              +
              +
              Parameters:
              paddingWidth - The padding width on the inserted code in pixels. Default 10 px.
              +
            • -
            - - - -
              -
            • -

              getPaddingHeight

              -
              public java.lang.Integer getPaddingHeight()
              -
              -
              Returns:
              +
            • +
              +

              getPaddingHeight

              +
              public java.lang.Integer getPaddingHeight()
              +
              +
              Returns:
              The padding height on the inserted code in pixels.
              +
            • -
            - - - -
              -
            • -

              setPaddingHeight

              -
              public void setPaddingHeight​(java.lang.Integer paddingHeight)
              -
              -
              Parameters:
              +
            • +
              +

              setPaddingHeight

              +
              public void setPaddingHeight​(java.lang.Integer paddingHeight)
              +
              +
              Parameters:
              paddingHeight - The padding height on the inserted code in pixels. Default 10 px.
              +
            • -
            - - - -
              -
            • -

              getQrErrorCorrectionLevel

              -
              public java.lang.String getQrErrorCorrectionLevel()
              +
            • +
              +

              getQrErrorCorrectionLevel

              +
              public java.lang.String getQrErrorCorrectionLevel()
              Only for QR codes.
              -
              -
              Returns:
              +
              +
              Returns:
              Level at which the QR code should be recoverable. The options are: "L" (up to 7% damage) "M" (up to 15% damage) "Q" (up to 25% damage) "H" (up to 30% damage)
              +
            • -
            - - - -
              -
            • -

              setQrErrorCorrectionLevel

              -
              public void setQrErrorCorrectionLevel​(java.lang.String qrErrorCorrectionLevel)
              +
            • +
              +

              setQrErrorCorrectionLevel

              +
              public void setQrErrorCorrectionLevel​(java.lang.String qrErrorCorrectionLevel)
              Only for QR codes.
              -
              -
              Parameters:
              +
              +
              Parameters:
              qrErrorCorrectionLevel - Level at which the QR code should be recoverable. The options are: "L" (up to 7% damage) "M" (up to 15% damage) "Q" (up to 25% damage) "H" (up to 30% damage)
              +
            • -
            - - - -
              -
            • -

              getExtraOptions

              -
              public java.lang.String getExtraOptions()
              +
            • +
              +

              getExtraOptions

              +
              public java.lang.String getExtraOptions()
              If you want to include extra options like including barcode text on the botto The options should be space separated and should be followed by a "=" and their value. E.g.: "includetext guardwhitespace guardwidth=3 guardheight=3". Please visit: https://github.com/bwipp/postscriptbarcode/wiki/Symbologies-Reference for all option availability.
              -
              -
              Returns:
              +
              +
              Returns:
              These extra options.
              +
            • -
            - - - -
              -
            • -

              setExtraOptions

              -
              public void setExtraOptions​(java.lang.String extraOptions)
              +
            • +
              +

              setExtraOptions

              +
              public void setExtraOptions​(java.lang.String extraOptions)
              If you want to include extra options like including barcode text on the botto The options should be space separated and should be followed by a "=" and their value. E.g.: "includetext guardwhitespace guardwidth=3 guardheight=3". Please visit: https://github.com/bwipp/postscriptbarcode/wiki/Symbologies-Reference for all option availability.
              -
              -
              Parameters:
              +
              +
              Parameters:
              extraOptions - These extra options.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html index 0646451e..dd76f985 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html @@ -2,380 +2,282 @@ - -Code (cloudofficeprint 21.2.1 API) + +Code + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Code​(java.lang.String name, - java.lang.String type, - java.lang.String value) +
          Code​(java.lang.String name, +java.lang.String type, +java.lang.String value)
          This class represents codes (barcode or QR codes) (created using the data of the key) for a template.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.lang.StringgetType() 
      java.lang.StringgetType() 
      voidsetType​(java.lang.String type) 
      voidsetType​(java.lang.String type) 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getJSON, getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Code

            -
            public Code​(java.lang.String name,
            -            java.lang.String type,
            -            java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Code

              +
              public Code​(java.lang.String name, +java.lang.String type, +java.lang.String value)
              This class represents codes (barcode or QR codes) (created using the data of the key) for a template.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              type - Type of code required. The options can be found on: http://www.cloudofficeprint.com/docs/#barcode-qrcode-tags
              value - Data to create the code from.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getType

            -
            public java.lang.String getType()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getType

              +
              public java.lang.String getType()
              +
              +
              Returns:
              Type of code required. The options can be found on: http://www.cloudofficeprint.com/docs/#barcode-qrcode-tags
              +
            • -
            - - - -
              -
            • -

              setType

              -
              public void setType​(java.lang.String type)
              -
              -
              Parameters:
              +
            • +
              +

              setType

              +
              public void setType​(java.lang.String type)
              +
              +
              Parameters:
              type - Type of code required. The options can be found on: http://www.cloudofficeprint.com/docs/#barcode-qrcode-tags
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html index f8c90a6b..7372208c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html @@ -2,308 +2,230 @@ - -EmailQRCode (cloudofficeprint 21.2.1 API) + +EmailQRCode + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class EmailQRCode

    + +

    Class EmailQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          EmailQRCode​(java.lang.String name, - java.lang.String receiver, - java.lang.String cc, - java.lang.String bcc, - java.lang.String subject, - java.lang.String body) +
          EmailQRCode​(java.lang.String name, +java.lang.String receiver, +java.lang.String cc, +java.lang.String bcc, +java.lang.String subject, +java.lang.String body)
          This object represents a mail QR-code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            EmailQRCode

            -
            public EmailQRCode​(java.lang.String name,
            -                   java.lang.String receiver,
            -                   java.lang.String cc,
            -                   java.lang.String bcc,
            -                   java.lang.String subject,
            -                   java.lang.String body)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              EmailQRCode

              +
              public EmailQRCode​(java.lang.String name, +java.lang.String receiver, +java.lang.String cc, +java.lang.String bcc, +java.lang.String subject, +java.lang.String body)
              This object represents a mail QR-code. Use null if you don't want to specify some options. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              receiver - Mail address of the receiver.
              cc - Extra receivers (cc).
              @@ -311,206 +233,154 @@

              EmailQRCode

              subject - Subject of the e-mail.
              body - Body of the e-mail.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getCc

            -
            public java.lang.String getCc()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getCc

              +
              public java.lang.String getCc()
              +
              +
              Returns:
              Extra receiver (cc).
              +
            • -
            - - - -
              -
            • -

              setCc

              -
              public void setCc​(java.lang.String cc)
              -
              -
              Parameters:
              +
            • +
              +

              setCc

              +
              public void setCc​(java.lang.String cc)
              +
              +
              Parameters:
              cc - Extra receiver (cc).
              +
            • -
            - - - -
              -
            • -

              getBcc

              -
              public java.lang.String getBcc()
              -
              -
              Returns:
              +
            • +
              +

              getBcc

              +
              public java.lang.String getBcc()
              +
              +
              Returns:
              Blind receiver (bcc).
              +
            • -
            - - - -
              -
            • -

              setBcc

              -
              public void setBcc​(java.lang.String bcc)
              -
              -
              Parameters:
              +
            • +
              +

              setBcc

              +
              public void setBcc​(java.lang.String bcc)
              +
              +
              Parameters:
              bcc - Blind receiver (bcc).
              +
            • -
            - - - -
              -
            • -

              getSubject

              -
              public java.lang.String getSubject()
              -
              -
              Returns:
              +
            • +
              +

              getSubject

              +
              public java.lang.String getSubject()
              +
              +
              Returns:
              Subject of the e-mail.
              +
            • -
            - - - -
              -
            • -

              setSubject

              -
              public void setSubject​(java.lang.String subject)
              -
              -
              Parameters:
              +
            • +
              +

              setSubject

              +
              public void setSubject​(java.lang.String subject)
              +
              +
              Parameters:
              subject - Subject of the e-mail.
              +
            • -
            - - - -
              -
            • -

              getBody

              -
              public java.lang.String getBody()
              -
              -
              Returns:
              +
            • +
              +

              getBody

              +
              public java.lang.String getBody()
              +
              +
              Returns:
              Body of the e-mail.
              +
            • -
            - - - -
              -
            • -

              setBody

              -
              public void setBody​(java.lang.String body)
              -
              -
              Parameters:
              +
            • +
              +

              setBody

              +
              public void setBody​(java.lang.String body)
              +
              +
              Parameters:
              body - Body of the e-mail.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html index c7a10cb1..992bfdc2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html @@ -2,437 +2,319 @@ - -EventQRCode (cloudofficeprint 21.2.1 API) + +EventQRCode + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class EventQRCode

    + +

    Class EventQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          EventQRCode​(java.lang.String name, - java.lang.String summary, - java.lang.String startdate, - java.lang.String enddate) +
          EventQRCode​(java.lang.String name, +java.lang.String summary, +java.lang.String startdate, +java.lang.String enddate)
          This object represents a Event QR Code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            EventQRCode

            -
            public EventQRCode​(java.lang.String name,
            -                   java.lang.String summary,
            -                   java.lang.String startdate,
            -                   java.lang.String enddate)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              EventQRCode

              +
              public EventQRCode​(java.lang.String name, +java.lang.String summary, +java.lang.String startdate, +java.lang.String enddate)
              This object represents a Event QR Code. Use null if you don't want to specify an option. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              summary - Summary of the event.
              startdate - Latitude.
              enddate - Altitude.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getStartDate

            -
            public java.lang.String getStartDate()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getStartDate

              +
              public java.lang.String getStartDate()
              +
              +
              Returns:
              Starting date of the event.
              +
            • -
            - - - -
              -
            • -

              setStartDate

              -
              public void setStartDate​(java.lang.String startDate)
              -
              -
              Parameters:
              +
            • +
              +

              setStartDate

              +
              public void setStartDate​(java.lang.String startDate)
              +
              +
              Parameters:
              startDate - Starting date of the event.
              +
            • -
            - - - -
              -
            • -

              getEndDate

              -
              public java.lang.String getEndDate()
              -
              -
              Returns:
              +
            • +
              +

              getEndDate

              +
              public java.lang.String getEndDate()
              +
              +
              Returns:
              Ending date of the event.
              +
            • -
            - - - -
              -
            • -

              setEndDate

              -
              public void setEndDate​(java.lang.String endDate)
              -
              -
              Parameters:
              +
            • +
              +

              setEndDate

              +
              public void setEndDate​(java.lang.String endDate)
              +
              +
              Parameters:
              endDate - Ending date of the event.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html index 3f71ffce..c5baf2f1 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html @@ -2,437 +2,319 @@ - -GeolocationQRCode (cloudofficeprint 21.2.1 API) + +GeolocationQRCode + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class GeolocationQRCode

    + +

    Class GeolocationQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          GeolocationQRCode​(java.lang.String name, - java.lang.String latitude, - java.lang.String altitude, - java.lang.String longitude) +
          GeolocationQRCode​(java.lang.String name, +java.lang.String latitude, +java.lang.String altitude, +java.lang.String longitude)
          This object represents a VCF or vCard QR Code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            GeolocationQRCode

            -
            public GeolocationQRCode​(java.lang.String name,
            -                         java.lang.String latitude,
            -                         java.lang.String altitude,
            -                         java.lang.String longitude)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              GeolocationQRCode

              +
              public GeolocationQRCode​(java.lang.String name, +java.lang.String latitude, +java.lang.String altitude, +java.lang.String longitude)
              This object represents a VCF or vCard QR Code. Use null if you don't want to specify an option. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              latitude - Latitude.
              altitude - Altitude.
              longitude - Longitude.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getAltitude

            -
            public java.lang.String getAltitude()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getAltitude

              +
              public java.lang.String getAltitude()
              +
              +
              Returns:
              Altitude.
              +
            • -
            - - - -
              -
            • -

              setAltitude

              -
              public void setAltitude​(java.lang.String altitude)
              -
              -
              Parameters:
              +
            • +
              +

              setAltitude

              +
              public void setAltitude​(java.lang.String altitude)
              +
              +
              Parameters:
              altitude - Altitude.
              +
            • -
            - - - -
              -
            • -

              getLongitude

              -
              public java.lang.String getLongitude()
              -
              -
              Returns:
              +
            • +
              +

              getLongitude

              +
              public java.lang.String getLongitude()
              +
              +
              Returns:
              Longitude.
              +
            • -
            - - - -
              -
            • -

              setLongitude

              -
              public void setLongitude​(java.lang.String longitude)
              -
              -
              Parameters:
              +
            • +
              +

              setLongitude

              +
              public void setLongitude​(java.lang.String longitude)
              +
              +
              Parameters:
              longitude - Longitude.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html index eee0f371..e50f91a0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html @@ -2,368 +2,290 @@ - -MECardQRCode (cloudofficeprint 21.2.1 API) + +MECardQRCode + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class MECardQRCode

    + +

    Class MECardQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          MECardQRCode​(java.lang.String name, - java.lang.String firstName, - java.lang.String lastName, - java.lang.String nickname, - java.lang.String email, - java.lang.String contactPrimary, - java.lang.String contactSecondary, - java.lang.String contactTertiary, - java.lang.String website, - java.lang.String birthday, - java.lang.String notes) +
          MECardQRCode​(java.lang.String name, +java.lang.String firstName, +java.lang.String lastName, +java.lang.String nickname, +java.lang.String email, +java.lang.String contactPrimary, +java.lang.String contactSecondary, +java.lang.String contactTertiary, +java.lang.String website, +java.lang.String birthday, +java.lang.String notes)
          This object represents a VCF or vCard QR Code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            MECardQRCode

            -
            public MECardQRCode​(java.lang.String name,
            -                    java.lang.String firstName,
            -                    java.lang.String lastName,
            -                    java.lang.String nickname,
            -                    java.lang.String email,
            -                    java.lang.String contactPrimary,
            -                    java.lang.String contactSecondary,
            -                    java.lang.String contactTertiary,
            -                    java.lang.String website,
            -                    java.lang.String birthday,
            -                    java.lang.String notes)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              MECardQRCode

              +
              public MECardQRCode​(java.lang.String name, +java.lang.String firstName, +java.lang.String lastName, +java.lang.String nickname, +java.lang.String email, +java.lang.String contactPrimary, +java.lang.String contactSecondary, +java.lang.String contactTertiary, +java.lang.String website, +java.lang.String birthday, +java.lang.String notes)
              This object represents a VCF or vCard QR Code. Use null if you don't want to specify an option. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              firstName - First name.
              lastName - Last name.
              @@ -376,336 +298,254 @@

              MECardQRCode

              birthday - Birthday.
              notes - Notes.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getLastName

            -
            public java.lang.String getLastName()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getLastName

              +
              public java.lang.String getLastName()
              +
              +
              Returns:
              Last name.
              +
            • -
            - - - -
              -
            • -

              setLastName

              -
              public void setLastName​(java.lang.String lastName)
              -
              -
              Parameters:
              +
            • +
              +

              setLastName

              +
              public void setLastName​(java.lang.String lastName)
              +
              +
              Parameters:
              lastName - Last name.
              +
            • -
            - - - -
              -
            • -

              getNickname

              -
              public java.lang.String getNickname()
              -
              -
              Returns:
              +
            • +
              +

              getNickname

              +
              public java.lang.String getNickname()
              +
              +
              Returns:
              Nickname.
              +
            • -
            - - - -
              -
            • -

              setNickname

              -
              public void setNickname​(java.lang.String nickname)
              -
              -
              Parameters:
              +
            • +
              +

              setNickname

              +
              public void setNickname​(java.lang.String nickname)
              +
              +
              Parameters:
              nickname - Nickname.
              +
            • -
            - - - -
              -
            • -

              getEmail

              -
              public java.lang.String getEmail()
              -
              -
              Returns:
              +
            • +
              +

              getEmail

              +
              public java.lang.String getEmail()
              +
              +
              Returns:
              Email.
              +
            • -
            - - - -
              -
            • -

              setEmail

              -
              public void setEmail​(java.lang.String email)
              -
              -
              Parameters:
              +
            • +
              +

              setEmail

              +
              public void setEmail​(java.lang.String email)
              +
              +
              Parameters:
              email - Email.
              +
            • -
            - - - -
              -
            • -

              getContactPrimary

              -
              public java.lang.String getContactPrimary()
              -
              -
              Returns:
              +
            • +
              +

              getContactPrimary

              +
              public java.lang.String getContactPrimary()
              +
              +
              Returns:
              Phone number.
              +
            • -
            - - - -
              -
            • -

              setContactPrimary

              -
              public void setContactPrimary​(java.lang.String contactPrimary)
              -
              -
              Parameters:
              +
            • +
              +

              setContactPrimary

              +
              public void setContactPrimary​(java.lang.String contactPrimary)
              +
              +
              Parameters:
              contactPrimary - Phone number.
              +
            • -
            - - - -
              -
            • -

              getContactSecondary

              -
              public java.lang.String getContactSecondary()
              -
              -
              Returns:
              +
            • +
              +

              getContactSecondary

              +
              public java.lang.String getContactSecondary()
              +
              +
              Returns:
              Second phone number.
              +
            • -
            - - - -
              -
            • -

              setContactSecondary

              -
              public void setContactSecondary​(java.lang.String contactSecondary)
              -
              -
              Parameters:
              +
            • +
              +

              setContactSecondary

              +
              public void setContactSecondary​(java.lang.String contactSecondary)
              +
              +
              Parameters:
              contactSecondary - Second phone number.
              +
            • -
            - - - -
              -
            • -

              getContactTertiary

              -
              public java.lang.String getContactTertiary()
              -
              -
              Returns:
              +
            • +
              +

              getContactTertiary

              +
              public java.lang.String getContactTertiary()
              +
              +
              Returns:
              Third phone number.
              +
            • -
            - - - -
              -
            • -

              setContactTertiary

              -
              public void setContactTertiary​(java.lang.String contactTertiary)
              -
              -
              Parameters:
              +
            • +
              +

              setContactTertiary

              +
              public void setContactTertiary​(java.lang.String contactTertiary)
              +
              +
              Parameters:
              contactTertiary - Third phone number.
              +
            • -
            - - - -
              -
            • -

              getWebsite

              -
              public java.lang.String getWebsite()
              -
              -
              Returns:
              +
            • +
              +

              getWebsite

              +
              public java.lang.String getWebsite()
              +
              +
              Returns:
              Website.
              +
            • -
            - - - -
              -
            • -

              setWebsite

              -
              public void setWebsite​(java.lang.String website)
              -
              -
              Parameters:
              +
            • +
              +

              setWebsite

              +
              public void setWebsite​(java.lang.String website)
              +
              +
              Parameters:
              website - Website.
              +
            • -
            - - - -
              -
            • -

              getBirthday

              -
              public java.lang.String getBirthday()
              -
              -
              Returns:
              +
            • +
              +

              getBirthday

              +
              public java.lang.String getBirthday()
              +
              +
              Returns:
              Birthday.
              +
            • -
            - - - -
              -
            • -

              setBirthday

              -
              public void setBirthday​(java.lang.String birthday)
              -
              -
              Parameters:
              +
            • +
              +

              setBirthday

              +
              public void setBirthday​(java.lang.String birthday)
              +
              +
              Parameters:
              birthday - Birthday.
              +
            • -
            - - - -
              -
            • -

              getNotes

              -
              public java.lang.String getNotes()
              -
              -
              Returns:
              +
            • +
              +

              getNotes

              +
              public java.lang.String getNotes()
              +
              +
              Returns:
              Notes.
              +
            • -
            - - - -
              -
            • -

              setNotes

              -
              public void setNotes​(java.lang.String notes)
              -
              -
              Parameters:
              +
            • +
              +

              setNotes

              +
              public void setNotes​(java.lang.String notes)
              +
              +
              Parameters:
              notes - Notes.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html index 1813456e..418c7fd1 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html @@ -2,1315 +2,1060 @@ - -QRCode (cloudofficeprint 21.2.1 API) + +QRCode + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          QRCode​(java.lang.String name, - java.lang.String type, - java.lang.String value) +
          QRCode​(java.lang.String name, +java.lang.String type, +java.lang.String value)
          This class is a subclass of Code and serves as a superclass for the different types of QR-codes.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            QRCode

            -
            public QRCode​(java.lang.String name,
            -              java.lang.String type,
            -              java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              QRCode

              +
              public QRCode​(java.lang.String name, +java.lang.String type, +java.lang.String value)
              This class is a subclass of Code and serves as a superclass for the different types of QR-codes. It contains all the styling options of the QR codes.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              type - Type of code required. The options can be found on: http://www.cloudofficeprint.com/docs/#barcode-qrcode-tags
              value - Data to create the code from.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getDotScale

            -
            public java.lang.Integer getDotScale()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getDotScale

              +
              public java.lang.Integer getDotScale()
              +
              +
              Returns:
              For body block, must be greater than 0, less than or equal to 1. default is 1.
              +
            • -
            - - - -
              -
            • -

              setDotScale

              -
              public void setDotScale​(java.lang.Integer dotScale)
              -
              -
              Parameters:
              +
            • +
              +

              setDotScale

              +
              public void setDotScale​(java.lang.Integer dotScale)
              +
              +
              Parameters:
              dotScale - For body block, must be greater than 0, less than or equal to 1. default is 1
              +
            • -
            - - - -
              -
            • -

              getLogo

              -
              public java.lang.String getLogo()
              -
              -
              Returns:
              +
            • +
              +

              getLogo

              +
              public java.lang.String getLogo()
              +
              +
              Returns:
              Logo image of the QR code base64 or URL.
              +
            • -
            - - - -
              -
            • -

              setLogo

              -
              public void setLogo​(java.lang.String logo)
              -
              -
              Parameters:
              +
            • +
              +

              setLogo

              +
              public void setLogo​(java.lang.String logo)
              +
              +
              Parameters:
              logo - Logo image of the QR code, base64 or URL.
              +
            • -
            - - - -
              -
            • -

              setLogoFromLocalFile

              -
              public void setLogoFromLocalFile​(java.lang.String filePath)
              -                          throws java.io.IOException
              +
            • +
              +

              setLogoFromLocalFile

              +
              public void setLogoFromLocalFile​(java.lang.String filePath) + throws java.io.IOException
              Sets the logo to the given image from the path.
              -
              -
              Parameters:
              +
              +
              Parameters:
              filePath - Path of the local file.
              -
              Throws:
              +
              Throws:
              java.io.IOException - If file not found.
              +
            • -
            - - - -
              -
            • -

              getBackGroundImage

              -
              public java.lang.String getBackGroundImage()
              -
              -
              Returns:
              +
            • +
              +

              getBackGroundImage

              +
              public java.lang.String getBackGroundImage()
              +
              +
              Returns:
              Background image of the QR code, base64 or URL.
              +
            • -
            - - - -
              -
            • -

              setBackGroundImage

              -
              public void setBackGroundImage​(java.lang.String backGroundImage)
              -
              -
              Parameters:
              +
            • +
              +

              setBackGroundImage

              +
              public void setBackGroundImage​(java.lang.String backGroundImage)
              +
              +
              Parameters:
              backGroundImage - Background image of the QR code, base64 or URL.
              +
            • -
            - - - -
              -
            • -

              setBackGroundImageFromLocalFile

              -
              public void setBackGroundImageFromLocalFile​(java.lang.String filePath)
              -                                     throws java.io.IOException
              +
            • +
              +

              setBackGroundImageFromLocalFile

              +
              public void setBackGroundImageFromLocalFile​(java.lang.String filePath) + throws java.io.IOException
              Sets the background image of the QR code to the given image from the path.
              -
              -
              Parameters:
              +
              +
              Parameters:
              filePath - Path of the local file.
              -
              Throws:
              +
              Throws:
              java.io.IOException - If file not found.
              +
            • -
            - - - -
              -
            • -

              getColorDark

              -
              public java.lang.String getColorDark()
              -
              -
              Returns:
              +
            • +
              +

              getColorDark

              +
              public java.lang.String getColorDark()
              +
              +
              Returns:
              Dark color of the QR code.
              +
            • -
            - - - -
              -
            • -

              setColorDark

              -
              public void setColorDark​(java.lang.String colorDark)
              -
              -
              Parameters:
              +
            • +
              +

              setColorDark

              +
              public void setColorDark​(java.lang.String colorDark)
              +
              +
              Parameters:
              colorDark - Dark color of the QR code.
              +
            • -
            - - - -
              -
            • -

              getColorLight

              -
              public java.lang.String getColorLight()
              -
              -
              Returns:
              +
            • +
              +

              getColorLight

              +
              public java.lang.String getColorLight()
              +
              +
              Returns:
              Light color of the QR code.
              +
            • -
            - - - -
              -
            • -

              setColorLight

              -
              public void setColorLight​(java.lang.String colorLight)
              -
              -
              Parameters:
              +
            • +
              +

              setColorLight

              +
              public void setColorLight​(java.lang.String colorLight)
              +
              +
              Parameters:
              colorLight - Light color of the QR code.
              +
            • -
            - - - -
              -
            • -

              getWidthLogo

              -
              public java.lang.Integer getWidthLogo()
              -
              -
              Returns:
              +
            • +
              +

              getWidthLogo

              +
              public java.lang.Integer getWidthLogo()
              +
              +
              Returns:
              Width of the logo in px.
              +
            • -
            - - - -
              -
            • -

              setWidthLogo

              -
              public void setWidthLogo​(java.lang.Integer widthLogo)
              -
              -
              Parameters:
              +
            • +
              +

              setWidthLogo

              +
              public void setWidthLogo​(java.lang.Integer widthLogo)
              +
              +
              Parameters:
              widthLogo - Width of the logo in px.
              +
            • -
            - - - -
              -
            • -

              getHeightLogo

              -
              public java.lang.Integer getHeightLogo()
              -
              -
              Returns:
              +
            • +
              +

              getHeightLogo

              +
              public java.lang.Integer getHeightLogo()
              +
              +
              Returns:
              Height of the logo in px.
              +
            • -
            - - - -
              -
            • -

              setHeightLogo

              -
              public void setHeightLogo​(java.lang.Integer heightLogo)
              -
              -
              Parameters:
              +
            • +
              +

              setHeightLogo

              +
              public void setHeightLogo​(java.lang.Integer heightLogo)
              +
              +
              Parameters:
              heightLogo - Height of the logo in px.
              +
            • -
            - - - -
              -
            • -

              getLogoBackGroundColor

              -
              public java.lang.String getLogoBackGroundColor()
              -
              -
              Returns:
              +
            • +
              +

              getLogoBackGroundColor

              +
              public java.lang.String getLogoBackGroundColor()
              +
              +
              Returns:
              Background color of the QR code.
              +
            • -
            - - - -
              -
            • -

              setLogoBackGroundColor

              -
              public void setLogoBackGroundColor​(java.lang.String logoBackGroundColor)
              -
              -
              Parameters:
              +
            • +
              +

              setLogoBackGroundColor

              +
              public void setLogoBackGroundColor​(java.lang.String logoBackGroundColor)
              +
              +
              Parameters:
              logoBackGroundColor - Background color of the QR code.
              +
            • -
            - - - -
              -
            • -

              getQuietZone

              -
              public java.lang.Integer getQuietZone()
              -
              -
              Returns:
              +
            • +
              +

              getQuietZone

              +
              public java.lang.Integer getQuietZone()
              +
              +
              Returns:
              Padding around the QR code.
              +
            • -
            - - - -
              -
            • -

              setQuietZone

              -
              public void setQuietZone​(java.lang.Integer quietZone)
              -
              -
              Parameters:
              +
            • +
              +

              setQuietZone

              +
              public void setQuietZone​(java.lang.Integer quietZone)
              +
              +
              Parameters:
              quietZone - Padding around the QR code.
              +
            • -
            - - - -
              -
            • -

              getQuietZoneColor

              -
              public java.lang.String getQuietZoneColor()
              -
              -
              Returns:
              +
            • +
              +

              getQuietZoneColor

              +
              public java.lang.String getQuietZoneColor()
              +
              +
              Returns:
              Color of the padding area.
              +
            • -
            - - - -
              -
            • -

              setQuietZoneColor

              -
              public void setQuietZoneColor​(java.lang.String quietZoneColor)
              -
              -
              Parameters:
              +
            • +
              +

              setQuietZoneColor

              +
              public void setQuietZoneColor​(java.lang.String quietZoneColor)
              +
              +
              Parameters:
              quietZoneColor - Color of the padding area.
              +
            • -
            - - - -
              -
            • -

              getBackgroundImageAlpha

              -
              public java.lang.Double getBackgroundImageAlpha()
              -
              -
              Returns:
              +
            • +
              +

              getBackgroundImageAlpha

              +
              public java.lang.Double getBackgroundImageAlpha()
              +
              +
              Returns:
              Background image transparency, value between 0 and 1. default is 1
              +
            • -
            - - - -
              -
            • -

              setBackgroundImageAlpha

              -
              public void setBackgroundImageAlpha​(java.lang.Double backgroundImageAlpha)
              -
              -
              Parameters:
              +
            • +
              +

              setBackgroundImageAlpha

              +
              public void setBackgroundImageAlpha​(java.lang.Double backgroundImageAlpha)
              +
              +
              Parameters:
              backgroundImageAlpha - Background image transparency, value between 0 and 1. default is 1
              +
            • -
            - - - -
              -
            • -

              getPoColor

              -
              public java.lang.String getPoColor()
              -
              -
              Returns:
              +
            • +
              +

              getPoColor

              +
              public java.lang.String getPoColor()
              +
              +
              Returns:
              Global Position Outer color. If not set, the defaut is `colorDark`.
              +
            • -
            - - - -
              -
            • -

              setPoColor

              -
              public void setPoColor​(java.lang.String poColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPoColor

              +
              public void setPoColor​(java.lang.String poColor)
              +
              +
              Parameters:
              poColor - Global Position Inner color. If not set, the defaut is `colorDark`.
              +
            • -
            - - - -
              -
            • -

              getPiColor

              -
              public java.lang.String getPiColor()
              -
              -
              Returns:
              +
            • +
              +

              getPiColor

              +
              public java.lang.String getPiColor()
              +
              +
              Returns:
              Position Inner color - Top Left.
              +
            • -
            - - - -
              -
            • -

              setPiColor

              -
              public void setPiColor​(java.lang.String piColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPiColor

              +
              public void setPiColor​(java.lang.String piColor)
              +
              +
              Parameters:
              piColor - Position Inner color - Top Left.
              +
            • -
            - - - -
              -
            • -

              getPoTLColor

              -
              public java.lang.String getPoTLColor()
              -
              -
              Returns:
              +
            • +
              +

              getPoTLColor

              +
              public java.lang.String getPoTLColor()
              +
              +
              Returns:
              Position Outer color - Top Left.
              +
            • -
            - - - -
              -
            • -

              setPoTLColor

              -
              public void setPoTLColor​(java.lang.String poTLColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPoTLColor

              +
              public void setPoTLColor​(java.lang.String poTLColor)
              +
              +
              Parameters:
              poTLColor - Position Outer color - Top Left.
              +
            • -
            - - - -
              -
            • -

              getPiTLColor

              -
              public java.lang.String getPiTLColor()
              -
              -
              Returns:
              +
            • +
              +

              getPiTLColor

              +
              public java.lang.String getPiTLColor()
              +
              +
              Returns:
              Position Inner color - Top Left.
              +
            • -
            - - - -
              -
            • -

              setPiTLColor

              -
              public void setPiTLColor​(java.lang.String piTLColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPiTLColor

              +
              public void setPiTLColor​(java.lang.String piTLColor)
              +
              +
              Parameters:
              piTLColor - Position Inner color - Top Left.
              +
            • -
            - - - -
              -
            • -

              getPoTRColor

              -
              public java.lang.String getPoTRColor()
              -
              -
              Returns:
              +
            • +
              +

              getPoTRColor

              +
              public java.lang.String getPoTRColor()
              +
              +
              Returns:
              Position Outer color - Top Right.
              +
            • -
            - - - -
              -
            • -

              setPoTRColor

              -
              public void setPoTRColor​(java.lang.String poTRColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPoTRColor

              +
              public void setPoTRColor​(java.lang.String poTRColor)
              +
              +
              Parameters:
              poTRColor - Position Outer color - Top Right.
              +
            • -
            - - - -
              -
            • -

              getPiTRColor

              -
              public java.lang.String getPiTRColor()
              -
              -
              Returns:
              +
            • +
              +

              getPiTRColor

              +
              public java.lang.String getPiTRColor()
              +
              +
              Returns:
              Position Inner color - Top Right.
              +
            • -
            - - - -
              -
            • -

              setPiTRColor

              -
              public void setPiTRColor​(java.lang.String piTRColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPiTRColor

              +
              public void setPiTRColor​(java.lang.String piTRColor)
              +
              +
              Parameters:
              piTRColor - Position Inner color - Top Right.
              +
            • -
            - - - -
              -
            • -

              getPoBLColor

              -
              public java.lang.String getPoBLColor()
              -
              -
              Returns:
              +
            • +
              +

              getPoBLColor

              +
              public java.lang.String getPoBLColor()
              +
              +
              Returns:
              Position Outer color - Bottom Left.
              +
            • -
            - - - -
              -
            • -

              setPoBLColor

              -
              public void setPoBLColor​(java.lang.String poBLColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPoBLColor

              +
              public void setPoBLColor​(java.lang.String poBLColor)
              +
              +
              Parameters:
              poBLColor - Position Outer color - Bottom Left.
              +
            • -
            - - - -
              -
            • -

              getPiBLColor

              -
              public java.lang.String getPiBLColor()
              -
              -
              Returns:
              +
            • +
              +

              getPiBLColor

              +
              public java.lang.String getPiBLColor()
              +
              +
              Returns:
              Position Inner color - Bottom Left.
              +
            • -
            - - - -
              -
            • -

              setPiBLColor

              -
              public void setPiBLColor​(java.lang.String piBLColor)
              -
              -
              Parameters:
              +
            • +
              +

              setPiBLColor

              +
              public void setPiBLColor​(java.lang.String piBLColor)
              +
              +
              Parameters:
              piBLColor - Position Inner color - Bottom Left.
              +
            • -
            - - - -
              -
            • -

              getTimingVColor

              -
              public java.lang.String getTimingVColor()
              -
              -
              Returns:
              +
            • +
              +

              getTimingVColor

              +
              public java.lang.String getTimingVColor()
              +
              +
              Returns:
              Vertical timing color.
              +
            • -
            - - - -
              -
            • -

              setTimingVColor

              -
              public void setTimingVColor​(java.lang.String timingVColor)
              -
              -
              Parameters:
              +
            • +
              +

              setTimingVColor

              +
              public void setTimingVColor​(java.lang.String timingVColor)
              +
              +
              Parameters:
              timingVColor - Vertical timing color.
              +
            • -
            - - - -
              -
            • -

              getTimingHColor

              -
              public java.lang.String getTimingHColor()
              -
              -
              Returns:
              +
            • +
              +

              getTimingHColor

              +
              public java.lang.String getTimingHColor()
              +
              +
              Returns:
              Horizontal timing color.
              +
            • -
            - - - -
              -
            • -

              setTimingHColor

              -
              public void setTimingHColor​(java.lang.String timingHColor)
              -
              -
              Parameters:
              +
            • +
              +

              setTimingHColor

              +
              public void setTimingHColor​(java.lang.String timingHColor)
              +
              +
              Parameters:
              timingHColor - Horizontal timing color.
              +
            • -
            - - - -
              -
            • -

              getTimingColor

              -
              public java.lang.String getTimingColor()
              -
              -
              Returns:
              +
            • +
              +

              getTimingColor

              +
              public java.lang.String getTimingColor()
              +
              +
              Returns:
              Global timing color.
              +
            • -
            - - - -
              -
            • -

              setTimingColor

              -
              public void setTimingColor​(java.lang.String timingColor)
              -
              -
              Parameters:
              +
            • +
              +

              setTimingColor

              +
              public void setTimingColor​(java.lang.String timingColor)
              +
              +
              Parameters:
              timingColor - Global timing color.
              +
            • -
            - - - -
              -
            • -

              getAutoColor

              -
              public java.lang.Boolean getAutoColor()
              -
              -
              Returns:
              +
            • +
              +

              getAutoColor

              +
              public java.lang.Boolean getAutoColor()
              +
              +
              Returns:
              Automatic color adjustment(for data block) (default is false) (set to false if using background images).
              +
            • -
            - - - -
              -
            • -

              setAutoColor

              -
              public void setAutoColor​(java.lang.Boolean autoColor)
              -
              -
              Parameters:
              +
            • +
              +

              setAutoColor

              +
              public void setAutoColor​(java.lang.Boolean autoColor)
              +
              +
              Parameters:
              autoColor - Automatic color adjustment(for data block) (default is false) (set to false if using background images).
              +
            • -
            - - - -
              -
            • -

              getAutoColorDark

              -
              public java.lang.String getAutoColorDark()
              -
              -
              Returns:
              +
            • +
              +

              getAutoColorDark

              +
              public java.lang.String getAutoColorDark()
              +
              +
              Returns:
              Automatic color: dark CSS color (only required when qr_auto_color is set true) (dark color preferred, otherwise may lead to undetectable QR).
              +
            • -
            - - - -
              -
            • -

              setAutoColorDark

              -
              public void setAutoColorDark​(java.lang.String autoColorDark)
              -
              -
              Parameters:
              +
            • +
              +

              setAutoColorDark

              +
              public void setAutoColorDark​(java.lang.String autoColorDark)
              +
              +
              Parameters:
              autoColorDark - Automatic color: dark CSS color (only required when qr_auto_color is set true) (dark color preferred, otherwise may lead to undetectable QR).
              +
            • -
            - - - -
              -
            • -

              getAutoColorLight

              -
              public java.lang.String getAutoColorLight()
              -
              -
              Returns:
              +
            • +
              +

              getAutoColorLight

              +
              public java.lang.String getAutoColorLight()
              +
              +
              Returns:
              Automatic color: light CSS color (only required when qr_auto_color is set true).
              +
            • -
            - - - -
              -
            • -

              setAutoColorLight

              -
              public void setAutoColorLight​(java.lang.String autoColorLight)
              -
              -
              Parameters:
              +
            • +
              +

              setAutoColorLight

              +
              public void setAutoColorLight​(java.lang.String autoColorLight)
              +
              +
              Parameters:
              autoColorLight - Automatic color: light CSS color (only required when qr_auto_color is set true).
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html index 9ad9ad71..fb254bd0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html @@ -2,397 +2,285 @@ - -SMSQRCode (cloudofficeprint 21.2.1 API) + +SMSQRCode + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class SMSQRCode

    + +

    Class SMSQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          SMSQRCode​(java.lang.String name, - java.lang.String receiver, - java.lang.String body) +
          SMSQRCode​(java.lang.String name, +java.lang.String receiver, +java.lang.String body)
          This object represents a SMS QR-code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            SMSQRCode

            -
            public SMSQRCode​(java.lang.String name,
            -                 java.lang.String receiver,
            -                 java.lang.String body)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              SMSQRCode

              +
              public SMSQRCode​(java.lang.String name, +java.lang.String receiver, +java.lang.String body)
              This object represents a SMS QR-code. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              receiver - Phone number of the receiver.
              body - Body of the SMS.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getBody

            -
            public java.lang.String getBody()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getBody

              +
              public java.lang.String getBody()
              +
              +
              Returns:
              Body of the SMS.
              +
            • -
            - - - -
              -
            • -

              setBody

              -
              public void setBody​(java.lang.String body)
              -
              -
              Parameters:
              +
            • +
              +

              setBody

              +
              public void setBody​(java.lang.String body)
              +
              +
              Parameters:
              body - Body of the SMS.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html index cb605100..8803e1be 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html @@ -2,358 +2,252 @@ - -TelephoneNumberQRCode (cloudofficeprint 21.2.1 API) + +TelephoneNumberQRCode + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class TelephoneNumberQRCode

    + +

    Class TelephoneNumberQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          TelephoneNumberQRCode​(java.lang.String name, - java.lang.String number) +
          TelephoneNumberQRCode​(java.lang.String name, +java.lang.String number)
          This object represents a telephone number QR-code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            TelephoneNumberQRCode

            -
            public TelephoneNumberQRCode​(java.lang.String name,
            -                             java.lang.String number)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              TelephoneNumberQRCode

              +
              public TelephoneNumberQRCode​(java.lang.String name, +java.lang.String number)
              This object represents a telephone number QR-code. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              number - Phone number to create the code from.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Overrides:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html index 7eae4039..fae865be 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html @@ -2,358 +2,252 @@ - -URLQRCode (cloudofficeprint 21.2.1 API) + +URLQRCode + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class URLQRCode

    + +

    Class URLQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          URLQRCode​(java.lang.String name, - java.lang.String url) +
          URLQRCode​(java.lang.String name, +java.lang.String url)
          This object represents a URL QR-code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            URLQRCode

            -
            public URLQRCode​(java.lang.String name,
            -                 java.lang.String url)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              URLQRCode

              +
              public URLQRCode​(java.lang.String name, +java.lang.String url)
              This object represents a URL QR-code. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              url - Data to create the code from.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Overrides:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html index 8ecaa947..783715bb 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html @@ -2,511 +2,381 @@ - -VCardQRCode (cloudofficeprint 21.2.1 API) + +VCardQRCode + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class VCardQRCode

    + +

    Class VCardQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          VCardQRCode​(java.lang.String name, - java.lang.String firstName, - java.lang.String lastName, - java.lang.String email, - java.lang.String website) +
          VCardQRCode​(java.lang.String name, +java.lang.String firstName, +java.lang.String lastName, +java.lang.String email, +java.lang.String website)
          This object represents a VCF or vCard QR Code.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            VCardQRCode

            -
            public VCardQRCode​(java.lang.String name,
            -                   java.lang.String firstName,
            -                   java.lang.String lastName,
            -                   java.lang.String email,
            -                   java.lang.String website)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              VCardQRCode

              +
              public VCardQRCode​(java.lang.String name, +java.lang.String firstName, +java.lang.String lastName, +java.lang.String email, +java.lang.String website)
              This object represents a VCF or vCard QR Code. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              firstName - First name for the card.
              lastName - Last name for the card.
              email - Email for the card.
              website - Website for the card.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getFirstName

            -
            public java.lang.String getFirstName()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getFirstName

              +
              public java.lang.String getFirstName()
              +
              +
              Returns:
              First name for the card.
              +
            • -
            - - - -
              -
            • -

              setFirstName

              -
              public void setFirstName​(java.lang.String firstName)
              -
              -
              Parameters:
              +
            • +
              +

              setFirstName

              +
              public void setFirstName​(java.lang.String firstName)
              +
              +
              Parameters:
              firstName - First name for the card.
              +
            • -
            - - - -
              -
            • -

              getLastName

              -
              public java.lang.String getLastName()
              -
              -
              Returns:
              +
            • +
              +

              getLastName

              +
              public java.lang.String getLastName()
              +
              +
              Returns:
              Last name for the card.
              +
            • -
            - - - -
              -
            • -

              setLastName

              -
              public void setLastName​(java.lang.String lastName)
              -
              -
              Parameters:
              +
            • +
              +

              setLastName

              +
              public void setLastName​(java.lang.String lastName)
              +
              +
              Parameters:
              lastName - Last name for the card.
              +
            • -
            - - - -
              -
            • -

              getEmail

              -
              public java.lang.String getEmail()
              -
              -
              Returns:
              +
            • +
              +

              getEmail

              +
              public java.lang.String getEmail()
              +
              +
              Returns:
              Email for the card.
              +
            • -
            - - - -
              -
            • -

              setEmail

              -
              public void setEmail​(java.lang.String email)
              -
              -
              Parameters:
              +
            • +
              +

              setEmail

              +
              public void setEmail​(java.lang.String email)
              +
              +
              Parameters:
              email - Email for the card.
              +
            • -
            - - - -
              -
            • -

              getWebsite

              -
              public java.lang.String getWebsite()
              -
              -
              Returns:
              +
            • +
              +

              getWebsite

              +
              public java.lang.String getWebsite()
              +
              +
              Returns:
              Website for the card.
              +
            • -
            - - - -
              -
            • -

              setWebsite

              -
              public void setWebsite​(java.lang.String website)
              -
              -
              Parameters:
              +
            • +
              +

              setWebsite

              +
              public void setWebsite​(java.lang.String website)
              +
              +
              Parameters:
              website - Website for the card.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html index 7e92c03c..cc7a2223 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html @@ -2,477 +2,353 @@ - -WifiQRCode (cloudofficeprint 21.2.1 API) + +WifiQRCode + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class WifiQRCode

    + +

    Class WifiQRCode

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          WifiQRCode​(java.lang.String name, - java.lang.String SSID, - java.lang.String password, - java.lang.String encryption, - java.lang.Boolean wifiHidden) +
          WifiQRCode​(java.lang.String name, +java.lang.String SSID, +java.lang.String password, +java.lang.String encryption, +java.lang.Boolean wifiHidden)
          This class is a subclass of QRCode and is used to generate a WiFi QR-code element.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Codes.Code

    +getTemplateTags, getType, setType
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            WifiQRCode

            -
            public WifiQRCode​(java.lang.String name,
            -                  java.lang.String SSID,
            -                  java.lang.String password,
            -                  java.lang.String encryption,
            -                  java.lang.Boolean wifiHidden)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              WifiQRCode

              +
              public WifiQRCode​(java.lang.String name, +java.lang.String SSID, +java.lang.String password, +java.lang.String encryption, +java.lang.Boolean wifiHidden)
              This class is a subclass of QRCode and is used to generate a WiFi QR-code element. Styling options can be set with the setter functions of the upper class.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this code for the tag.
              SSID - SSID of the Wifi.
              password - Password of the WiFi.
              encryption - Encryption of the WiFi.
              wifiHidden - Whether the WiFi is hidden or not.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getPassword

            -
            public java.lang.String getPassword()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getPassword

              +
              public java.lang.String getPassword()
              +
              +
              Returns:
              Password of the WiFi.
              +
            • -
            - - - -
              -
            • -

              setPassword

              -
              public void setPassword​(java.lang.String password)
              -
              -
              Parameters:
              +
            • +
              +

              setPassword

              +
              public void setPassword​(java.lang.String password)
              +
              +
              Parameters:
              password - Password of the WiFi.
              +
            • -
            - - - -
              -
            • -

              getEncryption

              -
              public java.lang.String getEncryption()
              -
              -
              Returns:
              +
            • +
              +

              getEncryption

              +
              public java.lang.String getEncryption()
              +
              +
              Returns:
              Encryption type of the WiFi e.g. WPA, WEP, WEP2 etc.
              +
            • -
            - - - -
              -
            • -

              setEncryption

              -
              public void setEncryption​(java.lang.String encryption)
              -
              -
              Parameters:
              +
            • +
              +

              setEncryption

              +
              public void setEncryption​(java.lang.String encryption)
              +
              +
              Parameters:
              encryption - Encryption type of the WiFi e.g. WPA, WEP, WEP2 etc.
              +
            • -
            - - - -
              -
            • -

              getWifiHidden

              -
              public java.lang.Boolean getWifiHidden()
              -
              -
              Returns:
              +
            • +
              +

              getWifiHidden

              +
              public java.lang.Boolean getWifiHidden()
              +
              +
              Returns:
              Whether WiFi is hidden or not.
              +
            • -
            - - - -
              -
            • -

              setWifiHidden

              -
              public void setWifiHidden​(java.lang.Boolean wifiHidden)
              -
              -
              Parameters:
              +
            • +
              +

              setWifiHidden

              +
              public void setWifiHidden​(java.lang.Boolean wifiHidden)
              +
              +
              Parameters:
              wifiHidden - Whether WiFi is hidden or not.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class QRCode
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html index 6bee207f..63d3ffa2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html @@ -2,241 +2,181 @@ - -com.cloudofficeprint.RenderElements.Codes (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Codes + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.RenderElements.Codes

    -
    -
      -
    • - - +
      +
        +
      • +
        +
      Class Summary 
      + + - - + + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + +
      Class Summary
      ClassDescriptionClassDescription
      BarCode +
      BarCode
      This class represents a barcode or a QR code (created using the data of the key) for a template.
      Code +
      Code
      Superclass for QR and BarCodes.
      EmailQRCode +
      EmailQRCode
      This class is a subclass of QRCode and is used to generate an email QR-code element
      EventQRCode +
      EventQRCode
      This class is a subclass of QRCode and is used to generate an event QR-code element
      GeolocationQRCode +
      GeolocationQRCode
      This class is a subclass of QRCode and is used to generate a geolocation QR-code element
      MECardQRCode +
      MECardQRCode
      This class is a subclass of QRCode and is used to generate a MeCard QR-code element
      QRCode +
      QRCode
      This class is a subclass of Code and serves as a superclass for the different types of QR-codes.
      SMSQRCode +
      SMSQRCode
      This class is a subclass of QRCode and is used to generate an SMS QR-code element.
      TelephoneNumberQRCode +
      TelephoneNumberQRCode
      This class is a subclass of QRCode and is used to generate a telephone number QR-code element.
      URLQRCode +
      URLQRCode
      This class is a subclass of QRCode and is used to generate an URL QR-code element.
      VCardQRCode +
      VCardQRCode
      This class is a subclass of QRCode and is used to generate a vCard QR-code element
      WifiQRCode +
      WifiQRCode
      This class is a subclass of QRCode and is used to generate a WiFi QR-code element.
      +
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html index b6444faa..48689253 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html @@ -2,124 +2,82 @@ - -com.cloudofficeprint.RenderElements.Codes Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Codes Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.RenderElements.Codes

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    • java.lang.Object
        -
      • com.cloudofficeprint.RenderElements.RenderElement +
      • com.cloudofficeprint.RenderElements.RenderElement
          -
        • com.cloudofficeprint.RenderElements.Codes.Code +
        • com.cloudofficeprint.RenderElements.Codes.Code @@ -130,52 +88,28 @@

          Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html index 35598bcf..619b3f14 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html @@ -2,396 +2,295 @@ - -D3Code (cloudofficeprint 21.2.1 API) + +D3Code + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class D3Code

    + +

    Class D3Code

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.D3Code
      +
      +
      +

      -
      public class D3Code
      +
      public class D3Code
       extends RenderElement
      With Word/Excel/PowerPoint documents, it's possible to let Cloud Office Print execute some JavaScript code to generate a D3 image (Data Driven Documents).
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          D3Code​(java.lang.String name, - java.lang.String code, - java.lang.String data) +
          D3Code​(java.lang.String name, +java.lang.String code, +java.lang.String data)
          Represents an D3 image.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringgetData() 
      java.lang.StringgetData() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      voidsetData​(java.lang.String data) 
      voidsetData​(java.lang.String data) 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            D3Code

            -
            public D3Code​(java.lang.String name,
            -              java.lang.String code,
            -              java.lang.String data)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              D3Code

              +
              public D3Code​(java.lang.String name, +java.lang.String code, +java.lang.String data)
              Represents an D3 image.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the D3 for the tag.
              code - Code to generate the image.
              data - Global data the code has access to. Optional : use null if you don't want to specify it.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getData

            -
            public java.lang.String getData()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getData

              +
              public java.lang.String getData()
              +
              +
              Returns:
              Global data the code has access to. You can access it in the JS code through with global.data or just data.
              +
            • -
            - - - -
              -
            • -

              setData

              -
              public void setData​(java.lang.String data)
              -
              -
              Parameters:
              +
            • +
              +

              setData

              +
              public void setData​(java.lang.String data)
              +
              +
              Parameters:
              data - Global data the code has access to. You can access it in the JS code through with global.data or just data.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html index 835f31ee..8c22346d 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html @@ -2,563 +2,438 @@ - -ElementCollection (cloudofficeprint 21.2.1 API) + +ElementCollection + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class ElementCollection

    + +

    Class ElementCollection

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.ElementCollection
      +
      +
      +

      -
      public class ElementCollection
      +
      public class ElementCollection
       extends RenderElement
      A collection used to group multiple RenderElements together. It can contain nested `Object`s and should be used to pass multiple `RenderElements` as PrintJob data, as well as to allow for nested elements. Its name is used as a key name when nested, but ignored for all purposes when it's the outer object.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + - - - + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ElementCollection​(java.lang.String name) +
          ElementCollection​(java.lang.String name)
          A collection used to group multiple RenderElements together.
          ElementCollection​(java.lang.String name, - java.util.ArrayList<RenderElement> elements) +
          ElementCollection​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
          A collection used to group multiple RenderElements together.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ElementCollection

            -
            public ElementCollection​(java.lang.String name,
            -                         java.util.ArrayList<RenderElement> elements)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ElementCollection

              +
              public ElementCollection​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
              A collection used to group multiple RenderElements together.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - The name is used as a key name when the collection is nested, but ignored when it's the outer object.
              elements - List of nested RenderElements.
              +
            • -
            - - - -
              -
            • -

              ElementCollection

              -
              public ElementCollection​(java.lang.String name)
              +
            • +
              +

              ElementCollection

              +
              public ElementCollection​(java.lang.String name)
              A collection used to group multiple RenderElements together. The arrayList of elements isn't initialised in this constructor so setFromDict should be called.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - The name is used as a key name when the collection is nested, but ignored when it's the outer object.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getElements

            -
            public java.util.ArrayList<RenderElement> getElements()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getElements

              +
              public java.util.ArrayList<RenderElement> getElements()
              +
              +
              Returns:
              List of nested RenderElements.
              +
            • -
            - - - -
              -
            • -

              setElements

              -
              public void setElements​(java.util.ArrayList<RenderElement> elements)
              -
              -
              Parameters:
              +
            • +
              +

              setElements

              +
              public void setElements​(java.util.ArrayList<RenderElement> elements)
              +
              +
              Parameters:
              elements - List of nested RenderElements.
              +
            • -
            - - - -
              -
            • -

              addElement

              -
              public void addElement​(RenderElement element)
              -
              -
              Parameters:
              +
            • +
              +

              addElement

              +
              public void addElement​(RenderElement element)
              +
              +
              Parameters:
              element - Element to add to the list of elements.
              +
            • -
            - - - -
              -
            • -

              removeElement

              -
              public void removeElement​(RenderElement element)
              -
              -
              Parameters:
              +
            • +
              +

              removeElement

              +
              public void removeElement​(RenderElement element)
              +
              +
              Parameters:
              element - Element to remove from the list of elements.
              +
            • -
            - - - -
              -
            • -

              removeElementByName

              -
              public void removeElementByName​(java.lang.String elementName)
              -
              -
              Parameters:
              +
            • +
              +

              removeElementByName

              +
              public void removeElementByName​(java.lang.String elementName)
              +
              +
              Parameters:
              elementName - Name of the element to remove from the list of elements.
              +
            • -
            - - - -
              -
            • -

              addFromDict

              -
              public void addFromDict​(java.util.Hashtable<java.lang.String,​java.lang.String> properties)
              +
            • +
              +

              addFromDict

              +
              public void addFromDict​(java.util.Hashtable<java.lang.String,​java.lang.String> properties)
              Adds the list of properties from a mapping.
              -
              -
              Parameters:
              +
              +
              Parameters:
              properties - Hashtable of (propertyName,propertyValue).
              +
            • -
            - - - -
              -
            • -

              makeCollectionFromJson

              -
              public static ElementCollection makeCollectionFromJson​(java.lang.String name,
              -                                                       com.google.gson.JsonObject json)
              +
            • +
              +

              makeCollectionFromJson

              +
              public static ElementCollection makeCollectionFromJson​(java.lang.String name, +com.google.gson.JsonObject json)
              Parses a JsonArray to an elementcollection.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the elementcollection.
              json - Json to parse.
              -
              Returns:
              +
              Returns:
              Elementcollection of the parsed json.
              +
            • -
            - - - -
              -
            • -

              addAllRenderElements

              -
              public void addAllRenderElements​(ElementCollection collection)
              +
            • +
              +

              addAllRenderElements

              +
              public void addAllRenderElements​(ElementCollection collection)
              Adds all the elements from the elementcollection to the elements of this collection.
              -
              -
              Parameters:
              +
              +
              Parameters:
              collection - Elementcollection.
              +
            • -
            - - - -
              -
            • -

              updateJson1WithJson2

              -
              public static void updateJson1WithJson2​(com.google.gson.JsonObject json1,
              -                                        com.google.gson.JsonObject json2)
              -
              -
              Parameters:
              +
            • +
              +

              updateJson1WithJson2

              +
              public static void updateJson1WithJson2​(com.google.gson.JsonObject json1, +com.google.gson.JsonObject json2)
              +
              +
              Parameters:
              json1 - Json to add the data from json2 to.
              json2 - Json to take the data from. Cannot have nested JSON's/JsonArrays.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this property for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html index cfe47f9b..171f1914 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html @@ -2,354 +2,259 @@ - -FootNote (cloudofficeprint 21.2.1 API) + +FootNote + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class FootNote

    + +

    Class FootNote

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          FootNote​(java.lang.String name, - java.lang.String value) +
          FootNote​(java.lang.String name, +java.lang.String value)
          Element to insert a footnote in a template.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            FootNote

            -
            public FootNote​(java.lang.String name,
            -                java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              FootNote

              +
              public FootNote​(java.lang.String name, +java.lang.String value)
              Element to insert a footnote in a template.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this footnote for the tag.
              value - Value to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html index c1148196..45b19f7a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html @@ -2,355 +2,260 @@ - -Formula (cloudofficeprint 21.2.1 API) + +Formula + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class Formula

    + +

    Class Formula

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.Formula
      +
      +
      +

      -
      public class Formula
      +
      public class Formula
       extends RenderElement
      Only supported in Excel. This class represents an Excel formula. Note that no validation is performed on this formula.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Formula​(java.lang.String name, - java.lang.String formula) +
          Formula​(java.lang.String name, +java.lang.String formula)
          Represents an Excel formula.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Formula

            -
            public Formula​(java.lang.String name,
            -               java.lang.String formula)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Formula

              +
              public Formula​(java.lang.String name, +java.lang.String formula)
              Represents an Excel formula. Note that no validation is performed on this formula.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the formula for the tag.
              formula - Excel formula to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html new file mode 100644 index 00000000..19dc6b5b --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html @@ -0,0 +1,312 @@ + + + + + +Freeze + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class Freeze

    +
    +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.Freeze
    +
    +
    +
    +
    +
    public class Freeze
    +extends RenderElement
    +
    This tag will allow you to utilize freeze pane property of the Excel.Three options are available. + First option, we can directly place the pane where the tag located. For this option we should provide true parameter. + Second option, we can provide the location where we want to place the pane such as "C5". + Finally, the third option is false which doesn't place a pane.
    +
    +
    +
      + +
    • +
      +

      Constructor Summary

      +
      + + + + + + + + + + + + + + + + + + +
      Constructors
      ConstructorDescription
      Freeze​(java.lang.String name, +boolean value) +
      This tag will allow you to use freeze pane property of Excel.
      +
      Freeze​(java.lang.String name, +java.lang.String value) +
      This tag will allow you to use freeze pane property of Excel.
      +
      +
      +
      +
    • + +
    • +
      +

      Method Summary

      +
      +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Modifier and TypeMethodDescription
      booleangetBooleanValue() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      voidsetBooleanValue​(boolean freezeValue) 
      +
      +
      +
      +

      Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

      +getName, getValue, setName, setValue
      +
      +

      Methods inherited from class java.lang.Object

      +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        Freeze

        +
        public Freeze​(java.lang.String name, +java.lang.String value)
        +
        This tag will allow you to use freeze pane property of Excel.
        +
        +
        Parameters:
        +
        name - {string} tag name of freeze element
        +
        value - {string} freezeValue .
        +
        +
        +
      • +
      • +
        +

        Freeze

        +
        public Freeze​(java.lang.String name, +boolean value)
        +
        This tag will allow you to use freeze pane property of Excel.
        +
        +
        Parameters:
        +
        name - {string} tag name of freeze element
        +
        value - {boolean} freeze value.
        +
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getBooleanValue

        +
        public boolean getBooleanValue()
        +
        +
        Returns:
        +
        freezeValue value for the freeze element tag.
        +
        +
        +
      • +
      • +
        +

        setBooleanValue

        +
        public void setBooleanValue​(boolean freezeValue)
        +
        +
        Parameters:
        +
        freezeValue - value for the freeze element.
        +
        +
        +
      • +
      • +
        +

        getJSON

        +
        public com.google.gson.JsonObject getJSON()
        +
        +
        Specified by:
        +
        getJSON in class RenderElement
        +
        Returns:
        +
        JSONObject with the tags for this property for the Cloud Office Print + server.
        +
        +
        +
      • +
      • +
        +

        getTemplateTags

        +
        public java.util.Set<java.lang.String> getTemplateTags()
        +
        +
        Specified by:
        +
        getTemplateTags in class RenderElement
        +
        Returns:
        +
        An immutable set containing all available template tags this element + can replace.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html index 2b7e3d20..11b99705 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html @@ -2,354 +2,259 @@ - -HTML (cloudofficeprint 21.2.1 API) + +HTML + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class HTML

    + +

    Class HTML

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          HTML​(java.lang.String name, - java.lang.String HTMLText) +
          HTML​(java.lang.String name, +java.lang.String HTMLText)
          HTML text can be rendered and put in templates.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            HTML

            -
            public HTML​(java.lang.String name,
            -            java.lang.String HTMLText)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              HTML

              +
              public HTML​(java.lang.String name, +java.lang.String HTMLText)
              HTML text can be rendered and put in templates.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this html element for the tag.
              HTMLText - HTML text.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this HTML element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html index 72af1c16..cca705d2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html @@ -2,402 +2,301 @@ - -HyperLink (cloudofficeprint 21.2.1 API) + +HyperLink + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class HyperLink

    + +

    Class HyperLink

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          HyperLink​(java.lang.String name, - java.lang.String text, - java.lang.String url) +
          HyperLink​(java.lang.String name, +java.lang.String text, +java.lang.String url)
          Element to insert a footnote in a template.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + - - - - + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.lang.StringgetUrl() +
      java.lang.StringgetUrl()
      Note : In Excel you can hyperlink to a cell.
      voidsetUrl​(java.lang.String url) +
      voidsetUrl​(java.lang.String url)
      Note : In Excel you can hyperlink to a cell.
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            HyperLink

            -
            public HyperLink​(java.lang.String name,
            -                 java.lang.String text,
            -                 java.lang.String url)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              HyperLink

              +
              public HyperLink​(java.lang.String name, +java.lang.String text, +java.lang.String url)
              Element to insert a footnote in a template.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this footnote for the tag.
              text - Text of the hyperlink (will replace the tag in the template). (Optional: if null the URL will replace the tag)
              url - URL to hyperlink to. Note : In Excel you can hyperlink to a cell. The URLshould then be of structure: "SheetName!Cell".
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getUrl

            -
            public java.lang.String getUrl()
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getUrl

              +
              public java.lang.String getUrl()
              Note : In Excel you can hyperlink to a cell. The URLshould then be of structure: "SheetName!Cell".
              -
              -
              Returns:
              +
              +
              Returns:
              URL to hyperlink to.
              +
            • -
            - - - -
              -
            • -

              setUrl

              -
              public void setUrl​(java.lang.String url)
              +
            • +
              +

              setUrl

              +
              public void setUrl​(java.lang.String url)
              Note : In Excel you can hyperlink to a cell. The URLshould then be of structure: "SheetName!Cell".
              -
              -
              Parameters:
              +
              +
              Parameters:
              url - URL to hyperlink to.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html index 8c895bb3..773a3de2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html @@ -2,477 +2,378 @@ - -Image (cloudofficeprint 21.2.1 API) + +Image + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Image() 
          Image() 
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Image

            -
            public Image()
            -
          • -
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            Image

            +
            public Image()
            +
          +
        • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getWidth

              -
              public java.lang.Integer getWidth()
              -
              -
              Returns:
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getWidth

                +
                public java.lang.Integer getWidth()
                +
                +
                Returns:
                Width of the image (for non-proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                setWidth

                -
                public void setWidth​(java.lang.Integer width)
                -
                -
                Parameters:
                +
              • +
                +

                setWidth

                +
                public void setWidth​(java.lang.Integer width)
                +
                +
                Parameters:
                width - Width of the image (for non-proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                getHeight

                -
                public java.lang.Integer getHeight()
                -
                -
                Returns:
                +
              • +
                +

                getHeight

                +
                public java.lang.Integer getHeight()
                +
                +
                Returns:
                Height of the image (for non-proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                setHeight

                -
                public void setHeight​(java.lang.Integer height)
                -
                -
                Parameters:
                +
              • +
                +

                setHeight

                +
                public void setHeight​(java.lang.Integer height)
                +
                +
                Parameters:
                height - Height of the image (for non-proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                getMaxWidth

                -
                public java.lang.Integer getMaxWidth()
                -
                -
                Returns:
                +
              • +
                +

                getMaxWidth

                +
                public java.lang.Integer getMaxWidth()
                +
                +
                Returns:
                Maximum width of the image (for proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                setMaxWidth

                -
                public void setMaxWidth​(java.lang.Integer maxWidth)
                -
                -
                Parameters:
                +
              • +
                +

                setMaxWidth

                +
                public void setMaxWidth​(java.lang.Integer maxWidth)
                +
                +
                Parameters:
                maxWidth - Maximum width of the image (for proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                getMaxHeight

                -
                public java.lang.Integer getMaxHeight()
                -
                -
                Returns:
                +
              • +
                +

                getMaxHeight

                +
                public java.lang.Integer getMaxHeight()
                +
                +
                Returns:
                Maximum height of the image (for proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                setMaxHeight

                -
                public void setMaxHeight​(java.lang.Integer maxHeight)
                -
                -
                Parameters:
                +
              • +
                +

                setMaxHeight

                +
                public void setMaxHeight​(java.lang.Integer maxHeight)
                +
                +
                Parameters:
                maxHeight - Maximum height of the image (for proportionally scaling).
                +
              • -
              - - - -
                -
              • -

                getAltText

                -
                public java.lang.String getAltText()
                -
                -
                Returns:
                +
              • +
                +

                getAltText

                +
                public java.lang.String getAltText()
                +
                +
                Returns:
                Text displayed when the image can't be downloaded.
                +
              • -
              - - - -
                -
              • -

                setAltText

                -
                public void setAltText​(java.lang.String altText)
                -
                -
                Parameters:
                +
              • +
                +

                setAltText

                +
                public void setAltText​(java.lang.String altText)
                +
                +
                Parameters:
                altText - Text displayed when the image can't be downloaded.
                +
              • -
              - - - -
                -
              • -

                getWrapText

                -
                public java.lang.String getWrapText()
                +
              • +
                +

                getWrapText

                +
                public java.lang.String getWrapText()
                Note : only supports 5 of the Microsoft Word Text Wrapping options. In line with text : This option is default. If no wrap option specified images will wrapped in line with text. Square : In order to use this property, wrap @@ -480,19 +381,16 @@

                getWrapText

                wrap option should be "top-bottom". Behind Text : In order to use this property, wrap option should be "behind". In Front of Text : In order to use this property, wrap option should be "front".
                -
                -
                Returns:
                +
                +
                Returns:
                The wrapping mode of the text around the image.
                +
              • -
              - - - -
                -
              • -

                setWrapText

                -
                public void setWrapText​(java.lang.String wrapText)
                +
              • +
                +

                setWrapText

                +
                public void setWrapText​(java.lang.String wrapText)
                Note : only supports 5 of the Microsoft Word Text Wrapping options. In line with text : This option is default. If no wrap option specified images will wrapped in line with text. Square : In order to use this property, wrap @@ -500,190 +398,143 @@

                setWrapText

                wrap option should be "top-bottom". Behind Text : In order to use this property, wrap option should be "behind". In Front of Text : In order to use this property, wrap option should be "front".
                -
                -
                Parameters:
                +
                +
                Parameters:
                wrapText - The wrapping mode of the text around the image.
                +
              • -
              - - - -
                -
              • -

                getTransparency

                -
                public java.lang.String getTransparency()
                -
                -
                Returns:
                +
              • +
                +

                getTransparency

                +
                public java.lang.String getTransparency()
                +
                +
                Returns:
                Transparency of the image followed by % e.g. : 80%.
                +
              • -
              - - - -
                -
              • -

                setTransparency

                -
                public void setTransparency​(java.lang.String transparency)
                -
                -
                Parameters:
                +
              • +
                +

                setTransparency

                +
                public void setTransparency​(java.lang.String transparency)
                +
                +
                Parameters:
                transparency - Transparency of the image followed by % e.g. : 80%.
                +
              • -
              - - - -
                -
              • -

                getRotation

                -
                public java.lang.Integer getRotation()
                -
                -
                Returns:
                +
              • +
                +

                getRotation

                +
                public java.lang.Integer getRotation()
                +
                +
                Returns:
                Rotation of the image in degrees.
                +
              • -
              - - - -
                -
              • -

                setRotation

                -
                public void setRotation​(java.lang.Integer rotation)
                -
                -
                Parameters:
                +
              • +
                +

                setRotation

                +
                public void setRotation​(java.lang.Integer rotation)
                +
                +
                Parameters:
                rotation - Rotation of the image in degrees.
                +
              • -
              - - - -
                -
              • -

                getTargetUrl

                -
                public java.lang.String getTargetUrl()
                -
                -
                Returns:
                +
              • +
                +

                getTargetUrl

                +
                public java.lang.String getTargetUrl()
                +
                +
                Returns:
                URL to jump to if the image is clicked.
                +
              • -
              - - - -
                -
              • -

                setTargetUrl

                -
                public void setTargetUrl​(java.lang.String targetUrl)
                -
                -
                Parameters:
                +
              • +
                +

                setTargetUrl

                +
                public void setTargetUrl​(java.lang.String targetUrl)
                +
                +
                Parameters:
                targetUrl - URL to jump to if the image is clicked.
                +
              • -
              - - - -
                -
              • -

                getJSON

                -
                public com.google.gson.JsonObject getJSON()
                -
                -
                Specified by:
                +
              • +
                +

                getJSON

                +
                public com.google.gson.JsonObject getJSON()
                +
                +
                Specified by:
                getJSON in class RenderElement
                -
                Returns:
                +
                Returns:
                JSONObject with the tags for this element for the Cloud Office Print server.
                +
              • -
              - - - -
                -
              • -

                getTemplateTags

                -
                public java.util.Set<java.lang.String> getTemplateTags()
                -
                -
                Specified by:
                +
              • +
                +

                getTemplateTags

                +
                public java.util.Set<java.lang.String> getTemplateTags()
                +
                +
                Specified by:
                getTemplateTags in class RenderElement
                -
                Returns:
                +
                Returns:
                An immutable set containing all available template tags this element can replace.
                -
              • -
              +
        -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html index e203b09b..8bc00352 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html @@ -2,374 +2,272 @@ - -ImageBase64 (cloudofficeprint 21.2.1 API) + +ImageBase64 + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class ImageBase64

    + +

    Class ImageBase64

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + - - - + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ImageBase64​(java.lang.String name) +
          ImageBase64​(java.lang.String name)
          This object represent an image to insert in the template.
          ImageBase64​(java.lang.String name, - java.lang.String base64) +
          ImageBase64​(java.lang.String name, +java.lang.String base64)
          This object represent an image to insert in the template.
          -
        • -
        +
    + -
    - +
    +
    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ImageBase64

            -
            public ImageBase64​(java.lang.String name)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ImageBase64

              +
              public ImageBase64​(java.lang.String name)
              This object represent an image to insert in the template. This constructor doesn't set the base64-string so setFromLocalFile should be called. The options of the image can be turned on via the setter functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this image for the tag.
              +
            • -
            - - - -
              -
            • -

              ImageBase64

              -
              public ImageBase64​(java.lang.String name,
              -                   java.lang.String base64)
              +
            • +
              +

              ImageBase64

              +
              public ImageBase64​(java.lang.String name, +java.lang.String base64)
              This object represent an image to insert in the template. The options of the image can be turned on via the setter functions. The source of this image is a base64-encoded string.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this image for the tag.
              base64 - Base64 string of the image.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            setFileFromLocalFile

            -
            public void setFileFromLocalFile​(java.lang.String filePath)
            -                          throws java.io.IOException
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              setFileFromLocalFile

              +
              public void setFileFromLocalFile​(java.lang.String filePath) + throws java.io.IOException
              Reads all bytes of the file, converts them to base64 and stores them in this.value.
              -
              -
              Parameters:
              +
              +
              Parameters:
              filePath - Path of the local file.
              -
              Throws:
              +
              Throws:
              java.io.IOException - If file not found.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html index 9547da20..0384bc03 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html @@ -2,301 +2,199 @@ - -ImageUrl (cloudofficeprint 21.2.1 API) + +ImageUrl + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ImageUrl​(java.lang.String name, - java.lang.String url) +
          ImageUrl​(java.lang.String name, +java.lang.String url)
          This object represent an image to insert in the template.
          -
        • -
        +
    - -
    - + +
  • +
    +

    Method Summary

    + +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ImageUrl

            -
            public ImageUrl​(java.lang.String name,
            -                java.lang.String url)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ImageUrl

              +
              public ImageUrl​(java.lang.String name, +java.lang.String url)
              This object represent an image to insert in the template. The options of the image can be turned on via the setter functions. The source of this image is a URL string.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this image for the tag.
              url - The source URL for the image.
              -
            • -
            +
      -
    -
    - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html index 570bb51d..789223da 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html @@ -2,175 +2,115 @@ - -com.cloudofficeprint.RenderElements.Images (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Images + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.RenderElements.Images

    -
    -
      -
    • - - +
      +
        +
      • +
        +
      Class Summary 
      + + - - + + + - - - + + + - - - + + - - - + +
      Class Summary
      ClassDescriptionClassDescription
      Image 
      Image 
      ImageBase64 +
      ImageBase64
      Represents an image to insert in a template with a base64-encoded string as source.
      ImageUrl +
      ImageUrl
      Represents an image to insert in a template with a URL string as source.
      +
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html index 640332fc..4e0c1f9f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html @@ -2,114 +2,72 @@ - -com.cloudofficeprint.RenderElements.Images Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Images Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.RenderElements.Images

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    • java.lang.Object
        -
      • com.cloudofficeprint.RenderElements.RenderElement +
      • com.cloudofficeprint.RenderElements.RenderElement
          -
        • com.cloudofficeprint.RenderElements.Images.Image +
        • com.cloudofficeprint.RenderElements.Images.Image
            -
          • com.cloudofficeprint.RenderElements.Images.ImageBase64
          • -
          • com.cloudofficeprint.RenderElements.Images.ImageUrl
          • +
          • com.cloudofficeprint.RenderElements.Images.ImageBase64
          • +
          • com.cloudofficeprint.RenderElements.Images.ImageUrl
        @@ -118,52 +76,28 @@

        Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html index aa76f9f5..ae1fd4a9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html @@ -2,350 +2,251 @@ - -InlineDataLoop (cloudofficeprint 21.2.1 API) + +InlineDataLoop + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class InlineDataLoop

    + +

    Class InlineDataLoop

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.Loops.Loop +
      com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
      +
      +
      +
      +

      -
      public class InlineDataLoop
      +
      public class InlineDataLoop
       extends Loop
      Horizontal table looping for Word, Excel and CSV templates. Note: this tag can be used to repeat only one row in Word. In Excel this works like a normal loop tag and repeats the cells defined by the rectangular boundary of the starting and closing tag.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          InlineDataLoop​(java.lang.String name, - java.util.ArrayList<RenderElement> elements) +
          InlineDataLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
          Horizontal table looping for Word, Excel and CSV templates.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Loops.Loop

    +addElement, getElements, getJSON, setElements
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            InlineDataLoop

            -
            public InlineDataLoop​(java.lang.String name,
            -                      java.util.ArrayList<RenderElement> elements)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              InlineDataLoop

              +
              public InlineDataLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
              Horizontal table looping for Word, Excel and CSV templates. Note : this tag can be used to repeat only one row (in Word and in Excel this works like normal loop tag and repeats the cells defined by the rectangular boundary of starting and closing tag).
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - Elements to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getTemplateTags

            -
            public java.util.Set<java.lang.String> getTemplateTags()
            -
            -
            Overrides:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Overrides:
              getTemplateTags in class Loop
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html index 1ba996c1..04e8a63a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html @@ -2,145 +2,90 @@ - -Labels (cloudofficeprint 21.2.1 API) + +Labels + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    -
      -
    • +
      java.lang.Object + +
      +

      -
      public class Labels
      +
      public class Labels
       extends Loop
      Cloud Office Print also provides a way to print labels Word documents. To do so you can create a document with labels by going to Mailings options and @@ -149,101 +94,85 @@

      Class Labels

      clicking New document. Currently when labels are getting printed, Cloud Office Print expects the document to only contain labels and no other text. The tag keys cannot be used more than once.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Labels​(java.lang.String name, - java.util.ArrayList<RenderElement> labels) +
          Labels​(java.lang.String name, +java.util.ArrayList<RenderElement> labels)
          Cloud Office Print also provides a way to print labels Word documents.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Loops.Loop

    +addElement, getElements, getJSON, setElements
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Labels

            -
            public Labels​(java.lang.String name,
            -              java.util.ArrayList<RenderElement> labels)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Labels

              +
              public Labels​(java.lang.String name, +java.util.ArrayList<RenderElement> labels)
              Cloud Office Print also provides a way to print labels Word documents. To do so you can create a document with labels by going to Mailings options and then to Labels. Fill in the tags in the address field and choose the type of @@ -251,107 +180,79 @@

              Labels

              clicking New document. Currently when labels are getting printed, Cloud Office Print expects the document to only contain labels and no other text. The tag keys cannot be used more than once.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of these labels for the tag.
              labels - Data for the labels.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getTemplateTags

            -
            public java.util.Set<java.lang.String> getTemplateTags()
            -
            -
            Overrides:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Overrides:
              getTemplateTags in class Loop
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html index 654827f5..68d29b98 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html @@ -2,454 +2,344 @@ - -Loop (cloudofficeprint 21.2.1 API) + +Loop + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    + -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + - - - + + - - - + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Loop​(java.lang.String name) +
          Loop​(java.lang.String name)
          Loop elements for a template.
          Loop​(java.lang.String name, - RenderElement[] elements) +
          Loop​(java.lang.String name, +RenderElement[] elements)
          Loop elements for a template.
          Loop​(java.lang.String name, - java.util.ArrayList<RenderElement> elements) +
          Loop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
          Loop elements for a template.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Loop

            -
            public Loop​(java.lang.String name,
            -            java.util.ArrayList<RenderElement> elements)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Loop

              +
              public Loop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
              Loop elements for a template.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - Elements to replace the tag with.
              +
            • -
            - - - -
              -
            • -

              Loop

              -
              public Loop​(java.lang.String name,
              -            RenderElement[] elements)
              +
            • +
              +

              Loop

              +
              public Loop​(java.lang.String name, +RenderElement[] elements)
              Loop elements for a template.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - Elements to replace the tag with.
              +
            • -
            - - - -
              -
            • -

              Loop

              -
              public Loop​(java.lang.String name)
              +
            • +
              +

              Loop

              +
              public Loop​(java.lang.String name)
              Loop elements for a template.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getElements

            -
            public java.util.ArrayList<RenderElement> getElements()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getElements

              +
              public java.util.ArrayList<RenderElement> getElements()
              +
              +
              Returns:
              All the elements of the loop.
              +
            • -
            - - - -
              -
            • -

              setElements

              -
              public void setElements​(java.util.ArrayList<RenderElement> elements)
              -
              -
              Parameters:
              +
            • +
              +

              setElements

              +
              public void setElements​(java.util.ArrayList<RenderElement> elements)
              +
              +
              Parameters:
              elements - All the elements of the loop.
              +
            • -
            - - - -
              -
            • -

              addElement

              -
              public void addElement​(RenderElement element)
              -
              -
              Parameters:
              +
            • +
              +

              addElement

              +
              public void addElement​(RenderElement element)
              +
              +
              Parameters:
              element - RenderElement to add to the loop.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html index a5ffc42f..98ed06d9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html @@ -2,448 +2,334 @@ - -SheetLoop (cloudofficeprint 21.2.1 API) + +SheetLoop + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class SheetLoop

    + +

    Class SheetLoop

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + - - - + + - - - + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          SheetLoop​(java.lang.String name, - RenderElement[] elements) +
          SheetLoop​(java.lang.String name, +RenderElement[] elements)
          To repeat a sheet for each element of elements.
          SheetLoop​(java.lang.String name, - java.util.ArrayList<RenderElement> elements) +
          SheetLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
          To repeat a sheet for each element of elements.
          SheetLoop​(java.lang.String name, - java.util.HashMap<java.lang.String,​RenderElement> elements) +
          SheetLoop​(java.lang.String name, +java.util.HashMap<java.lang.String,​RenderElement> elements)
          To repeat a sheet for each element of elements.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.ArrayList<java.lang.String>getSheetNames() 
      java.util.ArrayList<java.lang.String>getSheetNames() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      voidsetSheetNames​(java.util.ArrayList<java.lang.String> sheetNames) 
      voidsetSheetNames​(java.util.ArrayList<java.lang.String> sheetNames) 
      - - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Loops.Loop

    +addElement, getElements, setElements
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            SheetLoop

            -
            public SheetLoop​(java.lang.String name,
            -                 java.util.ArrayList<RenderElement> elements)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              SheetLoop

              +
              public SheetLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
              To repeat a sheet for each element of elements.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - Value to replace the tag with.
              +
            • -
            - - - -
              -
            • -

              SheetLoop

              -
              public SheetLoop​(java.lang.String name,
              -                 RenderElement[] elements)
              +
            • +
              +

              SheetLoop

              +
              public SheetLoop​(java.lang.String name, +RenderElement[] elements)
              To repeat a sheet for each element of elements.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - Value to replace the tag with.
              +
            • -
            - - - -
              -
            • -

              SheetLoop

              -
              public SheetLoop​(java.lang.String name,
              -                 java.util.HashMap<java.lang.String,​RenderElement> elements)
              +
            • +
              +

              SheetLoop

              +
              public SheetLoop​(java.lang.String name, +java.util.HashMap<java.lang.String,​RenderElement> elements)
              To repeat a sheet for each element of elements.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - HashMap(name, elements), elements to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getSheetNames

            -
            public java.util.ArrayList<java.lang.String> getSheetNames()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getSheetNames

              +
              public java.util.ArrayList<java.lang.String> getSheetNames()
              +
              +
              Returns:
              Arraylist of the names of the repeated sheets.
              +
            • -
            - - - -
              -
            • -

              setSheetNames

              -
              public void setSheetNames​(java.util.ArrayList<java.lang.String> sheetNames)
              -
              -
              Parameters:
              +
            • +
              +

              setSheetNames

              +
              public void setSheetNames​(java.util.ArrayList<java.lang.String> sheetNames)
              +
              +
              Parameters:
              sheetNames - Arraylist of the repeated sheets.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class Loop
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Overrides:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Overrides:
              getTemplateTags in class Loop
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html index 72459b93..60934001 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html @@ -2,345 +2,246 @@ - -SlideLoop (cloudofficeprint 21.2.1 API) + +SlideLoop + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class SlideLoop

    + +

    Class SlideLoop

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          SlideLoop​(java.lang.String name, - java.util.ArrayList<RenderElement> elements) +
          SlideLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
          To repeat a slide for each element of elements.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Loops.Loop

    +addElement, getElements, getJSON, setElements
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            SlideLoop

            -
            public SlideLoop​(java.lang.String name,
            -                 java.util.ArrayList<RenderElement> elements)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              SlideLoop

              +
              public SlideLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
              To repeat a slide for each element of elements.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - Elements to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getTemplateTags

            -
            public java.util.Set<java.lang.String> getTemplateTags()
            -
            -
            Overrides:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Overrides:
              getTemplateTags in class Loop
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html index 4ba6cba8..98f050d0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html @@ -2,346 +2,247 @@ - -TableRowLoop (cloudofficeprint 21.2.1 API) + +TableRowLoop + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class TableRowLoop

    + +

    Class TableRowLoop

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          TableRowLoop​(java.lang.String name, - java.util.ArrayList<RenderElement> elements) +
          TableRowLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
          Only supported in PowerPoint templates.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.Loops.Loop

    +addElement, getElements, getJSON, setElements
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            TableRowLoop

            -
            public TableRowLoop​(java.lang.String name,
            -                    java.util.ArrayList<RenderElement> elements)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              TableRowLoop

              +
              public TableRowLoop​(java.lang.String name, +java.util.ArrayList<RenderElement> elements)
              Only supported in PowerPoint templates. This tag will merge the cells of the loop defined by the tag over the amount of elements rows.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this loop for the tag.
              elements - Elements to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getTemplateTags

            -
            public java.util.Set<java.lang.String> getTemplateTags()
            -
            -
            Overrides:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Overrides:
              getTemplateTags in class Loop
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html index dfff068e..ab2b8e5b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html @@ -2,194 +2,134 @@ - -com.cloudofficeprint.RenderElements.Loops (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Loops + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.RenderElements.Loops

    -
    -
      -
    • - - +
      +
        +
      • +
        +
      Class Summary 
      + + - - + + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + +
      Class Summary
      ClassDescriptionClassDescription
      InlineDataLoop +
      InlineDataLoop
      Horizontal table looping for Word, Excel and CSV templates.
      Labels +
      Labels
      Cloud Office Print also provides a way to print labels Word documents.
      Loop +
      Loop
      Represents elements to be included in loops in templates.
      SheetLoop +
      SheetLoop
      Loop where a sheet will be repeated for each element of the loop.
      SlideLoop +
      SlideLoop
      Loop where a slide will be repeated for each element of the loop.
      TableRowLoop +
      TableRowLoop
      Only supported in PowerPoint templates.
      +
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html index 91f5037f..a94fa174 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html @@ -2,117 +2,75 @@ - -com.cloudofficeprint.RenderElements.Loops Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.Loops Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.RenderElements.Loops

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    • java.lang.Object
        -
      • com.cloudofficeprint.RenderElements.RenderElement +
      • com.cloudofficeprint.RenderElements.RenderElement
          -
        • com.cloudofficeprint.RenderElements.Loops.Loop +
        • com.cloudofficeprint.RenderElements.Loops.Loop
            -
          • com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
          • -
          • com.cloudofficeprint.RenderElements.Loops.Labels
          • -
          • com.cloudofficeprint.RenderElements.Loops.SheetLoop
          • -
          • com.cloudofficeprint.RenderElements.Loops.SlideLoop
          • -
          • com.cloudofficeprint.RenderElements.Loops.TableRowLoop
          • +
          • com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
          • +
          • com.cloudofficeprint.RenderElements.Loops.Labels
          • +
          • com.cloudofficeprint.RenderElements.Loops.SheetLoop
          • +
          • com.cloudofficeprint.RenderElements.Loops.SlideLoop
          • +
          • com.cloudofficeprint.RenderElements.Loops.TableRowLoop
        @@ -121,52 +79,28 @@

        Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html index 6fd2be33..cd6eeb55 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html @@ -2,354 +2,259 @@ - -MarkDownContent (cloudofficeprint 21.2.1 API) + +MarkDownContent + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class MarkDownContent

    + +

    Class MarkDownContent

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          MarkDownContent​(java.lang.String name, - java.lang.String value) +
          MarkDownContent​(java.lang.String name, +java.lang.String value)
          Represents an object that indicates to put a break in the template or not.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            MarkDownContent

            -
            public MarkDownContent​(java.lang.String name,
            -                       java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              MarkDownContent

              +
              public MarkDownContent​(java.lang.String name, +java.lang.String value)
              Represents an object that indicates to put a break in the template or not.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this Markdown content for the tag.
              value - The Markdown content
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html index 4a26eae6..3259d82e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html @@ -2,393 +2,292 @@ - -PDFFormData (cloudofficeprint 21.2.1 API) + +PDFFormData + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class PDFFormData

    + +

    Class PDFFormData

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.PDF.PDFFormData
      +
      +
      +

      -
      public class PDFFormData
      +
      public class PDFFormData
       extends RenderElement
      It is possible to fill in the forms using Cloud Office Print. The data object inside the files array should contain an object with the key aop_pdf_form_data.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PDFFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData) +
          PDFFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData)
          It is possible to fill in the forms using Cloud Office Print.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.util.HashMap<java.lang.String,​java.lang.String>getFormData() 
      java.util.HashMap<java.lang.String,​java.lang.String>getFormData() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      voidsetFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData) 
      voidsetFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData) 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PDFFormData

            -
            public PDFFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PDFFormData

              +
              public PDFFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData)
              It is possible to fill in the forms using Cloud Office Print. The data object inside the files array should contain an object with the key aop_pdf_form_data.
              -
              -
              Parameters:
              +
              +
              Parameters:
              formData - Hashmap of the fieldname and value to fill in. Two options : inputfieldname : value and radio/checkbox : true/false.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getFormData

            -
            public java.util.HashMap<java.lang.String,​java.lang.String> getFormData()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getFormData

              +
              public java.util.HashMap<java.lang.String,​java.lang.String> getFormData()
              +
              +
              Returns:
              Hashmap of the fieldname and value to fill in. Two options : inputfieldname : value and radio/checkbox : true/false.
              +
            • -
            - - - -
              -
            • -

              setFormData

              -
              public void setFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData)
              -
              -
              Parameters:
              +
            • +
              +

              setFormData

              +
              public void setFormData​(java.util.HashMap<java.lang.String,​java.lang.String> formData)
              +
              +
              Parameters:
              formData - Hashmap of the fieldname and value to fill in. Two options : inputfieldname : value and radio/checkbox : true/false.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html index c8137d1c..3b4d5eae 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html @@ -2,307 +2,243 @@ - -PDFImage (cloudofficeprint 21.2.1 API) + +PDFImage + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class PDFImage

    + +

    Class PDFImage

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + - - - + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PDFImage​(java.lang.Integer x, - java.lang.Integer y, - java.lang.Integer pageNumber) +
          PDFImage​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber)
          Represents an image to insert in a PDF.
          PDFImage​(java.lang.Integer x, - java.lang.Integer y, - java.lang.Integer pageNumber, - java.lang.String image) +
          PDFImage​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber, +java.lang.String image)
          Represents an image to insert in a PDF.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject

    +getPageNumber, getX, getY, setPageNumber, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PDFImage

            -
            public PDFImage​(java.lang.Integer x,
            -                java.lang.Integer y,
            -                java.lang.Integer pageNumber,
            -                java.lang.String image)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PDFImage

              +
              public PDFImage​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber, +java.lang.String image)
              Represents an image to insert in a PDF. The image options can be set with the setter functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              x - X-coordinate of the position of the text in the template starting from bottom left.
              y - Y-coordinate of the position of the text in the template @@ -311,22 +247,19 @@

              PDFImage

              -1 if the text should be displayed on all pages.
              image - Image base64 or URL.
              +
            • -
            - - - -
              -
            • -

              PDFImage

              -
              public PDFImage​(java.lang.Integer x,
              -                java.lang.Integer y,
              -                java.lang.Integer pageNumber)
              +
            • +
              +

              PDFImage

              +
              public PDFImage​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber)
              Represents an image to insert in a PDF. The image options can be set with the setter functions. In this constructor the image is not set. It should be set with setImageFromLocalFile.
              -
              -
              Parameters:
              +
              +
              Parameters:
              x - X-coordinate of the position of the text in the template starting from bottom left.
              y - Y-coordinate of the position of the text in the template @@ -334,265 +267,201 @@

              PDFImage

              pageNumber - Page number of the page where the text should be inserted. -1 if the text should be displayed on all pages.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getImage

            -
            public java.lang.String getImage()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getImage

              +
              public java.lang.String getImage()
              +
              +
              Returns:
              Image base64-encoded or URL.
              +
            • -
            - - - -
              -
            • -

              setImage

              -
              public void setImage​(java.lang.String image)
              -
              -
              Parameters:
              +
            • +
              +

              setImage

              +
              public void setImage​(java.lang.String image)
              +
              +
              Parameters:
              image - Image base64-encoded or URL.
              +
            • -
            - - - -
              -
            • -

              getRotation

              -
              public java.lang.Integer getRotation()
              -
              -
              Returns:
              +
            • +
              +

              getRotation

              +
              public java.lang.Integer getRotation()
              +
              +
              Returns:
              Rotation in degrees.
              +
            • -
            - - - -
              -
            • -

              setRotation

              -
              public void setRotation​(java.lang.Integer rotation)
              -
              -
              Parameters:
              +
            • +
              +

              setRotation

              +
              public void setRotation​(java.lang.Integer rotation)
              +
              +
              Parameters:
              rotation - Rotation in degrees.
              +
            • -
            - - - -
              -
            • -

              getWidth

              -
              public java.lang.Integer getWidth()
              -
              -
              Returns:
              +
            • +
              +

              getWidth

              +
              public java.lang.Integer getWidth()
              +
              +
              Returns:
              Image width in px.
              +
            • -
            - - - -
              -
            • -

              setWidth

              -
              public void setWidth​(java.lang.Integer width)
              -
              -
              Parameters:
              +
            • +
              +

              setWidth

              +
              public void setWidth​(java.lang.Integer width)
              +
              +
              Parameters:
              width - Image width in px.
              +
            • -
            - - - -
              -
            • -

              getHeight

              -
              public java.lang.Integer getHeight()
              -
              -
              Returns:
              +
            • +
              +

              getHeight

              +
              public java.lang.Integer getHeight()
              +
              +
              Returns:
              Image height in px.
              +
            • -
            - - - -
              -
            • -

              setHeight

              -
              public void setHeight​(java.lang.Integer height)
              -
              -
              Parameters:
              +
            • +
              +

              setHeight

              +
              public void setHeight​(java.lang.Integer height)
              +
              +
              Parameters:
              height - Image height in px.
              +
            • -
            - - - -
              -
            • -

              getMaxWidth

              -
              public java.lang.Integer getMaxWidth()
              -
              -
              Returns:
              +
            • +
              +

              getMaxWidth

              +
              public java.lang.Integer getMaxWidth()
              +
              +
              Returns:
              Max width for proportionally scaling.
              +
            • -
            - - - -
              -
            • -

              setMaxWidth

              -
              public void setMaxWidth​(java.lang.Integer maxWidth)
              -
              -
              Parameters:
              +
            • +
              +

              setMaxWidth

              +
              public void setMaxWidth​(java.lang.Integer maxWidth)
              +
              +
              Parameters:
              maxWidth - Max width for proportionally scaling.
              +
            • -
            - - - -
              -
            • -

              getJson

              -
              public com.google.gson.JsonObject getJson()
              -
              -
              Specified by:
              +
            • +
              +

              getJson

              +
              public com.google.gson.JsonObject getJson()
              +
              +
              Specified by:
              getJson in class PDFInsertObject
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              setImageFromLocalFile

              -
              public void setImageFromLocalFile​(java.lang.String filePath)
              -                           throws java.lang.Exception
              +
            • +
              +

              setImageFromLocalFile

              +
              public void setImageFromLocalFile​(java.lang.String filePath) + throws java.lang.Exception
              Sets the image to the image on the filepath.
              -
              -
              Parameters:
              +
              +
              Parameters:
              filePath - Path of the local file.
              -
              Throws:
              +
              Throws:
              java.io.IOException - If file not found.
              java.lang.Exception
              +
            • -
            - - - -
              -
            • -

              getIdentifier

              -
              public java.lang.String getIdentifier()
              -
              -
              Specified by:
              +
            • +
              +

              getIdentifier

              +
              public java.lang.String getIdentifier()
              +
              +
              Specified by:
              getIdentifier in class PDFInsertObject
              -
              Returns:
              +
              Returns:
              Identifier for the JSON.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html index 1ab1f39c..af02c9bd 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html @@ -2,386 +2,285 @@ - -PDFImages (cloudofficeprint 21.2.1 API) + +PDFImages + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class PDFImages

    + +

    Class PDFImages

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.PDF.PDFImages
      +
      +
      +

      -
      public class PDFImages
      +
      public class PDFImages
       extends RenderElement
      Group of different PDF images as one RenderElement. There can only be one PDFImages element in the JSON for Cloud Office Print.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PDFImages​(PDFImage[] images) 
          PDFImages​(PDFImage[] images) 
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PDFImages

            -
            public PDFImages​(PDFImage[] images)
            -
            -
            Parameters:
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PDFImages

              +
              public PDFImages​(PDFImage[] images)
              +
              +
              Parameters:
              images - Group of different PDF images as one RenderElement. There can only be one PDFImage element in the JSON for Cloud Office Print.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getImages

            -
            public PDFImage[] getImages()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getImages

              +
              public PDFImage[] getImages()
              +
              +
              Returns:
              The images to add to the PDF.
              +
            • -
            - - - -
              -
            • -

              setImages

              -
              public void setImages​(PDFImage[] images)
              -
              -
              Parameters:
              +
            • +
              +

              setImages

              +
              public void setImages​(PDFImage[] images)
              +
              +
              Parameters:
              images - The images to add to the PDF.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html index 0b819077..85956512 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html @@ -2,262 +2,205 @@ - -PDFInsertObject (cloudofficeprint 21.2.1 API) + +PDFInsertObject + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class PDFInsertObject

    + +

    Class PDFInsertObject

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
      • -
      -
    • -
    -
    -
      -
    • -
      +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
      +
      +
      +
      Direct Known Subclasses:
      PDFImage, PDFText

      -
      public abstract class PDFInsertObject
      +
      public abstract class PDFInsertObject
       extends java.lang.Object
      Abstract base class for PDF's insertable objects.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PDFInsertObject​(java.lang.Integer x, - java.lang.Integer y, - java.lang.Integer pageNumber) +
          PDFInsertObject​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber)
          Represents an object to insert in a PDF.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Abstract Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      abstract java.lang.StringgetIdentifier() 
      abstract java.lang.StringgetIdentifier() 
      abstract com.google.gson.JsonObjectgetJson() 
      abstract com.google.gson.JsonObjectgetJson() 
      java.lang.IntegergetPageNumber() 
      java.lang.IntegergetPageNumber() 
      java.lang.IntegergetX() 
      java.lang.IntegergetX() 
      java.lang.IntegergetY() 
      java.lang.IntegergetY() 
      voidsetPageNumber​(java.lang.Integer pageNumber) 
      voidsetPageNumber​(java.lang.Integer pageNumber) 
      voidsetX​(java.lang.Integer x) 
      voidsetX​(java.lang.Integer x) 
      voidsetY​(java.lang.Integer y) 
      voidsetY​(java.lang.Integer y) 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PDFInsertObject

            -
            public PDFInsertObject​(java.lang.Integer x,
            -                       java.lang.Integer y,
            -                       java.lang.Integer pageNumber)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PDFInsertObject

              +
              public PDFInsertObject​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber)
              Represents an object to insert in a PDF.
              -
              -
              Parameters:
              +
              +
              Parameters:
              x - X-coordinate of the position of the object in the template starting from bottom left.
              y - Y-coordinate of the position of the object in the template @@ -266,197 +209,148 @@

              PDFInsertObject

              inserted. -1 if the object should be displayed on all pages.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getX

            -
            public java.lang.Integer getX()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getX

              +
              public java.lang.Integer getX()
              +
              +
              Returns:
              X-coordinate of the position of the object in the template starting from bottom left.
              +
            • -
            - - - -
              -
            • -

              setX

              -
              public void setX​(java.lang.Integer x)
              -
              -
              Parameters:
              +
            • +
              +

              setX

              +
              public void setX​(java.lang.Integer x)
              +
              +
              Parameters:
              x - X-coordinate of the position of the object in the template starting from bottom left.
              +
            • -
            - - - -
              -
            • -

              getY

              -
              public java.lang.Integer getY()
              -
              -
              Returns:
              +
            • +
              +

              getY

              +
              public java.lang.Integer getY()
              +
              +
              Returns:
              Y-coordinate of the position of the object in the template starting from bottom left.
              +
            • -
            - - - -
              -
            • -

              setY

              -
              public void setY​(java.lang.Integer y)
              -
              -
              Parameters:
              +
            • +
              +

              setY

              +
              public void setY​(java.lang.Integer y)
              +
              +
              Parameters:
              y - Y-coordinate of the position of the object in the template starting from bottom left.
              +
            • -
            - - - -
              -
            • -

              getPageNumber

              -
              public java.lang.Integer getPageNumber()
              -
              -
              Returns:
              +
            • +
              +

              getPageNumber

              +
              public java.lang.Integer getPageNumber()
              +
              +
              Returns:
              Page number of the page where the object should be inserted. -1 if the text should be displayed on all pages.
              +
            • -
            - - - -
              -
            • -

              setPageNumber

              -
              public void setPageNumber​(java.lang.Integer pageNumber)
              -
              -
              Parameters:
              +
            • +
              +

              setPageNumber

              +
              public void setPageNumber​(java.lang.Integer pageNumber)
              +
              +
              Parameters:
              pageNumber - Page number of the page where the object should be inserted. -1 if the text should be displayed on all pages.
              +
            • -
            - - - -
              -
            • -

              getJson

              -
              public abstract com.google.gson.JsonObject getJson()
              -
              -
              Returns:
              +
            • +
              +

              getJson

              +
              public abstract com.google.gson.JsonObject getJson()
              +
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getIdentifier

              -
              public abstract java.lang.String getIdentifier()
              -
              -
              Returns:
              +
            • +
              +

              getIdentifier

              +
              public abstract java.lang.String getIdentifier()
              +
              +
              Returns:
              Identifier for the JSON.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html index f3c09cd4..df3b9c06 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html @@ -2,312 +2,248 @@ - -PDFText (cloudofficeprint 21.2.1 API) + +PDFText + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class PDFText

    + +

    Class PDFText

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PDFText​(java.lang.Integer x, - java.lang.Integer y, - java.lang.Integer pageNumber, - java.lang.String text) +
          PDFText​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber, +java.lang.String text)
          Represents text to insert in a PDF.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.BooleangetBold() 
      java.lang.BooleangetBold() 
      java.lang.StringgetFont() 
      java.lang.StringgetFont() 
      java.lang.StringgetFontColor() 
      java.lang.StringgetFontColor() 
      java.lang.IntegergetFontSize() 
      java.lang.IntegergetFontSize() 
      java.lang.StringgetIdentifier() 
      java.lang.StringgetIdentifier() 
      java.lang.BooleangetItalic() 
      java.lang.BooleangetItalic() 
      com.google.gson.JsonObjectgetJson() 
      com.google.gson.JsonObjectgetJson() 
      java.lang.IntegergetRotation() 
      java.lang.IntegergetRotation() 
      java.lang.StringgetText() 
      java.lang.StringgetText() 
      voidsetBold​(java.lang.Boolean bold) 
      voidsetBold​(java.lang.Boolean bold) 
      voidsetFont​(java.lang.String font) 
      voidsetFont​(java.lang.String font) 
      voidsetFontColor​(java.lang.String fontColor) 
      voidsetFontColor​(java.lang.String fontColor) 
      voidsetFontSize​(java.lang.Integer fontSize) 
      voidsetFontSize​(java.lang.Integer fontSize) 
      voidsetItalic​(java.lang.Boolean italic) 
      voidsetItalic​(java.lang.Boolean italic) 
      voidsetRotation​(java.lang.Integer rotation) 
      voidsetRotation​(java.lang.Integer rotation) 
      voidsetText​(java.lang.String text) 
      voidsetText​(java.lang.String text) 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject

    +getPageNumber, getX, getY, setPageNumber, setX, setY
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PDFText

            -
            public PDFText​(java.lang.Integer x,
            -               java.lang.Integer y,
            -               java.lang.Integer pageNumber,
            -               java.lang.String text)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PDFText

              +
              public PDFText​(java.lang.Integer x, +java.lang.Integer y, +java.lang.Integer pageNumber, +java.lang.String text)
              Represents text to insert in a PDF. The text options can be set with the setter functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              x - X-coordinate of the position of the text in the template starting from bottom left.
              y - Y-coordinate of the position of the text in the template @@ -316,299 +252,226 @@

              PDFText

              -1 if the text should be displayed on all pages.
              text - Text that should be inserted.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getText

            -
            public java.lang.String getText()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getText

              +
              public java.lang.String getText()
              +
              +
              Returns:
              Text to be inserted in the PDF.
              +
            • -
            - - - -
              -
            • -

              setText

              -
              public void setText​(java.lang.String text)
              -
              -
              Parameters:
              +
            • +
              +

              setText

              +
              public void setText​(java.lang.String text)
              +
              +
              Parameters:
              text - Text to be inserted in the PDF.
              +
            • -
            - - - -
              -
            • -

              getRotation

              -
              public java.lang.Integer getRotation()
              -
              -
              Returns:
              +
            • +
              +

              getRotation

              +
              public java.lang.Integer getRotation()
              +
              +
              Returns:
              Rotation of the text in degrees.
              +
            • -
            - - - -
              -
            • -

              setRotation

              -
              public void setRotation​(java.lang.Integer rotation)
              -
              -
              Parameters:
              +
            • +
              +

              setRotation

              +
              public void setRotation​(java.lang.Integer rotation)
              +
              +
              Parameters:
              rotation - Rotation of the text in degrees.
              +
            • -
            - - - -
              -
            • -

              getBold

              -
              public java.lang.Boolean getBold()
              -
              -
              Returns:
              +
            • +
              +

              getBold

              +
              public java.lang.Boolean getBold()
              +
              +
              Returns:
              Whether the text should be in bold.
              +
            • -
            - - - -
              -
            • -

              setBold

              -
              public void setBold​(java.lang.Boolean bold)
              -
              -
              Parameters:
              +
            • +
              +

              setBold

              +
              public void setBold​(java.lang.Boolean bold)
              +
              +
              Parameters:
              bold - Whether the text should be in bold.
              +
            • -
            - - - -
              -
            • -

              getItalic

              -
              public java.lang.Boolean getItalic()
              -
              -
              Returns:
              +
            • +
              +

              getItalic

              +
              public java.lang.Boolean getItalic()
              +
              +
              Returns:
              Whether the text shoud be in italic.
              +
            • -
            - - - -
              -
            • -

              setItalic

              -
              public void setItalic​(java.lang.Boolean italic)
              -
              -
              Parameters:
              +
            • +
              +

              setItalic

              +
              public void setItalic​(java.lang.Boolean italic)
              +
              +
              Parameters:
              italic - Whether the text should be in italic.
              +
            • -
            - - - -
              -
            • -

              getFont

              -
              public java.lang.String getFont()
              -
              -
              Returns:
              +
            • +
              +

              getFont

              +
              public java.lang.String getFont()
              +
              +
              Returns:
              Font of the text.
              +
            • -
            - - - -
              -
            • -

              setFont

              -
              public void setFont​(java.lang.String font)
              -
              -
              Parameters:
              +
            • +
              +

              setFont

              +
              public void setFont​(java.lang.String font)
              +
              +
              Parameters:
              font - Font of the text.
              +
            • -
            - - - -
              -
            • -

              getFontColor

              -
              public java.lang.String getFontColor()
              -
              -
              Returns:
              +
            • +
              +

              getFontColor

              +
              public java.lang.String getFontColor()
              +
              +
              Returns:
              Color of the text in CSS format.
              +
            • -
            - - - -
              -
            • -

              setFontColor

              -
              public void setFontColor​(java.lang.String fontColor)
              -
              -
              Parameters:
              +
            • +
              +

              setFontColor

              +
              public void setFontColor​(java.lang.String fontColor)
              +
              +
              Parameters:
              fontColor - Color of the text in CSS format.
              +
            • -
            - - - -
              -
            • -

              getFontSize

              -
              public java.lang.Integer getFontSize()
              -
              -
              Returns:
              +
            • +
              +

              getFontSize

              +
              public java.lang.Integer getFontSize()
              +
              +
              Returns:
              Size of the font.
              +
            • -
            - - - -
              -
            • -

              setFontSize

              -
              public void setFontSize​(java.lang.Integer fontSize)
              -
              -
              Parameters:
              +
            • +
              +

              setFontSize

              +
              public void setFontSize​(java.lang.Integer fontSize)
              +
              +
              Parameters:
              fontSize - Size of the font.
              +
            • -
            - - - -
              -
            • -

              getJson

              -
              public com.google.gson.JsonObject getJson()
              -
              -
              Specified by:
              +
            • +
              +

              getJson

              +
              public com.google.gson.JsonObject getJson()
              +
              +
              Specified by:
              getJson in class PDFInsertObject
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getIdentifier

              -
              public java.lang.String getIdentifier()
              -
              -
              Specified by:
              +
            • +
              +

              getIdentifier

              +
              public java.lang.String getIdentifier()
              +
              +
              Specified by:
              getIdentifier in class PDFInsertObject
              -
              Returns:
              +
              Returns:
              Identifier for the JSON.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html index 242bff72..9bf44014 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html @@ -2,385 +2,284 @@ - -PDFTexts (cloudofficeprint 21.2.1 API) + +PDFTexts + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class PDFTexts

    + +

    Class PDFTexts

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.PDF.PDFTexts
      +
      +
      +

      -
      public class PDFTexts
      +
      public class PDFTexts
       extends RenderElement
      Group of different PDF texts as one RenderElement. There can only be one PDFTexts element in the JSON for Cloud Office Print.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PDFTexts​(PDFText[] texts) 
          PDFTexts​(PDFText[] texts) 
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PDFTexts

            -
            public PDFTexts​(PDFText[] texts)
            -
            -
            Parameters:
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PDFTexts

              +
              public PDFTexts​(PDFText[] texts)
              +
              +
              Parameters:
              texts - Group of different PDF texts as one RenderElement. There can only be one PDFTexts element in the JSON for AOP.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getTexts

            -
            public PDFText[] getTexts()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getTexts

              +
              public PDFText[] getTexts()
              +
              +
              Returns:
              The texts to add to the PDF.
              +
            • -
            - - - -
              -
            • -

              setTexts

              -
              public void setTexts​(PDFText[] texts)
              -
              -
              Parameters:
              +
            • +
              +

              setTexts

              +
              public void setTexts​(PDFText[] texts)
              +
              +
              Parameters:
              texts - The texts to add to the PDF.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html index 0d819b51..c4d56418 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html @@ -2,190 +2,130 @@ - -com.cloudofficeprint.RenderElements.PDF (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.PDF + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.RenderElements.PDF

    -
    -
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html index 9f598ab7..8b5d34ff 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html @@ -2,171 +2,105 @@ - -com.cloudofficeprint.RenderElements.PDF Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements.PDF Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.RenderElements.PDF

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    • java.lang.Object
        -
      • com.cloudofficeprint.RenderElements.PDF.PDFInsertObject +
      • com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
          -
        • com.cloudofficeprint.RenderElements.PDF.PDFImage
        • -
        • com.cloudofficeprint.RenderElements.PDF.PDFText
        • +
        • com.cloudofficeprint.RenderElements.PDF.PDFImage
        • +
        • com.cloudofficeprint.RenderElements.PDF.PDFText
      • -
      • com.cloudofficeprint.RenderElements.RenderElement +
      • com.cloudofficeprint.RenderElements.RenderElement
          -
        • com.cloudofficeprint.RenderElements.PDF.PDFFormData
        • -
        • com.cloudofficeprint.RenderElements.PDF.PDFImages
        • -
        • com.cloudofficeprint.RenderElements.PDF.PDFTexts
        • +
        • com.cloudofficeprint.RenderElements.PDF.PDFFormData
        • +
        • com.cloudofficeprint.RenderElements.PDF.PDFImages
        • +
        • com.cloudofficeprint.RenderElements.PDF.PDFTexts
    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html index 9e0cc7af..d4d7281c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html @@ -2,356 +2,261 @@ - -PageBreak (cloudofficeprint 21.2.1 API) + +PageBreak + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class PageBreak

    + +

    Class PageBreak

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          PageBreak​(java.lang.String name, - java.lang.String value) +
          PageBreak​(java.lang.String name, +java.lang.String value)
          Represents an object that indicates to put a break in the template or not.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            PageBreak

            -
            public PageBreak​(java.lang.String name,
            -                 java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              PageBreak

              +
              public PageBreak​(java.lang.String name, +java.lang.String value)
              Represents an object that indicates to put a break in the template or not.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this break for the tag.
              value - Value should be set to 'page' or 'pagebreak' for PageBreak, 'column' or 'columnbreak' for column breaks, if set to true it will create a pagebreak.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html index 3a9423c5..2c77fbf1 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html @@ -2,379 +2,281 @@ - -Property (cloudofficeprint 21.2.1 API) + +Property + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class Property

    + +

    Class Property

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.Property
      +
      +
      +

      -
      public class Property
      +
      public class Property
       extends RenderElement
      The most basic RenderElement. It simply consists of a name and a value. In a template the tag '{name}' will be replaced by 'value'.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + - - - + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Property​(java.lang.String name, - int value) +
          Property​(java.lang.String name, +int value)
          The most basic RenderElement.
          Property​(java.lang.String name, - java.lang.String value) +
          Property​(java.lang.String name, +java.lang.String value)
          The most basic RenderElement.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Property

            -
            public Property​(java.lang.String name,
            -                java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Property

              +
              public Property​(java.lang.String name, +java.lang.String value)
              The most basic RenderElement. It simply consists of a name and a value. In a template the tag '{name}' will be replaced by 'value'.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this property for the tag.
              value - Value of this element to replace the tag with.
              +
            • -
            - - - -
              -
            • -

              Property

              -
              public Property​(java.lang.String name,
              -                int value)
              +
            • +
              +

              Property

              +
              public Property​(java.lang.String name, +int value)
              The most basic RenderElement. It simply consists of a name and a value. In a template the tag '{name}' will be replaced by 'value'.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this property for the tag.
              value - Value of this property to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this property for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html index 594282a7..8c77e064 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html @@ -2,352 +2,257 @@ - -Raw (cloudofficeprint 21.2.1 API) + +Raw + + + - + + - - - - - + + - - -
    +
    + - +
    + -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.Raw
      +
      +
      +

      -
      public class Raw
      +
      public class Raw
       extends RenderElement
      Only available for HTML and Markdown templates. When you use the Property Renderelement in HTML or in MD, it will escape any special characters like "_". By using the Raw Renderelement, nothing will be escaped.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Raw​(java.lang.String name, - java.lang.String value) 
          Raw​(java.lang.String name, +java.lang.String value) 
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Raw

            -
            public Raw​(java.lang.String name,
            -           java.lang.String value)
            -
            -
            Parameters:
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Raw

              +
              public Raw​(java.lang.String name, +java.lang.String value)
              +
              +
              Parameters:
              name - Name of this element for the tag.
              value - Value of this element to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this property for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html index 64604dfa..134990fe 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html @@ -2,387 +2,300 @@ - -RawJsonArray (cloudofficeprint 21.2.1 API) + +RawJsonArray + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class RawJsonArray

    + +

    Class RawJsonArray

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          RawJsonArray​(java.lang.String name, - com.google.gson.JsonArray array) +
          RawJsonArray​(java.lang.String name, +com.google.gson.JsonArray array)
          Element to insert a footnote in a template.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + - - - - + + + + - - - - + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() +
      com.google.gson.JsonObjectgetJSON()
      Don't use.
      com.google.gson.JsonArraygetJsonArray() 
      com.google.gson.JsonArraygetJsonArray() +
      To get raw json array.
      +
      java.util.Set<java.lang.String>getTemplateTags() +
      java.util.Set<java.lang.String>getTemplateTags()
      Don't use.
      voidsetJsonArray​(com.google.gson.JsonArray jsonArray) 
      voidsetJsonArray​(com.google.gson.JsonArray jsonArray) +
      to set Json array
      +
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            RawJsonArray

            -
            public RawJsonArray​(java.lang.String name,
            -                    com.google.gson.JsonArray array)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              RawJsonArray

              +
              public RawJsonArray​(java.lang.String name, +com.google.gson.JsonArray array)
              Element to insert a footnote in a template.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name for the tag.
              array - JsonArray containing the data.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJsonArray

            -
            public com.google.gson.JsonArray getJsonArray()
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJsonArray

              +
              public com.google.gson.JsonArray getJsonArray()
              +
              To get raw json array.
              +
              +
              Returns:
              +
              json array
              +
              +
            • -
            - - - -
              -
            • -

              setJsonArray

              -
              public void setJsonArray​(com.google.gson.JsonArray jsonArray)
              +
            • +
              +

              setJsonArray

              +
              public void setJsonArray​(com.google.gson.JsonArray jsonArray)
              +
              to set Json array
              +
              +
              Parameters:
              +
              jsonArray - Json Array
              +
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              Don't use.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              Don't use.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html index 624415f4..c4541ee3 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html @@ -2,404 +2,304 @@ - -RenderElement (cloudofficeprint 21.2.1 API) + +RenderElement + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class RenderElement

    + +

    Class RenderElement

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.RenderElements.RenderElement
      • -
      -
    • -
    -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          RenderElement() 
          RenderElement() 
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Abstract Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      abstract com.google.gson.JsonObjectgetJSON() 
      abstract com.google.gson.JsonObjectgetJSON() 
      java.lang.StringgetName() 
      java.lang.StringgetName() 
      abstract java.util.Set<java.lang.String>getTemplateTags() 
      abstract java.util.Set<java.lang.String>getTemplateTags() 
      java.lang.StringgetValue() 
      java.lang.StringgetValue() 
      voidsetName​(java.lang.String name) 
      voidsetName​(java.lang.String name) 
      voidsetValue​(java.lang.String value) 
      voidsetValue​(java.lang.String value) 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            RenderElement

            -
            public RenderElement()
            -
          • -
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            RenderElement

            +
            public RenderElement()
            +
          +
        • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getName

              -
              public java.lang.String getName()
              -
              -
              Returns:
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getName

                +
                public java.lang.String getName()
                +
                +
                Returns:
                Name of this element for the tag.
                +
              • -
              - - - -
                -
              • -

                setName

                -
                public void setName​(java.lang.String name)
                -
                -
                Parameters:
                +
              • +
                +

                setName

                +
                public void setName​(java.lang.String name)
                +
                +
                Parameters:
                name - Name of this element for the tag.
                +
              • -
              - - - -
                -
              • -

                getValue

                -
                public java.lang.String getValue()
                -
                -
                Returns:
                +
              • +
                +

                getValue

                +
                public java.lang.String getValue()
                +
                +
                Returns:
                Value of this element.
                +
              • -
              - - - -
                -
              • -

                setValue

                -
                public void setValue​(java.lang.String value)
                -
                -
                Parameters:
                +
              • +
                +

                setValue

                +
                public void setValue​(java.lang.String value)
                +
                +
                Parameters:
                value - Value of this property.
                +
              • -
              - - - -
                -
              • -

                getJSON

                -
                public abstract com.google.gson.JsonObject getJSON()
                -
                -
                Returns:
                +
              • +
                +

                getJSON

                +
                public abstract com.google.gson.JsonObject getJSON()
                +
                +
                Returns:
                JSONObject with the tags for this element for the Cloud Office Print server.
                +
              • -
              - - - -
                -
              • -

                getTemplateTags

                -
                public abstract java.util.Set<java.lang.String> getTemplateTags()
                -
                -
                Returns:
                +
              • +
                +

                getTemplateTags

                +
                public abstract java.util.Set<java.lang.String> getTemplateTags()
                +
                +
                Returns:
                An immutable set containing all available template tags this element can replace.
                -
              • -
              +
        -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html index 3818410b..cafc24a4 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html @@ -2,361 +2,266 @@ - -RightToLeft (cloudofficeprint 21.2.1 API) + +RightToLeft + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class RightToLeft

    + +

    Class RightToLeft

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.RightToLeft
      +
      +
      +

      -
      public class RightToLeft
      +
      public class RightToLeft
       extends RenderElement
      Only supported in Word templates, might work in other templates but behaviour is not predictable. When substituting the content in a language written in right to left, like Arabic, this class can be used to properly format the language. If the substituting content does not contain any right to left language character, then it will behave as a regular substitution tag.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          RightToLeft​(java.lang.String name, - java.lang.String value) +
          RightToLeft​(java.lang.String name, +java.lang.String value)
          When substituting the content in a language written in right to left, like Arabic, this object can be used to properly format the language.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            RightToLeft

            -
            public RightToLeft​(java.lang.String name,
            -                   java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              RightToLeft

              +
              public RightToLeft​(java.lang.String name, +java.lang.String value)
              When substituting the content in a language written in right to left, like Arabic, this object can be used to properly format the language. If the substituting content does not contain any right to left language character, then it will behave as a regular substitution tag.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this element for the tag.
              value - Value to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getJSON

            -
            public com.google.gson.JsonObject getJSON()
            -
            -
            Specified by:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html index 49cc8110..fcde43e1 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html @@ -2,642 +2,499 @@ - -StyledProperty (cloudofficeprint 21.2.1 API) + +StyledProperty + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class StyledProperty

    + +

    Class StyledProperty

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.RenderElements.RenderElement +
      com.cloudofficeprint.RenderElements.StyledProperty
      +
      +
      +

      -
      public class StyledProperty
      +
      public class StyledProperty
       extends RenderElement
      Only supported in Word and Powerpoint templates. This {style } tag allows user to style their text.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          StyledProperty​(java.lang.String name, - java.lang.String value) +
          StyledProperty​(java.lang.String name, +java.lang.String value)
          Represents styled text.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            StyledProperty

            -
            public StyledProperty​(java.lang.String name,
            -                      java.lang.String value)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              StyledProperty

              +
              public StyledProperty​(java.lang.String name, +java.lang.String value)
              Represents styled text. Set the style with the set functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the property for the tag.
              value - Value to replace the tag with.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getFont

            -
            public java.lang.String getFont()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getFont

              +
              public java.lang.String getFont()
              +
              +
              Returns:
              Font of the text.
              +
            • -
            - - - -
              -
            • -

              setFont

              -
              public void setFont​(java.lang.String font)
              -
              -
              Parameters:
              +
            • +
              +

              setFont

              +
              public void setFont​(java.lang.String font)
              +
              +
              Parameters:
              font - Font of the text.
              +
            • -
            - - - -
              -
            • -

              getFontSize

              -
              public java.lang.String getFontSize()
              -
              -
              Returns:
              +
            • +
              +

              getFontSize

              +
              public java.lang.String getFontSize()
              +
              +
              Returns:
              Size of the text.
              +
            • -
            - - - -
              -
            • -

              setFontSize

              -
              public void setFontSize​(java.lang.String fontSize)
              -
              -
              Parameters:
              +
            • +
              +

              setFontSize

              +
              public void setFontSize​(java.lang.String fontSize)
              +
              +
              Parameters:
              fontSize - Size of the text.
              +
            • -
            - - - -
              -
            • -

              getFontColor

              -
              public java.lang.String getFontColor()
              -
              -
              Returns:
              +
            • +
              +

              getFontColor

              +
              public java.lang.String getFontColor()
              +
              +
              Returns:
              Color of the text, in CSS format.
              +
            • -
            - - - -
              -
            • -

              setFontColor

              -
              public void setFontColor​(java.lang.String fontColor)
              -
              -
              Parameters:
              +
            • +
              +

              setFontColor

              +
              public void setFontColor​(java.lang.String fontColor)
              +
              +
              Parameters:
              fontColor - Color of the text, in CSS format.
              +
            • -
            - - - -
              -
            • -

              getBold

              -
              public java.lang.Boolean getBold()
              -
              -
              Returns:
              +
            • +
              +

              getBold

              +
              public java.lang.Boolean getBold()
              +
              +
              Returns:
              Whether text is marked in bold.
              +
            • -
            - - - -
              -
            • -

              setBold

              -
              public void setBold​(java.lang.Boolean bold)
              -
              -
              Parameters:
              +
            • +
              +

              setBold

              +
              public void setBold​(java.lang.Boolean bold)
              +
              +
              Parameters:
              bold - Whether text is marked in bold.
              +
            • -
            - - - -
              -
            • -

              getItalic

              -
              public java.lang.Boolean getItalic()
              -
              -
              Returns:
              +
            • +
              +

              getItalic

              +
              public java.lang.Boolean getItalic()
              +
              +
              Returns:
              Whether text is in italic.
              +
            • -
            - - - -
              -
            • -

              setItalic

              -
              public void setItalic​(java.lang.Boolean italic)
              -
              -
              Parameters:
              +
            • +
              +

              setItalic

              +
              public void setItalic​(java.lang.Boolean italic)
              +
              +
              Parameters:
              italic - Whether text is in italic.
              +
            • -
            - - - -
              -
            • -

              getUnderline

              -
              public java.lang.Boolean getUnderline()
              -
              -
              Returns:
              +
            • +
              +

              getUnderline

              +
              public java.lang.Boolean getUnderline()
              +
              +
              Returns:
              Whether text is underlind.
              +
            • -
            - - - -
              -
            • -

              setUnderline

              -
              public void setUnderline​(java.lang.Boolean underline)
              -
              -
              Parameters:
              +
            • +
              +

              setUnderline

              +
              public void setUnderline​(java.lang.Boolean underline)
              +
              +
              Parameters:
              underline - Whether text is underlind.
              +
            • -
            - - - -
              -
            • -

              getStrikethrough

              -
              public java.lang.Boolean getStrikethrough()
              -
              -
              Returns:
              +
            • +
              +

              getStrikethrough

              +
              public java.lang.Boolean getStrikethrough()
              +
              +
              Returns:
              Whether text is strikethroughed.
              +
            • -
            - - - -
              -
            • -

              setStrikethrough

              -
              public void setStrikethrough​(java.lang.Boolean strikethrough)
              -
              -
              Parameters:
              +
            • +
              +

              setStrikethrough

              +
              public void setStrikethrough​(java.lang.Boolean strikethrough)
              +
              +
              Parameters:
              strikethrough - Whether text is strikethroughed.
              +
            • -
            - - - -
              -
            • -

              getHighlightColor

              -
              public java.lang.String getHighlightColor()
              -
              -
              Returns:
              +
            • +
              +

              getHighlightColor

              +
              public java.lang.String getHighlightColor()
              +
              +
              Returns:
              Color to highlight the text with in CSS format.
              +
            • -
            - - - -
              -
            • -

              setHighlightColor

              -
              public void setHighlightColor​(java.lang.String highlightColor)
              -
              -
              Parameters:
              +
            • +
              +

              setHighlightColor

              +
              public void setHighlightColor​(java.lang.String highlightColor)
              +
              +
              Parameters:
              highlightColor - Color to highlight the text with in CSS format.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html index ed5330ed..55abbcde 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html @@ -2,266 +2,202 @@ - -TableOfContents (cloudofficeprint 21.2.1 API) + +TableOfContents + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class TableOfContents

    + +

    Class TableOfContents

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          TableOfContents​(java.lang.String name, - java.lang.String title, - int depth, - java.lang.String tabLeader) +
          TableOfContents​(java.lang.String name, +java.lang.String title, +int depth, +java.lang.String tabLeader)
          The most basic RenderElement.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            TableOfContents

            -
            public TableOfContents​(java.lang.String name,
            -                       java.lang.String title,
            -                       int depth,
            -                       java.lang.String tabLeader)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              TableOfContents

              +
              public TableOfContents​(java.lang.String name, +java.lang.String title, +int depth, +java.lang.String tabLeader)
              The most basic RenderElement. It simply consists of a name and a value. In a template the tag '{name}' will be replaced by 'value'. If you don't want to mention an optional parameter and use the default value, put null (or O for an int) as argument.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of this property.
              title - Title of the table of content.
              depth - The depth of heading to be shown. (Optional, default : 3)
              @@ -269,172 +205,129 @@

              TableOfContents

              filled. Can be "hyphen", "underscore", or "dot". (Optional, default : "dot")
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getDepth

            -
            public int getDepth()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getDepth

              +
              public int getDepth()
              +
              +
              Returns:
              The depth of heading to be shown. Default : 3.
              +
            • -
            - - - -
              -
            • -

              setDepth

              -
              public void setDepth​(int depth)
              -
              -
              Parameters:
              +
            • +
              +

              setDepth

              +
              public void setDepth​(int depth)
              +
              +
              Parameters:
              depth - The depth of heading to be shown. Default : 3.
              +
            • -
            - - - -
              -
            • -

              getTabLeader

              -
              public java.lang.String getTabLeader()
              -
              -
              Returns:
              +
            • +
              +

              getTabLeader

              +
              public java.lang.String getTabLeader()
              +
              +
              Returns:
              How the space between title and page number should be filled. Can be "hyphen", "underscore", or "dot" (default).
              +
            • -
            - - - -
              -
            • -

              setTabLeader

              -
              public void setTabLeader​(java.lang.String tabLeader)
              -
              -
              Parameters:
              +
            • +
              +

              setTabLeader

              +
              public void setTabLeader​(java.lang.String tabLeader)
              +
              +
              Parameters:
              tabLeader - How the space between title and page number should be filled. Can be "hyphen", "underscore", or "dot" (default).
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this property for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html index ac8341ef..c7b55b63 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html @@ -2,573 +2,442 @@ - -TextBox (cloudofficeprint 21.2.1 API) + +TextBox + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class TextBox

    + +

    Class TextBox

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          TextBox​(java.lang.String name, - java.lang.String text) +
          TextBox​(java.lang.String name, +java.lang.String text)
          This object represents a text box starting in the cell containing the tag in Excel.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            TextBox

            -
            public TextBox​(java.lang.String name,
            -               java.lang.String text)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              TextBox

              +
              public TextBox​(java.lang.String name, +java.lang.String text)
              This object represents a text box starting in the cell containing the tag in Excel. Options of the text can be set with the setter functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name for the tag.
              text - Text of the textbox.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getFont

            -
            public java.lang.String getFont()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getFont

              +
              public java.lang.String getFont()
              +
              +
              Returns:
              Font of the text, default Calibri.
              +
            • -
            - - - -
              -
            • -

              setFont

              -
              public void setFont​(java.lang.String font)
              -
              -
              Parameters:
              +
            • +
              +

              setFont

              +
              public void setFont​(java.lang.String font)
              +
              +
              Parameters:
              font - Font of the text, default Calibri.
              +
            • -
            - - - -
              -
            • -

              getFontColor

              -
              public java.lang.String getFontColor()
              -
              -
              Returns:
              +
            • +
              +

              getFontColor

              +
              public java.lang.String getFontColor()
              +
              +
              Returns:
              Color of the text, default black.
              +
            • -
            - - - -
              -
            • -

              setFontColor

              -
              public void setFontColor​(java.lang.String fontColor)
              -
              -
              Parameters:
              +
            • +
              +

              setFontColor

              +
              public void setFontColor​(java.lang.String fontColor)
              +
              +
              Parameters:
              fontColor - Color of the text, default black.
              +
            • -
            - - - -
              -
            • -

              getFontSize

              -
              public java.lang.Integer getFontSize()
              -
              -
              Returns:
              +
            • +
              +

              getFontSize

              +
              public java.lang.Integer getFontSize()
              +
              +
              Returns:
              Size of the text, default 60.
              +
            • -
            - - - -
              -
            • -

              setFontSize

              -
              public void setFontSize​(java.lang.Integer fontSize)
              -
              -
              Parameters:
              +
            • +
              +

              setFontSize

              +
              public void setFontSize​(java.lang.Integer fontSize)
              +
              +
              Parameters:
              fontSize - Size of the text, default 60.
              +
            • -
            - - - -
              -
            • -

              getTransparency

              -
              public java.lang.String getTransparency()
              -
              -
              Returns:
              +
            • +
              +

              getTransparency

              +
              public java.lang.String getTransparency()
              +
              +
              Returns:
              Transparency of the text in percent, optional default: 0%.
              +
            • -
            - - - -
              -
            • -

              setTransparency

              -
              public void setTransparency​(java.lang.String transparency)
              -
              -
              Parameters:
              +
            • +
              +

              setTransparency

              +
              public void setTransparency​(java.lang.String transparency)
              +
              +
              Parameters:
              transparency - Transparency of the text in percent, optional default: 0%.
              +
            • -
            - - - -
              -
            • -

              getWidth

              -
              public java.lang.String getWidth()
              -
              -
              Returns:
              +
            • +
              +

              getWidth

              +
              public java.lang.String getWidth()
              +
              +
              Returns:
              Width of the textbox, default 11.22 inch.
              +
            • -
            - - - -
              -
            • -

              setWidth

              -
              public void setWidth​(java.lang.String width)
              -
              -
              Parameters:
              +
            • +
              +

              setWidth

              +
              public void setWidth​(java.lang.String width)
              +
              +
              Parameters:
              width - Width of the textbox, default 11.22 in.
              +
            • -
            - - - -
              -
            • -

              getHeight

              -
              public java.lang.String getHeight()
              -
              -
              Returns:
              +
            • +
              +

              getHeight

              +
              public java.lang.String getHeight()
              +
              +
              Returns:
              Height of the textbox, default 3.1 in.
              +
            • -
            - - - -
              -
            • -

              setHeight

              -
              public void setHeight​(java.lang.String height)
              -
              -
              Parameters:
              +
            • +
              +

              setHeight

              +
              public void setHeight​(java.lang.String height)
              +
              +
              Parameters:
              height - Height of the textbox, default 3.1 in.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this property for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html index c8251781..ff2a1c6f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html @@ -2,589 +2,459 @@ - -Watermark (cloudofficeprint 21.2.1 API) + +Watermark + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class Watermark

    + +

    Class Watermark

    -
    - -
    - -
    -
    -
      -
    • +
      It is possible to use your own Watermark with font, size, opacity, color, width, height and rotation.
      + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Watermark​(java.lang.String name, - java.lang.String text) +
          Watermark​(java.lang.String name, +java.lang.String text)
          Represents a watermark.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringgetColor() 
      java.lang.StringgetColor() 
      java.lang.StringgetFont() 
      java.lang.StringgetFont() 
      java.lang.StringgetHeight() 
      java.lang.StringgetHeight() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.lang.FloatgetOpacity() 
      java.lang.FloatgetOpacity() 
      java.lang.IntegergetRotation() 
      java.lang.IntegergetRotation() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.util.Set<java.lang.String>getTemplateTags() 
      java.lang.StringgetWidth() 
      java.lang.StringgetWidth() 
      voidsetColor​(java.lang.String color) +
      voidsetColor​(java.lang.String color)
      Default :"silver".
      voidsetFont​(java.lang.String font) +
      voidsetFont​(java.lang.String font)
      Default : Calibri.
      voidsetHeight​(java.lang.String height) +
      voidsetHeight​(java.lang.String height)
      Default : automatically determined by Cloud Office Print.
      voidsetOpacity​(java.lang.Float opacity) +
      voidsetOpacity​(java.lang.Float opacity)
      Default: 1.
      voidsetRotation​(java.lang.Integer rotation) +
      voidsetRotation​(java.lang.Integer rotation)
      Default : calculated to lie along the bottom-left to top-right diagonal.
      voidsetWidth​(java.lang.String width) +
      voidsetWidth​(java.lang.String width)
      Default : automatically determined by Cloud Office Print.
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Watermark

            -
            public Watermark​(java.lang.String name,
            -                 java.lang.String text)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Watermark

              +
              public Watermark​(java.lang.String name, +java.lang.String text)
              Represents a watermark. Set the style and options of the watermark with the set functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              name - Name of the watermark for the tag.
              text - Text of the watermark.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getFont

            -
            public java.lang.String getFont()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getFont

              +
              public java.lang.String getFont()
              +
              +
              Returns:
              Font of the text.
              +
            • -
            - - - -
              -
            • -

              setFont

              -
              public void setFont​(java.lang.String font)
              +
            • +
              +

              setFont

              +
              public void setFont​(java.lang.String font)
              Default : Calibri.
              -
              -
              Parameters:
              +
              +
              Parameters:
              font - Font of the text.
              +
            • -
            - - - -
              -
            • -

              getColor

              -
              public java.lang.String getColor()
              -
              -
              Returns:
              +
            • +
              +

              getColor

              +
              public java.lang.String getColor()
              +
              +
              Returns:
              Color of the text, in CSS format.
              +
            • -
            - - - -
              -
            • -

              setColor

              -
              public void setColor​(java.lang.String color)
              +
            • +
              +

              setColor

              +
              public void setColor​(java.lang.String color)
              Default :"silver".
              -
              -
              Parameters:
              +
              +
              Parameters:
              color - Color of the text, in CSS format.
              +
            • -
            - - - -
              -
            • -

              getWidth

              -
              public java.lang.String getWidth()
              -
              -
              Returns:
              +
            • +
              +

              getWidth

              +
              public java.lang.String getWidth()
              +
              +
              Returns:
              Width to scale the watermark text to.
              +
            • -
            - - - -
              -
            • -

              setWidth

              -
              public void setWidth​(java.lang.String width)
              +
            • +
              +

              setWidth

              +
              public void setWidth​(java.lang.String width)
              Default : automatically determined by Cloud Office Print.
              -
              -
              Parameters:
              +
              +
              Parameters:
              width - Width + unit (px, pt, in, cm or em) e.g. : 10 cm.
              +
            • -
            - - - -
              -
            • -

              getHeight

              -
              public java.lang.String getHeight()
              -
              -
              Returns:
              +
            • +
              +

              getHeight

              +
              public java.lang.String getHeight()
              +
              +
              Returns:
              Height to scale the watermark text to.
              +
            • -
            - - - -
              -
            • -

              setHeight

              -
              public void setHeight​(java.lang.String height)
              +
            • +
              +

              setHeight

              +
              public void setHeight​(java.lang.String height)
              Default : automatically determined by Cloud Office Print.
              -
              -
              Parameters:
              +
              +
              Parameters:
              height - Height + unit (px, pt, in, cm or em) e.g. : 10 cm.
              +
            • -
            - - - -
              -
            • -

              getOpacity

              -
              public java.lang.Float getOpacity()
              -
              -
              Returns:
              +
            • +
              +

              getOpacity

              +
              public java.lang.Float getOpacity()
              +
              +
              Returns:
              Opacity of the watermark text.
              +
            • -
            - - - -
              -
            • -

              setOpacity

              -
              public void setOpacity​(java.lang.Float opacity)
              +
            • +
              +

              setOpacity

              +
              public void setOpacity​(java.lang.Float opacity)
              Default: 1.
              -
              -
              Parameters:
              +
              +
              Parameters:
              opacity - Opacity of the watermark text. Decimal between 0 and 1.
              +
            • -
            - - - -
              -
            • -

              getRotation

              -
              public java.lang.Integer getRotation()
              -
              -
              Returns:
              +
            • +
              +

              getRotation

              +
              public java.lang.Integer getRotation()
              +
              +
              Returns:
              Rotation of the watermark text (integer to be interpreted in degrees).
              +
            • -
            - - - -
              -
            • -

              setRotation

              -
              public void setRotation​(java.lang.Integer rotation)
              +
            • +
              +

              setRotation

              +
              public void setRotation​(java.lang.Integer rotation)
              Default : calculated to lie along the bottom-left to top-right diagonal.
              -
              -
              Parameters:
              +
              +
              Parameters:
              rotation - Rotation of the watermark text (integer to be interpreted in degrees).
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              -
              -
              Specified by:
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              An immutable set containing all available template tags this element can replace.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html index bde870bd..04a7dafc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html @@ -2,280 +2,228 @@ - -com.cloudofficeprint.RenderElements (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.RenderElements

    -
    -
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html index 0dca6151..4dc77c9c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html @@ -2,181 +2,116 @@ - -com.cloudofficeprint.RenderElements Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.RenderElements Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.RenderElements

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html index 21446c93..94556232 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html @@ -2,457 +2,350 @@ - -Base64Resource (cloudofficeprint 21.2.1 API) + +Base64Resource + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class Base64Resource

    + +

    Class Base64Resource

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Resources.Resource +
      com.cloudofficeprint.Resources.Base64Resource
      +
      +
      +

      -
      public class Base64Resource
      +
      public class Base64Resource
       extends Resource
      Child class of Resource. A class representing a resource (file) with base64-encoded data for the Cloud Office Print server.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + - - - + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Base64Resource() +
          Base64Resource()
          Constructor for creating an uninitialised object of this class.
          Base64Resource​(java.lang.String filetype, - java.lang.String database64) +
          Base64Resource​(java.lang.String filetype, +java.lang.String database64)
          Constructor for creating an object of this class where the database64 can be supplied as a string.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + - - - - + + + - - - - + + + - - - - + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringgetFileBase64() 
      java.lang.StringgetFileBase64() 
      com.google.gson.JsonObjectgetJSONForSecondaryFile() +
      com.google.gson.JsonObjectgetJSONForSecondaryFile()
      Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
      com.google.gson.JsonObjectgetJSONForTemplate() +
      com.google.gson.JsonObjectgetJSONForTemplate()
      Needs to be called to get the JSON of a resource for a template.
      voidsetFileBase64​(java.lang.String fileBase64) +
      voidsetFileBase64​(java.lang.String fileBase64)
      Sets the data of the resource to the given parameter.
      voidsetFileFromLocalFile​(java.lang.String filePath) +
      voidsetFileFromLocalFile​(java.lang.String filePath)
      Sets the filetype of this resource to the extension of the file, sets the mimetype as well.
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.Resources.Resource

    +getExtension, getFiletype, getMimeType, setFiletype, setMimeType
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Base64Resource

            -
            public Base64Resource()
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Base64Resource

              +
              public Base64Resource()
              Constructor for creating an uninitialised object of this class. Needs to be populated with setFileFromLocalFile.
              +
            • -
            - - - -
              -
            • -

              Base64Resource

              -
              public Base64Resource​(java.lang.String filetype,
              -                      java.lang.String database64)
              -               throws java.lang.Exception
              +
            • +
              +

              Base64Resource

              +
              public Base64Resource​(java.lang.String filetype, +java.lang.String database64) + throws java.lang.Exception
              Constructor for creating an object of this class where the database64 can be supplied as a string.
              -
              -
              Parameters:
              +
              +
              Parameters:
              filetype - Type (extension) of the resource e.g. : docx (not docx. !).
              database64 - Data of the resource base64 encoded.
              -
              Throws:
              +
              Throws:
              java.lang.Exception - If the mimetype is not found.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getFileBase64

            -
            public java.lang.String getFileBase64()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getFileBase64

              +
              public java.lang.String getFileBase64()
              +
              +
              Returns:
              a string of the resource base64 encoded.
              +
            • -
            - - - -
              -
            • -

              setFileBase64

              -
              public void setFileBase64​(java.lang.String fileBase64)
              +
            • +
              +

              setFileBase64

              +
              public void setFileBase64​(java.lang.String fileBase64)
              Sets the data of the resource to the given parameter.
              -
              -
              Parameters:
              +
              +
              Parameters:
              fileBase64 - base64 encoded version of the file.
              +
            • -
            - - - -
              -
            • -

              getJSONForTemplate

              -
              public com.google.gson.JsonObject getJSONForTemplate()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForTemplate

              +
              public com.google.gson.JsonObject getJSONForTemplate()
              +
              Description copied from class: Resource
              Needs to be called to get the JSON of a resource for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForTemplate in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for a base64 resource as template for the Cloud Office Print server ("file","template_type").
              +
            • -
            - - - -
              -
            • -

              getJSONForSecondaryFile

              -
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForSecondaryFile

              +
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              +
              Description copied from class: Resource
              Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForSecondaryFile in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags ("mime_type","file_content","file_source") for a base 64 resource as a secondary file (subtemplates, files to prepend, files to append and files to insert) for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              setFileFromLocalFile

              -
              public void setFileFromLocalFile​(java.lang.String filePath)
              -                          throws java.lang.Exception
              +
            • +
              +

              setFileFromLocalFile

              +
              public void setFileFromLocalFile​(java.lang.String filePath) + throws java.lang.Exception
              Sets the filetype of this resource to the extension of the file, sets the mimetype as well. Reads all bytes of the file, coverts them to base64 and stores them in this.fileBase64.
              -
              -
              Parameters:
              +
              +
              Parameters:
              filePath - Path of the local file.
              -
              Throws:
              +
              Throws:
              java.io.IOException - If file not found.
              java.lang.Exception - If the extension of the file is not found.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html index 4a1c9e1f..b24a4b11 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html @@ -2,293 +2,229 @@ - -ExternalResource (cloudofficeprint 21.2.1 API) + +ExternalResource + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class ExternalResource

    + +

    Class ExternalResource

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ExternalResource​(java.lang.String dataSource, - java.lang.String endpoint, - java.lang.String fileName, - com.google.gson.JsonArray headers, - java.lang.String auth) +
          ExternalResource​(java.lang.String dataSource, +java.lang.String endpoint, +java.lang.String fileName, +com.google.gson.JsonArray headers, +java.lang.String auth)
          Abstract base class for external resources.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getTemplateTags, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ExternalResource

            -
            public ExternalResource​(java.lang.String dataSource,
            -                        java.lang.String endpoint,
            -                        java.lang.String fileName,
            -                        com.google.gson.JsonArray headers,
            -                        java.lang.String auth)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ExternalResource

              +
              public ExternalResource​(java.lang.String dataSource, +java.lang.String endpoint, +java.lang.String fileName, +com.google.gson.JsonArray headers, +java.lang.String auth)
              Abstract base class for external resources.
              -
              -
              Parameters:
              +
              +
              Parameters:
              dataSource - Type of request: graphql or rest.
              endpoint - URL of the data source from where the JSON needs to be read.
              @@ -298,236 +234,178 @@

              ExternalResource

              auth - Basic authentication i.e. 'user:password' to compute an Authorization header.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getDataSource

            -
            public java.lang.String getDataSource()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getDataSource

              +
              public java.lang.String getDataSource()
              +
              +
              Returns:
              Type of request: graphql or rest.
              +
            • -
            - - - -
              -
            • -

              setDataSource

              -
              public void setDataSource​(java.lang.String dataSource)
              -
              -
              Parameters:
              +
            • +
              +

              setDataSource

              +
              public void setDataSource​(java.lang.String dataSource)
              +
              +
              Parameters:
              dataSource - Type of request: graphql or rest
              +
            • -
            - - - -
              -
            • -

              getEndpoint

              -
              public java.lang.String getEndpoint()
              -
              -
              Returns:
              +
            • +
              +

              getEndpoint

              +
              public java.lang.String getEndpoint()
              +
              +
              Returns:
              URL of the data source from where the JSON needs to be read.
              +
            • -
            - - - -
              -
            • -

              setEndpoint

              -
              public void setEndpoint​(java.lang.String endpoint)
              -
              -
              Parameters:
              +
            • +
              +

              setEndpoint

              +
              public void setEndpoint​(java.lang.String endpoint)
              +
              +
              Parameters:
              endpoint - URL of the data source from where the JSON needs to be read.
              +
            • -
            - - - -
              -
            • -

              getFileName

              -
              public java.lang.String getFileName()
              -
              -
              Returns:
              +
            • +
              +

              getFileName

              +
              public java.lang.String getFileName()
              +
              +
              Returns:
              Name of the output file.
              +
            • -
            - - - -
              -
            • -

              setFileName

              -
              public void setFileName​(java.lang.String fileName)
              -
              -
              Parameters:
              +
            • +
              +

              setFileName

              +
              public void setFileName​(java.lang.String fileName)
              +
              +
              Parameters:
              fileName - Name of the output file.
              +
            • -
            - - - -
              -
            • -

              getHeaders

              -
              public com.google.gson.JsonArray getHeaders()
              -
              -
              Returns:
              +
            • +
              +

              getHeaders

              +
              public com.google.gson.JsonArray getHeaders()
              +
              +
              Returns:
              JsonArray of the HTTP headers, e.g. [{"Content-Type":"application/json"},{"Custom-Auth-Token":"xysazxklj4568asdf46a5sd4f"}]
              +
            • -
            - - - -
              -
            • -

              setHeaders

              -
              public void setHeaders​(com.google.gson.JsonArray headers)
              -
              -
              Parameters:
              +
            • +
              +

              setHeaders

              +
              public void setHeaders​(com.google.gson.JsonArray headers)
              +
              +
              Parameters:
              headers - JsonArray of the HTTP headers, e.g. [{"Content-Type":"application/json"},{"Custom-Auth-Token":"xysazxklj4568asdf46a5sd4f"}]
              +
            • -
            - - - -
              -
            • -

              getAuth

              -
              public java.lang.String getAuth()
              -
              -
              Returns:
              +
            • +
              +

              getAuth

              +
              public java.lang.String getAuth()
              +
              +
              Returns:
              Basic authentication i.e. 'user:password' to compute an Authorization header.
              +
            • -
            - - - -
              -
            • -

              setAuth

              -
              public void setAuth​(java.lang.String auth)
              -
              -
              Parameters:
              +
            • +
              +

              setAuth

              +
              public void setAuth​(java.lang.String auth)
              +
              +
              Parameters:
              auth - Basic authentication i.e. 'user:password' to compute an Authorization header.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Specified by:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Specified by:
              getJSON in class RenderElement
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html index a5a430ce..ca376ce3 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html @@ -2,268 +2,197 @@ - -GraphQLResource (cloudofficeprint 21.2.1 API) + +GraphQLResource + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class GraphQLResource

    + +

    Class GraphQLResource

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          GraphQLResource​(java.lang.String endpoint, - java.lang.String query, - java.lang.String fileName, - com.google.gson.JsonArray headers, - java.lang.String auth) +
          GraphQLResource​(java.lang.String endpoint, +java.lang.String query, +java.lang.String fileName, +com.google.gson.JsonArray headers, +java.lang.String auth)
          Resource from a GraphQL endpoint.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.Resources.ExternalResource

    +getAuth, getDataSource, getEndpoint, getFileName, getHeaders, setAuth, setDataSource, setEndpoint, setFileName, setHeaders
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            GraphQLResource

            -
            public GraphQLResource​(java.lang.String endpoint,
            -                       java.lang.String query,
            -                       java.lang.String fileName,
            -                       com.google.gson.JsonArray headers,
            -                       java.lang.String auth)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              GraphQLResource

              +
              public GraphQLResource​(java.lang.String endpoint, +java.lang.String query, +java.lang.String fileName, +com.google.gson.JsonArray headers, +java.lang.String auth)
              Resource from a GraphQL endpoint.
              -
              -
              Parameters:
              +
              +
              Parameters:
              endpoint - URL of the data source from where the JSON needs to be read.
              query - GraphQL query.
              fileName - Name of the output file.
              @@ -272,144 +201,107 @@

              GraphQLResource

              auth - Basic authentication i.e. 'user:password' to compute an Authorization header.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getQuery

            -
            public java.lang.String getQuery()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getQuery

              +
              public java.lang.String getQuery()
              +
              +
              Returns:
              GraphQL query.
              +
            • -
            - - - -
              -
            • -

              setQuery

              -
              public void setQuery​(java.lang.String query)
              -
              -
              Parameters:
              +
            • +
              +

              setQuery

              +
              public void setQuery​(java.lang.String query)
              +
              +
              Parameters:
              query - GraphQL query.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class ExternalResource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              Cannot be used for a resource.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              null
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html index fc86da39..a0119fba 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html @@ -2,408 +2,307 @@ - -HTMLResource (cloudofficeprint 21.2.1 API) + +HTMLResource + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class HTMLResource

    + +

    Class HTMLResource

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Resources.Resource +
      com.cloudofficeprint.Resources.HTMLResource
      +
      +
      +

      -
      public class HTMLResource
      +
      public class HTMLResource
       extends Resource
      Child class of Resource. A class representing a resource with HTML data for the Cloud Office Print server.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          HTMLResource​(java.lang.String HTML, - java.lang.Boolean landscape) +
          HTMLResource​(java.lang.String HTML, +java.lang.Boolean landscape)
          Constructor for this class.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + - - - - + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringgetHTML() 
      java.lang.StringgetHTML() 
      com.google.gson.JsonObjectgetJSONForSecondaryFile() +
      com.google.gson.JsonObjectgetJSONForSecondaryFile()
      Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
      com.google.gson.JsonObjectgetJSONForTemplate() +
      com.google.gson.JsonObjectgetJSONForTemplate()
      Needs to be called to get the JSON of a resource for a template.
      java.lang.BooleangetLandscape() 
      java.lang.BooleangetLandscape() 
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.Resources.Resource

    +getExtension, getFiletype, getMimeType, setFiletype, setMimeType
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            HTMLResource

            -
            public HTMLResource​(java.lang.String HTML,
            -                    java.lang.Boolean landscape)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              HTMLResource

              +
              public HTMLResource​(java.lang.String HTML, +java.lang.Boolean landscape)
              Constructor for this class. Instantiates the HTML data to the HTML argument and the landscape option to landscape. Landscape option will be neglected for secondary files (not templates).
              -
              -
              Parameters:
              +
              +
              Parameters:
              HTML - data for this resource.
              landscape - Whether the HTML should be rendered as landscape-oriented page (default :false)
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getHTML

            -
            public java.lang.String getHTML()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getHTML

              +
              public java.lang.String getHTML()
              +
              +
              Returns:
              HTML data of this resource.
              +
            • -
            - - - -
              -
            • -

              getLandscape

              -
              public java.lang.Boolean getLandscape()
              -
              -
              Returns:
              +
            • +
              +

              getLandscape

              +
              public java.lang.Boolean getLandscape()
              +
              +
              Returns:
              Whether the HTML should be rendered as landscape-oriented page.
              +
            • -
            - - - -
              -
            • -

              getJSONForTemplate

              -
              public com.google.gson.JsonObject getJSONForTemplate()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForTemplate

              +
              public com.google.gson.JsonObject getJSONForTemplate()
              +
              Description copied from class: Resource
              Needs to be called to get the JSON of a resource for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForTemplate in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for a HTML resource as template for the Cloud Office Print server ("html_template_content","template_type" and "orientation" if specified).
              +
            • -
            - - - -
              -
            • -

              getJSONForSecondaryFile

              -
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForSecondaryFile

              +
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              +
              Description copied from class: Resource
              Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForSecondaryFile in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags ("mime_type","file_content","file_source") for an HTML resource as a secondary file (subtemplates, files to prepend, files to append and files to insert) for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html index 3add88f3..d27b7a2c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html @@ -2,280 +2,209 @@ - -RESTResource (cloudofficeprint 21.2.1 API) + +RESTResource + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class RESTResource

    + +

    Class RESTResource

    -
    - -
    - -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          RESTResource​(java.lang.String endpoint, - java.lang.String method, - java.lang.String body, - java.lang.String fileName, - com.google.gson.JsonArray headers, - java.lang.String auth) +
          RESTResource​(java.lang.String endpoint, +java.lang.String method, +java.lang.String body, +java.lang.String fileName, +com.google.gson.JsonArray headers, +java.lang.String auth)
          Resource from an REST endpoint.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.Resources.ExternalResource

    +getAuth, getDataSource, getEndpoint, getFileName, getHeaders, setAuth, setDataSource, setEndpoint, setFileName, setHeaders
    +
    +

    Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

    +getName, getValue, setName, setValue
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            RESTResource

            -
            public RESTResource​(java.lang.String endpoint,
            -                    java.lang.String method,
            -                    java.lang.String body,
            -                    java.lang.String fileName,
            -                    com.google.gson.JsonArray headers,
            -                    java.lang.String auth)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              RESTResource

              +
              public RESTResource​(java.lang.String endpoint, +java.lang.String method, +java.lang.String body, +java.lang.String fileName, +com.google.gson.JsonArray headers, +java.lang.String auth)
              Resource from an REST endpoint.
              -
              -
              Parameters:
              +
              +
              Parameters:
              endpoint - URL of the data source from where the JSON needs to be read.
              method - HTTP method of the request. "GET" by default.
              body - Body of HTTP request (can be left empty for GET requests)
              @@ -285,170 +214,127 @@

              RESTResource

              auth - Basic authentication i.e. 'user:password' to compute an Authorization header.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getMethod

            -
            public java.lang.String getMethod()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getMethod

              +
              public java.lang.String getMethod()
              +
              +
              Returns:
              HTTP method of the request.
              +
            • -
            - - - -
              -
            • -

              setMethod

              -
              public void setMethod​(java.lang.String method)
              -
              -
              Parameters:
              +
            • +
              +

              setMethod

              +
              public void setMethod​(java.lang.String method)
              +
              +
              Parameters:
              method - HTTP method of the request. "GET" by default.
              +
            • -
            - - - -
              -
            • -

              getBody

              -
              public java.lang.String getBody()
              -
              -
              Returns:
              +
            • +
              +

              getBody

              +
              public java.lang.String getBody()
              +
              +
              Returns:
              Body of HTTP request (can be left empty for GET requests).
              +
            • -
            - - - -
              -
            • -

              setBody

              -
              public void setBody​(java.lang.String body)
              -
              -
              Parameters:
              +
            • +
              +

              setBody

              +
              public void setBody​(java.lang.String body)
              +
              +
              Parameters:
              body - Body of HTTP request (can be left empty for GET requests).
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Overrides:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Overrides:
              getJSON in class ExternalResource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for this element for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getTemplateTags

              -
              public java.util.Set<java.lang.String> getTemplateTags()
              +
            • +
              +

              getTemplateTags

              +
              public java.util.Set<java.lang.String> getTemplateTags()
              Cannot be used for a resource.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getTemplateTags in class RenderElement
              -
              Returns:
              +
              Returns:
              null
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html index 5e6bb582..dcfb84de 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html @@ -2,442 +2,339 @@ - -Resource (cloudofficeprint 21.2.1 API) + +Resource + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class Resource

    + +

    Class Resource

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.Resources.Resource
      • -
      -
    • -
    -
    -
      -
    • -
      +
      java.lang.Object +
      com.cloudofficeprint.Resources.Resource
      +
      +
      +
      Direct Known Subclasses:
      Base64Resource, HTMLResource, ServerResource, URLResource

      -
      public abstract class Resource
      +
      public abstract class Resource
       extends java.lang.Object
      Resource is an abstract class for all the different resource types for the templates and "secondary files" : subtemplates, files to prepend, files to append and files to insert (in the template).
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Resource() 
          Resource() 
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Abstract Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + - - - - + + + - - - - + + + + - - - - + + + - - - - + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringgetExtension​(java.lang.String filePath) 
      java.lang.StringgetExtension​(java.lang.String filePath) 
      java.lang.StringgetFiletype() 
      java.lang.StringgetFiletype() 
      abstract com.google.gson.JsonObjectgetJSONForSecondaryFile() +
      abstract com.google.gson.JsonObjectgetJSONForSecondaryFile()
      Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
      abstract com.google.gson.JsonObjectgetJSONForTemplate() +
      abstract com.google.gson.JsonObjectgetJSONForTemplate()
      Needs to be called to get the JSON of a resource for a template.
      java.lang.StringgetMimeType() 
      java.lang.StringgetMimeType() 
      voidsetFiletype​(java.lang.String filetype) +
      voidsetFiletype​(java.lang.String filetype)
      Sets the filetype (extension) of the resource to the given filetype.
      voidsetMimeType​(java.lang.String mimeType) +
      voidsetMimeType​(java.lang.String mimeType)
      Sets the mimetype of the resource to the given mimetype.
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Resource

            -
            public Resource()
            -
          • -
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            Resource

            +
            public Resource()
            +
          +
        • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getMimeType

              -
              public java.lang.String getMimeType()
              -
              -
              Returns:
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getMimeType

                +
                public java.lang.String getMimeType()
                +
                +
                Returns:
                The mimetype of the resource.
                +
              • -
              - - - -
                -
              • -

                getFiletype

                -
                public java.lang.String getFiletype()
                -
                -
                Returns:
                +
              • +
                +

                getFiletype

                +
                public java.lang.String getFiletype()
                +
                +
                Returns:
                The resource type as extension e.g. : docx.
                +
              • -
              - - - -
                -
              • -

                setMimeType

                -
                public void setMimeType​(java.lang.String mimeType)
                +
              • +
                +

                setMimeType

                +
                public void setMimeType​(java.lang.String mimeType)
                Sets the mimetype of the resource to the given mimetype.
                -
                -
                Parameters:
                +
                +
                Parameters:
                mimeType - The resource's mimetype.
                +
              • -
              - - - -
                -
              • -

                setFiletype

                -
                public void setFiletype​(java.lang.String filetype)
                +
              • +
                +

                setFiletype

                +
                public void setFiletype​(java.lang.String filetype)
                Sets the filetype (extension) of the resource to the given filetype.
                -
                -
                Parameters:
                +
                +
                Parameters:
                filetype - extension of the resource.
                +
              • -
              - - - -
                -
              • -

                getJSONForTemplate

                -
                public abstract com.google.gson.JsonObject getJSONForTemplate()
                +
              • +
                +

                getJSONForTemplate

                +
                public abstract com.google.gson.JsonObject getJSONForTemplate()
                Needs to be called to get the JSON of a resource for a template.
                -
                -
                Returns:
                +
                +
                Returns:
                JsonObject to add in the JSON for the server.
                +
              • -
              - - - -
                -
              • -

                getJSONForSecondaryFile

                -
                public abstract com.google.gson.JsonObject getJSONForSecondaryFile()
                +
              • +
                +

                getJSONForSecondaryFile

                +
                public abstract com.google.gson.JsonObject getJSONForSecondaryFile()
                Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
                -
                -
                Returns:
                +
                +
                Returns:
                JsonObject to add in the JSON for the server.
                +
              • -
              - - - -
                -
              • -

                getExtension

                -
                public java.lang.String getExtension​(java.lang.String filePath)
                -                              throws java.lang.Exception
                -
                -
                Parameters:
                +
              • +
                +

                getExtension

                +
                public java.lang.String getExtension​(java.lang.String filePath) + throws java.lang.Exception
                +
                +
                Parameters:
                filePath - path of the file
                -
                Returns:
                +
                Returns:
                File extension of the file
                -
                Throws:
                +
                Throws:
                java.lang.Exception - If no extension is found.
                -
              • -
              +
        -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html index b03a8c12..dcb08617 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html @@ -2,412 +2,311 @@ - -ServerResource (cloudofficeprint 21.2.1 API) + +ServerResource + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class ServerResource

    + +

    Class ServerResource

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Resources.Resource +
      com.cloudofficeprint.Resources.ServerResource
      +
      +
      +

      -
      public class ServerResource
      +
      public class ServerResource
       extends Resource
      Child class of Resource. A class representing a resource (file) on the Cloud Office Print server.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          ServerResource​(java.lang.String path, - java.lang.String mimeType) +
          ServerResource​(java.lang.String path, +java.lang.String mimeType)
          Creates a resource with given path.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + - - - - + + + - - - - + + + + - - - - + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSONForSecondaryFile() +
      com.google.gson.JsonObjectgetJSONForSecondaryFile()
      Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
      com.google.gson.JsonObjectgetJSONForTemplate() +
      com.google.gson.JsonObjectgetJSONForTemplate()
      Needs to be called to get the JSON of a resource for a template.
      java.lang.StringgetPath() 
      java.lang.StringgetPath() 
      voidsetPath​(java.lang.String path) +
      voidsetPath​(java.lang.String path)
      Sets the path of the resource.
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.Resources.Resource

    +getExtension, getFiletype, getMimeType, setFiletype, setMimeType
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            ServerResource

            -
            public ServerResource​(java.lang.String path,
            -                      java.lang.String mimeType)
            -               throws java.lang.Exception
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              ServerResource

              +
              public ServerResource​(java.lang.String path, +java.lang.String mimeType) + throws java.lang.Exception
              Creates a resource with given path. Mimetype and filetype (extension) are deduced from the path.
              -
              -
              Parameters:
              +
              +
              Parameters:
              path - Path of the file on the Cloud Office Print server.
              mimeType - Mimetype of the file on the Cloud Office Print server.
              -
              Throws:
              +
              Throws:
              java.io.IOException - if mimetype can't be deduced.
              java.lang.Exception - if extension can't be deduced.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getPath

            -
            public java.lang.String getPath()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getPath

              +
              public java.lang.String getPath()
              +
              +
              Returns:
              Path of the resource on the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              setPath

              -
              public void setPath​(java.lang.String path)
              +
            • +
              +

              setPath

              +
              public void setPath​(java.lang.String path)
              Sets the path of the resource.
              -
              -
              Parameters:
              +
              +
              Parameters:
              path - path of the resource on the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getJSONForTemplate

              -
              public com.google.gson.JsonObject getJSONForTemplate()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForTemplate

              +
              public com.google.gson.JsonObject getJSONForTemplate()
              +
              Description copied from class: Resource
              Needs to be called to get the JSON of a resource for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForTemplate in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for a resource on server as template for the Cloud Office Print server ("template_type","filename").
              +
            • -
            - - - -
              -
            • -

              getJSONForSecondaryFile

              -
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForSecondaryFile

              +
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              +
              Description copied from class: Resource
              Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForSecondaryFile in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags ("mime_type","file","file_source") for a server resource as a secondary file (subtemplates, files to prepend, files to append and files to insert) for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html index 11467c85..ca81efc9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html @@ -2,411 +2,310 @@ - -URLResource (cloudofficeprint 21.2.1 API) + +URLResource + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class URLResource

    + +

    Class URLResource

    -
    - -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Resources.Resource +
      com.cloudofficeprint.Resources.URLResource
      +
      +
      +

      -
      public class URLResource
      +
      public class URLResource
       extends Resource
      Child class of Resource. A class representing a resource (file) located on a URL.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          URLResource​(java.lang.String URL, - java.lang.String filetype, - java.lang.String mimeType) +
          URLResource​(java.lang.String URL, +java.lang.String filetype, +java.lang.String mimeType)
          Constructor for this class.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + - - - - + + + - - - - + + + + - - - - + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSONForSecondaryFile() +
      com.google.gson.JsonObjectgetJSONForSecondaryFile()
      Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
      com.google.gson.JsonObjectgetJSONForTemplate() +
      com.google.gson.JsonObjectgetJSONForTemplate()
      Needs to be called to get the JSON of a resource for a template.
      java.lang.StringgetURL() 
      java.lang.StringgetURL() 
      voidsetURL​(java.lang.String URL) +
      voidsetURL​(java.lang.String URL)
      Sets the URL of the resource to given URL.
      - -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class com.cloudofficeprint.Resources.Resource

    +getExtension, getFiletype, getMimeType, setFiletype, setMimeType
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            URLResource

            -
            public URLResource​(java.lang.String URL,
            -                   java.lang.String filetype,
            -                   java.lang.String mimeType)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              URLResource

              +
              public URLResource​(java.lang.String URL, +java.lang.String filetype, +java.lang.String mimeType)
              Constructor for this class. For a URL resource you have to specify the filetype (extension) and mimetype because it can't be deduced.
              -
              -
              Parameters:
              +
              +
              Parameters:
              URL - of the resource
              filetype - extension of the resource
              mimeType - of the resource
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getURL

            -
            public java.lang.String getURL()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getURL

              +
              public java.lang.String getURL()
              +
              +
              Returns:
              URL of the resource.
              +
            • -
            - - - -
              -
            • -

              setURL

              -
              public void setURL​(java.lang.String URL)
              +
            • +
              +

              setURL

              +
              public void setURL​(java.lang.String URL)
              Sets the URL of the resource to given URL.
              -
              -
              Parameters:
              +
              +
              Parameters:
              URL - of the resource.
              +
            • -
            - - - -
              -
            • -

              getJSONForTemplate

              -
              public com.google.gson.JsonObject getJSONForTemplate()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForTemplate

              +
              public com.google.gson.JsonObject getJSONForTemplate()
              +
              Description copied from class: Resource
              Needs to be called to get the JSON of a resource for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForTemplate in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags for a URL resource as template for the Cloud Office Print server ("url","template_type").
              +
            • -
            - - - -
              -
            • -

              getJSONForSecondaryFile

              -
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              -
              Description copied from class: Resource
              +
            • +
              +

              getJSONForSecondaryFile

              +
              public com.google.gson.JsonObject getJSONForSecondaryFile()
              +
              Description copied from class: Resource
              Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
              -
              -
              Specified by:
              +
              +
              Specified by:
              getJSONForSecondaryFile in class Resource
              -
              Returns:
              +
              Returns:
              JSONObject with the tags ("mime_type","file_url","file_source") for a URL resource as a secondary file (subtemplates, files to prepend, files to append and files to insert) for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html index 08e28c6b..e70d0bef 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html @@ -2,208 +2,148 @@ - -com.cloudofficeprint.Resources (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Resources + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.Resources

    -
    -
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html index 01efb803..e8aff90b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html @@ -2,176 +2,110 @@ - -com.cloudofficeprint.Resources Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Resources Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.Resources

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html index f552ec80..ae72b66f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html @@ -2,460 +2,354 @@ - -Response (cloudofficeprint 21.2.1 API) + +Response + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class Response

    + +

    Class Response

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.Response
      • -
      -
    • -
    -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Response
      +
      +

      -
      public class Response
      +
      public class Response
       extends java.lang.Object
      Class for dealing with the Cloud Office Print server's response to a printjob request.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Response​(java.lang.String ext, - java.lang.String mimetype, - byte[] body) 
          Response​(java.lang.String ext, +java.lang.String mimetype, +byte[] body) 
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + - - - - + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringasString() +
      java.lang.StringasString()
      Return the string representation of this Response.
      voiddownloadLocally​(java.lang.String path) +
      voiddownloadLocally​(java.lang.String path)
      Downloads the file locally to the given path, filename needs to be specified at the end of the path, not the extension.
      byte[]getBody() 
      byte[]getBody() 
      java.lang.StringgetExt() 
      java.lang.StringgetExt() 
      java.lang.StringgetMimetype() 
      java.lang.StringgetMimetype() 
      voidsetBody​(byte[] body) 
      voidsetBody​(byte[] body) 
      voidsetExt​(java.lang.String ext) 
      voidsetExt​(java.lang.String ext) 
      voidsetMimetype​(java.lang.String mimetype) 
      voidsetMimetype​(java.lang.String mimetype) 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Response

            -
            public Response​(java.lang.String ext,
            -                java.lang.String mimetype,
            -                byte[] body)
            -
            -
            Parameters:
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Response

              +
              public Response​(java.lang.String ext, +java.lang.String mimetype, +byte[] body)
              +
              +
              Parameters:
              ext - Extension of the file in the body.
              body - (file base64) of the response.
              mimetype - Mimetype of the file in the body.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getMimetype

            -
            public java.lang.String getMimetype()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getMimetype

              +
              public java.lang.String getMimetype()
              +
              +
              Returns:
              mimetype of the file in the body.
              +
            • -
            - - - -
              -
            • -

              setMimetype

              -
              public void setMimetype​(java.lang.String mimetype)
              -
              -
              Parameters:
              +
            • +
              +

              setMimetype

              +
              public void setMimetype​(java.lang.String mimetype)
              +
              +
              Parameters:
              mimetype - of the file in the body.
              +
            • -
            - - - -
              -
            • -

              getBody

              -
              public byte[] getBody()
              -
              -
              Returns:
              +
            • +
              +

              getBody

              +
              public byte[] getBody()
              +
              +
              Returns:
              body (file base64) of the response.
              +
            • -
            - - - -
              -
            • -

              setBody

              -
              public void setBody​(byte[] body)
              -
              -
              Parameters:
              +
            • +
              +

              setBody

              +
              public void setBody​(byte[] body)
              +
              +
              Parameters:
              body - (file base64) of the response.
              +
            • -
            - - - -
              -
            • -

              getExt

              -
              public java.lang.String getExt()
              -
              -
              Returns:
              +
            • +
              +

              getExt

              +
              public java.lang.String getExt()
              +
              +
              Returns:
              extension of the file in the body.
              +
            • -
            - - - -
              -
            • -

              setExt

              -
              public void setExt​(java.lang.String ext)
              -
              -
              Parameters:
              +
            • +
              +

              setExt

              +
              public void setExt​(java.lang.String ext)
              +
              +
              Parameters:
              ext - Extension of the file in the body.
              +
            • -
            - - - -
              -
            • -

              asString

              -
              public java.lang.String asString()
              -                          throws java.lang.Exception
              +
            • +
              +

              asString

              +
              public java.lang.String asString() + throws java.lang.Exception
              Return the string representation of this Response. Useful if the server returns a JSON (e.g. for output_type 'count_tags').
              -
              -
              Returns:
              +
              +
              Returns:
              string representation of this Response
              -
              Throws:
              +
              Throws:
              java.lang.Exception - if the byte-array cannot be decoded
              +
            • -
            - - - -
              -
            • -

              downloadLocally

              -
              public void downloadLocally​(java.lang.String path)
              -                     throws java.io.IOException
              +
            • +
              +

              downloadLocally

              +
              public void downloadLocally​(java.lang.String path) + throws java.io.IOException
              Downloads the file locally to the given path, filename needs to be specified at the end of the path, not the extension. Creates the file at given path if it doesn't exist yet, overwrites it otherwise.
              -
              -
              Parameters:
              +
              +
              Parameters:
              path - local path ending
              -
              Throws:
              +
              Throws:
              java.io.IOException - If the file is not found.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html index 9507619d..6ec3ebeb 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html @@ -2,439 +2,336 @@ - -Command (cloudofficeprint 21.2.1 API) + +Command + + + - + + - - - - - + + - - -
    +
    + - +
    +
    - -

    Class Command

    + +

    Class Command

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.Server.Command
      • -
      -
    • -
    -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Server.Command
      +
      +

      -
      public class Command
      +
      public class Command
       extends java.lang.Object
      Command object with a single command for the Cloud Office Print server. The command should be present in the aop_config.json file on the Cloud Office Print server.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Command​(java.lang.String command, - com.google.gson.JsonObject args) +
          Command​(java.lang.String command, +com.google.gson.JsonObject args)
          -
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + - - - - + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      com.google.gson.JsonObjectgetArgs() 
      com.google.gson.JsonObjectgetArgs() 
      java.lang.StringgetCommand() 
      java.lang.StringgetCommand() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSONForPost() 
      com.google.gson.JsonObjectgetJSONForPost() 
      com.google.gson.JsonObjectgetJSONForPre() 
      com.google.gson.JsonObjectgetJSONForPre() 
      voidsetArgs​(com.google.gson.JsonObject args) 
      voidsetArgs​(com.google.gson.JsonObject args) 
      voidsetCommand​(java.lang.String command) 
      voidsetCommand​(java.lang.String command) 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Command

            -
            public Command​(java.lang.String command,
            -               com.google.gson.JsonObject args)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Command

              +
              public Command​(java.lang.String command, +com.google.gson.JsonObject args)
              -
              -
              -
              Parameters:
              +
              +
              Parameters:
              command - Command to execute.
              args - JsonObject with the parameters for the command. E.g.: { "p1":"Parameter 1", "p2": "Parameter 2" , "p3" : "Parameter 3"} The parameter tags need to be defined in the aop_config.json file on the Cloud Office Print server.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getCommand

            -
            public java.lang.String getCommand()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getCommand

              +
              public java.lang.String getCommand()
              +
              +
              Returns:
              command to execute.
              +
            • -
            - - - -
              -
            • -

              setCommand

              -
              public void setCommand​(java.lang.String command)
              -
              -
              Parameters:
              +
            • +
              +

              setCommand

              +
              public void setCommand​(java.lang.String command)
              +
              +
              Parameters:
              command - to execute.
              +
            • -
            - - - -
              -
            • -

              getArgs

              -
              public com.google.gson.JsonObject getArgs()
              -
              -
              Returns:
              +
            • +
              +

              getArgs

              +
              public com.google.gson.JsonObject getArgs()
              +
              +
              Returns:
              JsonObject with the parameters for the command. E.g.: { "p1":"Parameter 1", "p2": "Parameter 2" , "p3" : "Parameter 3"} The parameter tags need to be defined in the aop_config.json file on the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              setArgs

              -
              public void setArgs​(com.google.gson.JsonObject args)
              -
              -
              Parameters:
              +
            • +
              +

              setArgs

              +
              public void setArgs​(com.google.gson.JsonObject args)
              +
              +
              Parameters:
              args - JsonObject with the parameters for the command. E.g.: { "p1":"Parameter 1", "p2": "Parameter 2" , "p3" : "Parameter 3"} The parameter tags need to be defined in the aop_config.json file on the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Returns:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Returns:
              JSONObject with the tags for the postprocess-command for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getJSONForPre

              -
              public com.google.gson.JsonObject getJSONForPre()
              -
              -
              Returns:
              +
            • +
              +

              getJSONForPre

              +
              public com.google.gson.JsonObject getJSONForPre()
              +
              +
              Returns:
              JSONObject with the tags for the pre-command for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getJSONForPost

              -
              public com.google.gson.JsonObject getJSONForPost()
              -
              -
              Returns:
              +
            • +
              +

              getJSONForPost

              +
              public com.google.gson.JsonObject getJSONForPost()
              +
              +
              Returns:
              JSONObject with the tags for the post-command for the Cloud Office Print server.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html index 814fa969..f87ccd12 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html @@ -2,550 +2,429 @@ - -Commands (cloudofficeprint 21.2.1 API) + +Commands + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class Commands

    + +

    Class Commands

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.Server.Commands
      • -
      -
    • -
    -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Server.Commands
      +
      +

      -
      public class Commands
      +
      public class Commands
       extends java.lang.Object
      Commands object with commands for the Cloud Office Print server to run before or after the post processing. The commands should be present in the aop_config.json file on the Cloud Office Print server.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Commands() 
          Commands() 
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Commands

            -
            public Commands()
            -
          • -
          +
        • +
          +

          Constructor Details

          +
            +
          • +
            +

            Commands

            +
            public Commands()
            +
          +
        • -
          -
            -
          • - - -

            Method Detail

            - - - -
              -
            • -

              getPostProcess

              -
              public Command getPostProcess()
              -
              -
              Returns:
              +
            • +
              +

              Method Details

              +
                +
              • +
                +

                getPostProcess

                +
                public Command getPostProcess()
                +
                +
                Returns:
                Command to run on the Cloud Office Print server after the POST request is processed.
                +
              • -
              - - - -
                -
              • -

                setPostProcess

                -
                public void setPostProcess​(Command postProcess)
                -
                -
                Parameters:
                +
              • +
                +

                setPostProcess

                +
                public void setPostProcess​(Command postProcess)
                +
                +
                Parameters:
                postProcess - Command to run on the Cloud Office Print server after the POST request is processed.
                +
              • -
              - - - -
                -
              • -

                getPostProcessReturn

                -
                public java.lang.Boolean getPostProcessReturn()
                +
              • +
                +

                getPostProcessReturn

                +
                public java.lang.Boolean getPostProcessReturn()
                If you are already doing something with the file and don't want it to be returned in the response set this to true.
                -
                -
                Returns:
                +
                +
                Returns:
                Whether to return the output file or not. Note this output is Cloud Office Print's output and not the post process command output.
                +
              • -
              - - - -
                -
              • -

                setPostProcessReturn

                -
                public void setPostProcessReturn​(java.lang.Boolean postProcessReturn)
                -
                -
                Parameters:
                +
              • +
                +

                setPostProcessReturn

                +
                public void setPostProcessReturn​(java.lang.Boolean postProcessReturn)
                +
                +
                Parameters:
                postProcessReturn - Whether to return the output file or not. Note this output is Cloud Office Print's output and not the post process command output.
                +
              • -
              - - - -
                -
              • -

                getPostProcessDeleteDelay

                -
                public int getPostProcessDeleteDelay()
                +
              • +
                +

                getPostProcessDeleteDelay

                +
                public int getPostProcessDeleteDelay()
                Cloud Office Print deletes the file provided to the command directly after executing it. This can be delayed with this option. If you have a postcommand to execute on this file and it takes some time to execute, add a postProcessDeleteDelay.
                -
                -
                Returns:
                +
                +
                Returns:
                delay in ms.
                +
              • -
              - - - -
                -
              • -

                setPostProcessDeleteDelay

                -
                public void setPostProcessDeleteDelay​(int postProcessDeleteDelay)
                +
              • +
                +

                setPostProcessDeleteDelay

                +
                public void setPostProcessDeleteDelay​(int postProcessDeleteDelay)
                Cloud Office Print deletes the file provided to the command directly after executing it. This can be delayed with this option. If you have a postcommand to execute on this file and it takes some time to execute, add a postProcessDeleteDelay.
                -
                -
                Parameters:
                +
                +
                Parameters:
                postProcessDeleteDelay - delay in ms.
                +
              • -
              - - - -
                -
              • -

                getPreConversion

                -
                public Command getPreConversion()
                -
                -
                Returns:
                +
              • +
                +

                getPreConversion

                +
                public Command getPreConversion()
                +
                +
                Returns:
                Command to run before conversion.
                +
              • -
              - - - -
                -
              • -

                setPreConversion

                -
                public void setPreConversion​(Command preConversion)
                -
                -
                Parameters:
                +
              • +
                +

                setPreConversion

                +
                public void setPreConversion​(Command preConversion)
                +
                +
                Parameters:
                preConversion - Command to run before conversion.
                +
              • -
              - - - -
                -
              • -

                getPostConversion

                -
                public Command getPostConversion()
                -
                -
                Returns:
                +
              • +
                +

                getPostConversion

                +
                public Command getPostConversion()
                +
                +
                Returns:
                Command to run after conversion.
                +
              • -
              - - - -
                -
              • -

                setPostConversion

                -
                public void setPostConversion​(Command postConversion)
                -
                -
                Parameters:
                +
              • +
                +

                setPostConversion

                +
                public void setPostConversion​(Command postConversion)
                +
                +
                Parameters:
                postConversion - Command to run after conversion.
                +
              • -
              - - - -
                -
              • -

                getPostMerge

                -
                public Command getPostMerge()
                -
                -
                Returns:
                +
              • +
                +

                getPostMerge

                +
                public Command getPostMerge()
                +
                +
                Returns:
                Command to run after merging has happened.
                +
              • -
              - - - -
                -
              • -

                setPostMerge

                -
                public void setPostMerge​(Command postMerge)
                -
                -
                Parameters:
                +
              • +
                +

                setPostMerge

                +
                public void setPostMerge​(Command postMerge)
                +
                +
                Parameters:
                postMerge - Command to run after merging has happened
                +
              • -
              - - - -
                -
              • -

                getJSON

                -
                public com.google.gson.JsonObject getJSON()
                -
                -
                Returns:
                +
              • +
                +

                getJSON

                +
                public com.google.gson.JsonObject getJSON()
                +
                +
                Returns:
                JSONObject with the tags for the commands for the Cloud Office Print server.
                -
              • -
              +
        -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html index 4df14c1e..147a1d5d 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html @@ -2,135 +2,86 @@ - -Printer (cloudofficeprint 21.2.1 API) + +Printer + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class Printer

    + +

    Class Printer

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.Server.Printer
      • -
      -
    • -
    -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Server.Printer
      +
      +

      -
      public class Printer
      +
      public class Printer
       extends java.lang.Object
      Cloud Office Print supports to print directly to an IP Printer. If your IPP printer supports PDF files, your documents will be converter to PDF and sent @@ -140,134 +91,142 @@

      Class Printer

      binary pdftops is on PATH variable. You can download executables from cloudofficeprint.com to check whether or not your IPP printer supports PDF/postscript. - +

      This class represents an IP-enabled printer to use with the Cloud Office Print server.

      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - + + - - - + + + + +
          Constructors
          ConstructorDescriptionConstructorDescription
          Printer​(java.lang.String location, - java.lang.String version, - java.lang.String requester, - java.lang.String jobName) +
          Printer​(java.lang.String location, +java.lang.String version, +java.lang.String requester, +java.lang.String jobName, +boolean returnOutput)
          Cloud Office Print supports to print directly to an IP Printer.
          -
        • -
        +
    + -
    -
      -
    • - - -

      Method Summary

      - - +
    • +
      +

      Method Summary

      +
      +
      +
      +
    • All Methods Instance Methods Concrete Methods 
      + - - - + + + + + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + + + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + +
      Modifier and TypeMethodDescriptionModifier and TypeMethodDescription
      java.lang.StringgetJobName() 
      java.lang.StringgetJobName() 
      com.google.gson.JsonObjectgetJSON() 
      com.google.gson.JsonObjectgetJSON() 
      java.lang.StringgetLocation() 
      java.lang.StringgetLocation() 
      java.lang.StringgetRequester() 
      java.lang.StringgetRequester() 
      booleangetReturnOutput() +
      You can specify to whether to return output from server
      +
      java.lang.StringgetVersion() 
      java.lang.StringgetVersion() 
      voidsetJobName​(java.lang.String jobName) 
      voidsetJobName​(java.lang.String jobName) 
      voidsetLocation​(java.lang.String location) 
      voidsetLocation​(java.lang.String location) 
      voidsetRequester​(java.lang.String requester) 
      voidsetRequester​(java.lang.String requester) 
      voidsetReturnOutput​(boolean returnOutput) +
      You can specify to whether to return output from server
      +
      voidsetVersion​(java.lang.String version) 
      voidsetVersion​(java.lang.String version) 
      -
        -
      • - - -

        Methods inherited from class java.lang.Object

        -clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • -
      -
    • -
    +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Printer

            -
            public Printer​(java.lang.String location,
            -               java.lang.String version,
            -               java.lang.String requester,
            -               java.lang.String jobName)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Printer

              +
              public Printer​(java.lang.String location, +java.lang.String version, +java.lang.String requester, +java.lang.String jobName, +boolean returnOutput)
              Cloud Office Print supports to print directly to an IP Printer. If your IPP printer supports PDF files, your documents will be converter to PDF and sent to IPP printer. If your printer does not support PDF and supports Postscript @@ -277,212 +236,183 @@

              Printer

              cloudofficeprint.com to check whether or not your IPP printer supports PDF/postscript. This Pritner object represents an IP-enabled printer to use with the Cloud Office Print server.
              -
              -
              Parameters:
              +
              +
              Parameters:
              location - HTTP adress of the printer.
              version - Version of the IPP protocol.
              requester - Name of the requester for the printer (often just your - name).
              + name).
              jobName - Name of the job for the printer.
              +
              returnOutput - Whether to return the response from AOP server.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            getLocation

            -
            public java.lang.String getLocation()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              getLocation

              +
              public java.lang.String getLocation()
              +
              +
              Returns:
              Address where the printer is available.
              +
            • -
            - - - -
              -
            • -

              setLocation

              -
              public void setLocation​(java.lang.String location)
              -
              -
              Parameters:
              +
            • +
              +

              setLocation

              +
              public void setLocation​(java.lang.String location)
              +
              +
              Parameters:
              location - Address where the printer is available.
              +
            • -
            - - - -
              -
            • -

              getVersion

              -
              public java.lang.String getVersion()
              -
              -
              Returns:
              +
            • +
              +

              getVersion

              +
              public java.lang.String getVersion()
              +
              +
              Returns:
              IPP version used.
              +
            • -
            - - - -
              -
            • -

              setVersion

              -
              public void setVersion​(java.lang.String version)
              -
              -
              Parameters:
              +
            • +
              +

              setVersion

              +
              public void setVersion​(java.lang.String version)
              +
              +
              Parameters:
              version - IPP version used.
              +
            • -
            - - - -
              -
            • -

              getRequester

              -
              public java.lang.String getRequester()
              -
              -
              Returns:
              +
            • +
              +

              getRequester

              +
              public java.lang.String getRequester()
              +
              +
              Returns:
              Name of the requester. (Often just your name).
              +
            • -
            - - - -
              -
            • -

              setRequester

              -
              public void setRequester​(java.lang.String requester)
              -
              -
              Parameters:
              +
            • +
              +

              setRequester

              +
              public void setRequester​(java.lang.String requester)
              +
              +
              Parameters:
              requester - Name of the requester. (Often just your name).
              +
            • -
            - - - -
              -
            • -

              getJobName

              -
              public java.lang.String getJobName()
              -
              -
              Returns:
              +
            • +
              +

              getJobName

              +
              public java.lang.String getJobName()
              +
              +
              Returns:
              Name of the job for the printer.
              +
            • -
            - - - -
              -
            • -

              setJobName

              -
              public void setJobName​(java.lang.String jobName)
              -
              -
              Parameters:
              +
            • +
              +

              setJobName

              +
              public void setJobName​(java.lang.String jobName)
              +
              +
              Parameters:
              jobName - Name of the job for the printer.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Returns:
              -
              JSONObject with the tags for the printer for the Cloud Office Print - server.
              +
            • +
              +

              getReturnOutput

              +
              public boolean getReturnOutput()
              +
              You can specify to whether to return output from server
              +
              +
              Returns:
              +
              whether to return output from the AOP server
              +
            • -
            +
          • +
            +

            setReturnOutput

            +
            public void setReturnOutput​(boolean returnOutput)
            +
            You can specify to whether to return output from server
            +
            +
            Parameters:
            +
            returnOutput - whether to return output from the AOP server.
            +
            +
            +
          • +
          • +
            +

            getJSON

            +
            public com.google.gson.JsonObject getJSON()
            +
            +
            Returns:
            +
            JSONObject with the tags for the printer for the Cloud Office Print + server.
            +
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html index f93cd43d..48d2a457 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html @@ -2,438 +2,385 @@ - -Server (cloudofficeprint 21.2.1 API) + +Server + + + - + + - - - - - + + - - -
    +
    +
    + + + +
    - +
    +
    - -

    Class Server

    + +

    Class Server

    -
    -
      -
    • java.lang.Object
    • -
    • -
        -
      • com.cloudofficeprint.Server.Server
      • -
      -
    • -
    -
    -
      -
    • +
      java.lang.Object +
      com.cloudofficeprint.Server.Server
      +
      +

      -
      public class Server
      +
      public class Server
       extends java.lang.Object
      Class representing the Cloud Office Print server to interact with. This class has a verbose mode.
      -
    • -
    -
    -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Summary

          - - +
        • +
          +

          Constructor Summary

          +
          +
        • Constructors 
          + + - - - - - - + + + + + + + - - - + + +
          Constructors
          ConstructorDescription
          Server​(java.lang.String url) +ConstructorDescription
          Server​(java.lang.String url)
          Most basic constructor of the server.
          Server​(java.lang.String url, - java.lang.String APIKey, - Printer printer, - Commands commands, - com.google.gson.JsonObject loggingInfo, - java.lang.String proxyIP, - java.lang.Integer proxyPort) +
          Server​(java.lang.String url, +java.lang.String APIKey, +Printer printer, +Commands commands, +com.google.gson.JsonObject loggingInfo, +java.lang.String proxyIP, +java.lang.Integer proxyPort)
          Use default values if you don't want to specify an argument.
          -
        • -
        +
    + -
    - +
    +
    +
    +

    Methods inherited from class java.lang.Object

    +equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    - -
    -
      -
    • + +
      +
        -
        -
          -
        • - - -

          Constructor Detail

          - - - -
            -
          • -

            Server

            -
            public Server​(java.lang.String url)
            +
          • +
            +

            Constructor Details

            +
              +
            • +
              +

              Server

              +
              public Server​(java.lang.String url)
              Most basic constructor of the server. Can be populated more with the set functions.
              -
              -
              Parameters:
              +
              +
              Parameters:
              url - of the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              Server

              -
              public Server​(java.lang.String url,
              -              java.lang.String APIKey,
              -              Printer printer,
              -              Commands commands,
              -              com.google.gson.JsonObject loggingInfo,
              -              java.lang.String proxyIP,
              -              java.lang.Integer proxyPort)
              +
            • +
              +

              Server

              +
              public Server​(java.lang.String url, +java.lang.String APIKey, +Printer printer, +Commands commands, +com.google.gson.JsonObject loggingInfo, +java.lang.String proxyIP, +java.lang.Integer proxyPort)
              Use default values if you don't want to specify an argument.
              -
              -
              Parameters:
              +
              +
              Parameters:
              url - of the Cloud Office Print server
              APIKey - Only applicable for service users. The value of this key is the API key given by Cloud Office Print.
              @@ -449,533 +396,426 @@

              Server

              proxyIP - IP of the optional proxy. Only HTTP proxies supported.
              proxyPort - Port of the optional proxy. Only HTTP proxies supported.
              -
            • -
            +
        + -
        -
          -
        • - - -

          Method Detail

          - - - -
            -
          • -

            isVerbose

            -
            public boolean isVerbose()
            -
            -
            Returns:
            +
          • +
            +

            Method Details

            +
              +
            • +
              +

              isVerbose

              +
              public boolean isVerbose()
              +
              +
              Returns:
              Whether to include debug prints or not.
              +
            • -
            - - - -
              -
            • -

              setVerbose

              -
              public void setVerbose​(boolean verbose)
              -
              -
              Parameters:
              +
            • +
              +

              setVerbose

              +
              public void setVerbose​(boolean verbose)
              +
              +
              Parameters:
              verbose - Whether to include debug prints or not.
              +
            • -
            - - - -
              -
            • -

              getProxyIP

              -
              public java.lang.String getProxyIP()
              -
              -
              Returns:
              +
            • +
              +

              getProxyIP

              +
              public java.lang.String getProxyIP()
              +
              +
              Returns:
              IP address of the proxy used, null if not used.
              +
            • -
            - - - -
              -
            • -

              setProxyIP

              -
              public void setProxyIP​(java.lang.String proxyIP)
              -
              -
              Parameters:
              +
            • +
              +

              setProxyIP

              +
              public void setProxyIP​(java.lang.String proxyIP)
              +
              +
              Parameters:
              proxyIP - IP address of the proxy used, null if not used.
              +
            • -
            - - - -
              -
            • -

              getProxyPort

              -
              public java.lang.Integer getProxyPort()
              -
              -
              Returns:
              +
            • +
              +

              getProxyPort

              +
              public java.lang.Integer getProxyPort()
              +
              +
              Returns:
              Port of the proxy used, null if not used.
              +
            • -
            - - - -
              -
            • -

              setProxyPort

              -
              public void setProxyPort​(java.lang.Integer proxyPort)
              -
              -
              Parameters:
              +
            • +
              +

              setProxyPort

              +
              public void setProxyPort​(java.lang.Integer proxyPort)
              +
              +
              Parameters:
              proxyPort - Port of the proxy used, null if not used.
              +
            • -
            - - - -
              -
            • -

              getAPIKey

              -
              public java.lang.String getAPIKey()
              +
            • +
              +

              getAPIKey

              +
              public java.lang.String getAPIKey()
              Only applicable for service users.
              -
              -
              Returns:
              +
              +
              Returns:
              The value of this key is the API key given by Cloud Office Print.
              +
            • -
            - - - -
              -
            • -

              setAPIKey

              -
              public void setAPIKey​(java.lang.String APIKey)
              +
            • +
              +

              setAPIKey

              +
              public void setAPIKey​(java.lang.String APIKey)
              Only applicable for service users.
              -
              -
              Parameters:
              +
              +
              Parameters:
              APIKey - given by Cloud Office Print.
              +
            • -
            - - - -
              -
            • -

              getLoggingInfo

              -
              public com.google.gson.JsonObject getLoggingInfo()
              +
            • +
              +

              getLoggingInfo

              +
              public com.google.gson.JsonObject getLoggingInfo()
              When the Cloud Office Print server is started with --enable_printlog, it will create a file on the server called server_printjob.log.
              -
              -
              Returns:
              +
              +
              Returns:
              Jsonobject with the extra information you want to be logged in that file.
              +
            • -
            - - - -
              -
            • -

              setLoggingInfo

              -
              public void setLoggingInfo​(com.google.gson.JsonObject loginInfo)
              +
            • +
              +

              setLoggingInfo

              +
              public void setLoggingInfo​(com.google.gson.JsonObject loginInfo)
              When the Cloud Office Print server is started with --enable_printlog, it will create a file on the server called server_printjob.log. You can add additional logging information next to the one Cloud Office Print is logging by default, by adding additional keys and values in the logging object.
              -
              -
              Parameters:
              +
              +
              Parameters:
              loginInfo - Jsonobject with the information you want to be logged.
              +
            • -
            - - - -
              -
            • -

              getUrl

              -
              public java.lang.String getUrl()
              -
              -
              Returns:
              +
            • +
              +

              getUrl

              +
              public java.lang.String getUrl()
              +
              +
              Returns:
              URL of the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              setUrl

              -
              public void setUrl​(java.lang.String url)
              -
              -
              Parameters:
              +
            • +
              +

              setUrl

              +
              public void setUrl​(java.lang.String url)
              +
              +
              Parameters:
              url - of the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getPrinter

              -
              public Printer getPrinter()
              +
            • +
              +

              getPrinter

              +
              public Printer getPrinter()
              Cloud Office Print supports to print directly to an IP Printer.
              -
              -
              Returns:
              +
              +
              Returns:
              Printer object containing the required info for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              setPrinter

              -
              public void setPrinter​(Printer printer)
              +
            • +
              +

              setPrinter

              +
              public void setPrinter​(Printer printer)
              Cloud Office Print supports to print directly to an IP Printer.
              -
              -
              Parameters:
              +
              +
              Parameters:
              printer - Printer object containing the required info for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              getCommands

              -
              public Commands getCommands()
              -
              -
              Returns:
              +
            • +
              +

              getCommands

              +
              public Commands getCommands()
              +
              +
              Returns:
              Commands object with commands for the Cloud Office Print server to run before or after the post processing.
              +
            • -
            - - - -
              -
            • -

              setCommands

              -
              public void setCommands​(Commands commands)
              -
              -
              Parameters:
              +
            • +
              +

              setCommands

              +
              public void setCommands​(Commands commands)
              +
              +
              Parameters:
              commands - Commands object with commands for the Cloud Office Print server to run before or after the post processing.
              +
            • -
            - - - -
              -
            • -

              getUsername

              -
              public java.lang.String getUsername()
              -
              -
              Returns:
              +
            • +
              +

              getUsername

              +
              public java.lang.String getUsername()
              +
              +
              Returns:
              Username for the proxy authentication.
              +
            • -
            - - - -
              -
            • -

              setUsername

              -
              public void setUsername​(java.lang.String username)
              -
              -
              Parameters:
              +
            • +
              +

              setUsername

              +
              public void setUsername​(java.lang.String username)
              +
              +
              Parameters:
              username - Username for the proxy authentication.
              +
            • -
            - - - -
              -
            • -

              getPassword

              -
              public java.lang.String getPassword()
              -
              -
              Returns:
              +
            • +
              +

              getPassword

              +
              public java.lang.String getPassword()
              +
              +
              Returns:
              Password for the proxy authentication.
              +
            • -
            - - - -
              -
            • -

              setPassword

              -
              public void setPassword​(java.lang.String password)
              -
              -
              Parameters:
              +
            • +
              +

              setPassword

              +
              public void setPassword​(java.lang.String password)
              +
              +
              Parameters:
              password - Password for the proxy authentication.
              +
            • -
            - - - -
              -
            • -

              getJSON

              -
              public com.google.gson.JsonObject getJSON()
              -
              -
              Returns:
              +
            • +
              +

              getJSON

              +
              public com.google.gson.JsonObject getJSON()
              +
              +
              Returns:
              JSONObject with the tags for the output for the Cloud Office Print server.
              +
            • -
            - - - -
              -
            • -

              isReachable

              -
              public boolean isReachable()
              +
            • +
              +

              isReachable

              +
              public boolean isReachable()
              Sends a GET request to server-url/marco and checks if the answer is polo.
              -
              -
              Returns:
              +
              +
              Returns:
              true if the server is reachable.
              +
            • -
            - - - -
              -
            • -

              getSofficeVersionServer

              -
              public java.lang.String getSofficeVersionServer()
              +
            • +
              +

              isIppPrinterReachable

              +
              public boolean isIppPrinterReachable()
              +
              Sends a Get request to check the status of ipp-printer provided with location and version of url
              +
              +
              Returns:
              +
              whether the printer is reachable or not.
              +
              +
              +
            • +
            • +
              +

              getSofficeVersionServer

              +
              public java.lang.String getSofficeVersionServer()
              Sends a GET request to server-url/soffice.
              -
              -
              Returns:
              +
              +
              Returns:
              current version of Libreoffice installed on the server.
              +
            • -
            - - - -
              -
            • -

              getOfficeToPdfVersion

              -
              public java.lang.String getOfficeToPdfVersion()
              +
            • +
              +

              getOfficeToPdfVersion

              +
              public java.lang.String getOfficeToPdfVersion()
              Sends a GET request to server-url/officetopdf.
              -
              -
              Returns:
              +
              +
              Returns:
              current version of OfficeToPdf installed on the server. (Only available if the server runs in Windows environment).
              +
            • -
            - - - -
              -
            • -

              getMimeTypesSupported

              -
              public java.lang.String getMimeTypesSupported()
              +
            • +
              +

              getMimeTypesSupported

              +
              public java.lang.String getMimeTypesSupported()
              Sends a GET request to server-url/supported_template_mimetypes.
              -
              -
              Returns:
              +
              +
              Returns:
              json of the mime types of templates that Cloud Office Print supports.
              +
            • -
            - - - -
              -
            • -

              getOutputMimeTypesSupported

              -
              public java.lang.String getOutputMimeTypesSupported​(java.lang.String extension)
              +
            • +
              +

              getOutputMimeTypesSupported

              +
              public java.lang.String getOutputMimeTypesSupported​(java.lang.String extension)
              Sends a GET request to server-url/supported_output_mimetypes?template=extension. Note: You will get empty json if the template extension isn't supported.
              -
              -
              Parameters:
              +
              +
              Parameters:
              extension - Template extension.
              -
              Returns:
              +
              Returns:
              The supported output types for the given template extension.
              +
            • -
            - - - -
              -
            • -

              getPrependMimeTypesSupported

              -
              public java.lang.String getPrependMimeTypesSupported()
              +
            • +
              +

              getPrependMimeTypesSupported

              +
              public java.lang.String getPrependMimeTypesSupported()
              Sends a GET request to server-url/supported_prepend_mimetypes.
              -
              -
              Returns:
              +
              +
              Returns:
              returns the supported prepend file mime types in JSON format.
              +
            • -
            - - - -
              -
            • -

              getCOPVersionOnServer

              -
              public java.lang.String getCOPVersionOnServer()
              +
            • +
              +

              getCOPVersionOnServer

              +
              public java.lang.String getCOPVersionOnServer()
              Sends a GET request to server-url/version.
              -
              -
              Returns:
              +
              +
              Returns:
              returns the version of Cloud Office Print that is run on server.
              +
            • -
            - - - -
              -
            • -

              sendGETRequest

              -
              public java.lang.String sendGETRequest​(java.lang.String urlToJoin)
              +
            • +
              +

              sendGETRequest

              +
              public java.lang.String sendGETRequest​(java.lang.String urlToJoin)
              Sends a GET request to the url.
              -
              -
              Parameters:
              +
              +
              Parameters:
              urlToJoin - URL to send the GET request to.
              -
              Returns:
              +
              Returns:
              body of the response of the request.
              +
            • -
            - - - -
              -
            • -

              sendPOSTRequest

              -
              public Response sendPOSTRequest​(com.google.gson.JsonObject postData)
              -                         throws java.lang.Exception
              +
            • +
              +

              sendPOSTRequest

              +
              public Response sendPOSTRequest​(com.google.gson.JsonObject postData) + throws java.lang.Exception
              Sends a POST request with the given json file as body.
              -
              -
              Parameters:
              +
              +
              Parameters:
              postData - json to send to the server
              -
              Returns:
              +
              Returns:
              Response object containing the file extension and body (in bytes)
              -
              Throws:
              +
              Throws:
              COPException - when server response's code is not equal to 200.
              java.lang.Exception
              +
            • -
            - - - -
              -
            • -

              readJson

              -
              public java.lang.String readJson​(java.lang.String path)
              -                          throws java.io.FileNotFoundException
              +
            • +
              +

              readJson

              +
              public java.lang.String readJson​(java.lang.String path) + throws java.io.FileNotFoundException
              Function to read a local JSON file.
              -
              -
              Parameters:
              +
              +
              Parameters:
              path - Local path of the file.
              -
              Returns:
              +
              Returns:
              String of the json.
              -
              Throws:
              +
              Throws:
              java.io.FileNotFoundException - If the file is not found.
              -
            • -
            +
      -
    - - + + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html index 701ee9e3..f0e3abf2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html @@ -2,183 +2,123 @@ - -com.cloudofficeprint.Server (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Server + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint.Server

    -
    -
      -
    • - - +
      +
        +
      • +
        +
      Class Summary 
      + + - - + + + - - - + + - - - + + - - - + + - - - + +
      Class Summary
      ClassDescriptionClassDescription
      Command +
      Command
      Command object with a single command for the Cloud Office Print server.
      Commands +
      Commands
      Commands object with commands for the Cloud Office Print server to run before or after the post processing.
      Printer +
      Printer
      Cloud Office Print supports to print directly to an IP Printer.
      Server +
      Server
      Class representing the Cloud Office Print server to interact with.
      +
    -
    + +
    + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html index 675caa64..1fbaaf41 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html @@ -2,162 +2,96 @@ - -com.cloudofficeprint.Server Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint.Server Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint.Server

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    • java.lang.Object
        -
      • com.cloudofficeprint.Server.Command
      • -
      • com.cloudofficeprint.Server.Commands
      • -
      • com.cloudofficeprint.Server.Printer
      • -
      • com.cloudofficeprint.Server.Server
      • +
      • com.cloudofficeprint.Server.Command
      • +
      • com.cloudofficeprint.Server.Commands
      • +
      • com.cloudofficeprint.Server.Printer
      • +
      • com.cloudofficeprint.Server.Server
    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html index 3f0a9d0e..08ed2448 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html @@ -2,200 +2,144 @@ - -com.cloudofficeprint (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint + + + - + + - - - - - + + - - -
    +
    + +

    Package com.cloudofficeprint

    -
    -
      -
    • - - +
      +
        +
      • +
        +
      Class Summary 
      + + - - + + + - - - + + + - - - + + - - - + + - - - + +
      Class Summary
      ClassDescriptionClassDescription
      Main 
      Main 
      Mimetype +
      Mimetype
      Own mimetype class (org.apache.tike gives warnings for logging)
      PrintJob +
      PrintJob
      A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server.
      Response +
      Response
      Class for dealing with the Cloud Office Print server's response to a printjob request.
      +
    -
  • - - +
  • +
    +
  • Exception Summary 
    + + - - + + + - - - + +
    Exception Summary
    ExceptionDescriptionExceptionDescription
    COPException +
    COPException
    Class for handling a HTTP response of the Cloud Office Print server when the responseCode is /= 200.
    +
  • -
    + + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html index 7f9a797f..acdbe468 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html @@ -2,117 +2,75 @@ - -com.cloudofficeprint Class Hierarchy (cloudofficeprint 21.2.1 API) + +com.cloudofficeprint Class Hierarchy + + + - + + - - - - - + + - - -
    +
    + +

    Hierarchy For Package com.cloudofficeprint

    -Package Hierarchies: +Package Hierarchies:
    -
    -
    +

    Class Hierarchy

    • java.lang.Object
        -
      • com.cloudofficeprint.Main
      • -
      • com.cloudofficeprint.Mimetype
      • -
      • com.cloudofficeprint.PrintJob (implements java.lang.Runnable)
      • -
      • com.cloudofficeprint.Response
      • +
      • com.cloudofficeprint.Main
      • +
      • com.cloudofficeprint.Mimetype
      • +
      • com.cloudofficeprint.PrintJob (implements java.lang.Runnable)
      • +
      • com.cloudofficeprint.Response
      • java.lang.Throwable (implements java.io.Serializable) @@ -121,52 +79,28 @@

        Class Hierarchy

    -
    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/constant-values.html b/cloudofficeprint/build/docs/javadoc/constant-values.html index ff8dace6..1c61dfb2 100644 --- a/cloudofficeprint/build/docs/javadoc/constant-values.html +++ b/cloudofficeprint/build/docs/javadoc/constant-values.html @@ -2,98 +2,57 @@ - -Constant Field Values (cloudofficeprint 21.2.1 API) + +Constant Field Values + + + - + + - - - - - + + - - -
    +
    + +

    Constant Field Values

    -
    +

    Contents

    @@ -101,47 +60,24 @@

    Contents

    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/deprecated-list.html b/cloudofficeprint/build/docs/javadoc/deprecated-list.html index b9a28bf4..2513db26 100644 --- a/cloudofficeprint/build/docs/javadoc/deprecated-list.html +++ b/cloudofficeprint/build/docs/javadoc/deprecated-list.html @@ -2,94 +2,53 @@ - -Deprecated List (cloudofficeprint 21.2.1 API) + +Deprecated List + + + - + + - - - - - + + - - -
    +
    + +

    Deprecated API

    @@ -99,47 +58,24 @@

    Contents

    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/help-doc.html b/cloudofficeprint/build/docs/javadoc/help-doc.html index 36e56cfa..e83c8657 100644 --- a/cloudofficeprint/build/docs/javadoc/help-doc.html +++ b/cloudofficeprint/build/docs/javadoc/help-doc.html @@ -2,112 +2,66 @@ - -API Help (cloudofficeprint 21.2.1 API) + +API Help + + + - + + - - - - - + + - - -
    +
    + +

    How This API Document Is Organized

    -
    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    +
    This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
    -
    -
      -
    • -
      +

      Overview

      The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

      -
    • -
    • -
      +

      Package

      Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain six categories:

      -
        +
        • Interfaces
        • Classes
        • Enums
        • @@ -116,12 +70,10 @@

          Package

        • Annotation Types
      -
    • -
    • -
      +

      Class or Interface

      Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

      -
        +
        • Class Inheritance Diagram
        • Direct Subclasses
        • All Known Subinterfaces
        • @@ -130,7 +82,7 @@

          Class or Interface

        • Class or Interface Description

        -
          +
          • Nested Class Summary
          • Field Summary
          • Property Summary
          • @@ -138,134 +90,92 @@

            Class or Interface

          • Method Summary

          -
            -
          • Field Detail
          • -
          • Property Detail
          • -
          • Constructor Detail
          • -
          • Method Detail
          • +
              +
            • Field Details
            • +
            • Property Details
            • +
            • Constructor Details
            • +
            • Method Details
            -

            Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

            +

            The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.

      -
    • -
    • -
      +

      Annotation Type

      Each annotation type has its own separate page with the following sections:

      -
        +
        • Annotation Type Declaration
        • Annotation Type Description
        • Required Element Summary
        • Optional Element Summary
        • -
        • Element Detail
        • +
        • Element Details
      -
    • -
    • -
      +

      Enum

      Each enum has its own separate page with the following sections:

      -
        +
        • Enum Declaration
        • Enum Description
        • Enum Constant Summary
        • -
        • Enum Constant Detail
        • +
        • Enum Constant Details
      -
    • -
    • -
      +

      Tree (Class Hierarchy)

      There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.

      -
        +
        • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
        • When viewing a particular package, class or interface page, clicking on "Tree" displays the hierarchy for only that package.
      -
    • -
    • -
      +

      Deprecated API

      -

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

      +

      The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to shortcomings, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.

      -
    • -
    • -
      +

      Index

      -

      The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

      -
      -
    • -
    • -
      -

      All Classes

      -

      The All Classes link shows all classes and interfaces except non-static nested types.

      +

      The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

      -
    • -
    • -
      +

      Serialized Form

      -

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.

      +

      Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to those who implement rather than use the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See Also" section of the class description.

      -
    • -
    • -
      +

      Constant Field Values

      The Constant Field Values page lists the static final fields and their values.

      -
    • -
    • -
      +

      Search

      -

      You can search for definitions of modules, packages, types, fields, methods and other terms defined in the API, using some or all of the name. "Camel-case" abbreviations are supported: for example, "InpStr" will find "InputStream" and "InputStreamReader".

      -
      -
    • +

      You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API, using some or all of the name, optionally using "camel-case" abbreviations. For example:

      +
        +
      • j.l.obj will match "java.lang.Object"
      • +
      • InpStr will match "java.io.InputStream"
      • +
      • HM.cK will match "java.util.HashMap.containsKey(Object)"
      +

      Refer to the Javadoc Search Specification for a full description of search features.

      +
      -This help file applies to API documentation generated by the standard doclet.
    -
    +This help file applies to API documentation generated by the standard doclet. +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-1.html b/cloudofficeprint/build/docs/javadoc/index-files/index-1.html new file mode 100644 index 00000000..02c2dff3 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-1.html @@ -0,0 +1,125 @@ + + + + + +A-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    A

    +
    +
    addAllRenderElements(ElementCollection) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    +
    Adds all the elements from the elementcollection to the elements of this + collection.
    +
    +
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
     
    +
    addFromDict(Hashtable<String, String>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    +
    Adds the list of properties from a mapping.
    +
    +
    AreaChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents an area chart.
    +
    +
    AreaChart(String, ChartOptions, AreaSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
    +
    Represents an area chart.
    +
    +
    AreaSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    This class represents series for an area chart.
    +
    +
    AreaSeries(String, String[], String[], String, Float) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    +
    This object represents series for a pie chart.
    +
    +
    asString() - Method in class com.cloudofficeprint.Response
    +
    +
    Return the string representation of this Response.
    +
    +
    AWSToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    +
    +
    Class to use for AWS tokens to store output on AWS.
    +
    +
    AWSToken(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
    +
    Constructor for an AWSToken object.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-10.html b/cloudofficeprint/build/docs/javadoc/index-files/index-10.html new file mode 100644 index 00000000..2de480b3 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-10.html @@ -0,0 +1,142 @@ + + + + + +L-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    L

    +
    +
    Labels - Class in com.cloudofficeprint.RenderElements.Loops
    +
    +
    Cloud Office Print also provides a way to print labels Word documents.
    +
    +
    Labels(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Labels
    +
    +
    Cloud Office Print also provides a way to print labels Word documents.
    +
    +
    LineChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    This class represents line charts.
    +
    +
    LineChart(String, ChartOptions, LineSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    +
    +
    Represents a line chart.
    +
    +
    LineSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for a chart where the data-points are connected with lines.
    +
    +
    LineSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    +
    This object represents series for a line chart (where data-points are + connected with lines).
    +
    +
    localJson(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    Example where the local test.json is read and send to the server.
    +
    +
    localTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    Example with templateTest.docx as template, a list of properties and an image + as data.
    +
    +
    localTemplateAsync(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    Asynchronous version of the above example.
    +
    +
    Loop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    +
    Represents elements to be included in loops in templates.
    +
    +
    Loop(String) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    +
    Loop elements for a template.
    +
    +
    Loop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    +
    Loop elements for a template.
    +
    +
    Loop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    +
    Loop elements for a template.
    +
    +
    loopExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    In this example 2 nested loops are given in the template.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-11.html b/cloudofficeprint/build/docs/javadoc/index-files/index-11.html new file mode 100644 index 00000000..14142187 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-11.html @@ -0,0 +1,134 @@ + + + + + +M-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    M

    +
    +
    main(String) - Method in class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    +
    +
    This is an example of how you can merge the output files generated from a + single template using multiple requests.
    +
    +
    main(String) - Method in class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    +
     
    +
    main(String) - Method in class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    +
     
    +
    main(String[]) - Static method in class com.cloudofficeprint.Main
    +
     
    +
    main(String, String) - Method in class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    +
     
    +
    main(String, String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    +
     
    +
    Main - Class in com.cloudofficeprint
    +
     
    +
    Main() - Constructor for class com.cloudofficeprint.Main
    +
     
    +
    makeCollectionFromJson(String, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    +
    Parses a JsonArray to an elementcollection.
    +
    +
    MarkDownContent - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Word.
    +
    +
    MarkDownContent(String, String) - Constructor for class com.cloudofficeprint.RenderElements.MarkDownContent
    +
    +
    Represents an object that indicates to put a break in the template or not.
    +
    +
    MECardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate a MeCard QR-code + element
    +
    +
    MECardQRCode(String, String, String, String, String, String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    +
    This object represents a VCF or vCard QR Code.
    +
    +
    Mimetype - Class in com.cloudofficeprint
    +
    +
    Own mimetype class (org.apache.tike gives warnings for logging)
    +
    +
    Mimetype() - Constructor for class com.cloudofficeprint.Mimetype
    +
     
    +
    MultipleRequestMergeExample - Class in com.cloudofficeprint.Examples.MultipleRequestMerge
    +
     
    +
    MultipleRequestMergeExample() - Constructor for class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    +
     
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-12.html b/cloudofficeprint/build/docs/javadoc/index-files/index-12.html new file mode 100644 index 00000000..baf63f1d --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-12.html @@ -0,0 +1,104 @@ + + + + + +O-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    O

    +
    +
    OAuth2Token - Class in com.cloudofficeprint.Output.CloudAcessToken
    +
    +
    Class to use for OAuth 2 tokens.
    +
    +
    OAuth2Token(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
    +
    Constructor for an OAuth2Token object.
    +
    +
    OrderConfirmationExample - Class in com.cloudofficeprint.Examples.OrderConfirmation
    +
     
    +
    OrderConfirmationExample() - Constructor for class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    +
     
    +
    Output - Class in com.cloudofficeprint.Output
    +
    +
    Class representing the output configuration of a request.
    +
    +
    Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions) - Constructor for class com.cloudofficeprint.Output.Output
    +
    +
    Constructor to create a populated output object.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-13.html b/cloudofficeprint/build/docs/javadoc/index-files/index-13.html new file mode 100644 index 00000000..d099d643 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-13.html @@ -0,0 +1,212 @@ + + + + + +P-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    P

    +
    +
    PageBreak - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Word and Excel.
    +
    +
    PageBreak(String, String) - Constructor for class com.cloudofficeprint.RenderElements.PageBreak
    +
    +
    Represents an object that indicates to put a break in the template or not.
    +
    +
    PDFFormData - Class in com.cloudofficeprint.RenderElements.PDF
    +
    +
    It is possible to fill in the forms using Cloud Office Print.
    +
    +
    PDFFormData(HashMap<String, String>) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
    +
    It is possible to fill in the forms using Cloud Office Print.
    +
    +
    PDFImage - Class in com.cloudofficeprint.RenderElements.PDF
    +
     
    +
    PDFImage(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    +
    Represents an image to insert in a PDF.
    +
    +
    PDFImage(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    +
    Represents an image to insert in a PDF.
    +
    +
    PDFImages - Class in com.cloudofficeprint.RenderElements.PDF
    +
    +
    Group of different PDF images as one RenderElement.
    +
    +
    PDFImages(PDFImage[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
     
    +
    PDFInsertObject - Class in com.cloudofficeprint.RenderElements.PDF
    +
    +
    Abstract base class for PDF's insertable objects.
    +
    +
    PDFInsertObject(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    +
    Represents an object to insert in a PDF.
    +
    +
    PDFOptions - Class in com.cloudofficeprint.Output
    +
    +
    Class for all the optional PDF output options.
    +
    +
    PDFOptions() - Constructor for class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Constructor for the PDFOptions object.
    +
    +
    PDFSignatureExample - Class in com.cloudofficeprint.Examples.PDFSignature
    +
     
    +
    PDFSignatureExample() - Constructor for class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    +
     
    +
    PDFText - Class in com.cloudofficeprint.RenderElements.PDF
    +
     
    +
    PDFText(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    +
    Represents text to insert in a PDF.
    +
    +
    PDFTexts - Class in com.cloudofficeprint.RenderElements.PDF
    +
    +
    Group of different PDF texts as one RenderElement.
    +
    +
    PDFTexts(PDFText[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
     
    +
    Pie3DChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a 3D pie chart.
    +
    +
    Pie3DChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
    +
    Represents a 3D pie chart.
    +
    +
    PieChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a pie chart.
    +
    +
    PieChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
    +
    Represents a pie chart.
    +
    +
    PieSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    This class represents series for pie charts.
    +
    +
    PieSeries(String, String[], String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
    +
    This object represents series for a pie chart.
    +
    +
    prependAppendSubTemplatesExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    This example shows you how to prepend/append files and how to use + subtemplates in a template.
    +
    +
    Printer - Class in com.cloudofficeprint.Server
    +
    +
    Cloud Office Print supports to print directly to an IP Printer.
    +
    +
    Printer(String, String, String, String, boolean) - Constructor for class com.cloudofficeprint.Server.Printer
    +
    +
    Cloud Office Print supports to print directly to an IP Printer.
    +
    +
    PrintJob - Class in com.cloudofficeprint
    +
    +
    A print job for the Cloud Office Print server containing all the necessary + information to generate the adequate JSON for the Cloud Office Print server.
    +
    +
    PrintJob(ExternalResource, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    +
    +
    A print job for the Cloud Office Print server containing all the necessary + information to generate the adequate JSON for the Cloud Office Print server.
    +
    +
    PrintJob(Hashtable<String, RenderElement>, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    +
    +
    A print job for the Cloud Office Print server containing all the necessary + information to generate the adequate JSON for the Cloud Office Print server.
    +
    +
    Property - Class in com.cloudofficeprint.RenderElements
    +
    +
    The most basic RenderElement.
    +
    +
    Property(String, int) - Constructor for class com.cloudofficeprint.RenderElements.Property
    +
    +
    The most basic RenderElement.
    +
    +
    Property(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Property
    +
    +
    The most basic RenderElement.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-14.html b/cloudofficeprint/build/docs/javadoc/index-files/index-14.html new file mode 100644 index 00000000..87f28c39 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-14.html @@ -0,0 +1,98 @@ + + + + + +Q-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    Q

    +
    +
    QRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of Code and serves as a superclass for the different + types of QR-codes.
    +
    +
    QRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    +
    This class is a subclass of Code and serves as a superclass for the different + types of QR-codes.
    +
    +
    qrCodeExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    This example show how to work with Codes (QR code and barcode).
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-15.html b/cloudofficeprint/build/docs/javadoc/index-files/index-15.html new file mode 100644 index 00000000..183ecf67 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-15.html @@ -0,0 +1,177 @@ + + + + + +R-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    R

    +
    +
    RadarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a radar chart.
    +
    +
    RadarChart(String, ChartOptions, RadarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
    +
    Represents a radar chart.
    +
    +
    RadarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for radar charts.
    +
    +
    RadarSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries
    +
    +
    This object represents series for a radar chart.
    +
    +
    Raw - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only available for HTML and Markdown templates.
    +
    +
    Raw(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Raw
    +
     
    +
    RawJsonArray - Class in com.cloudofficeprint.RenderElements
    +
    +
    Represents a raw JsonArray to include in the data.
    +
    +
    RawJsonArray(String, JsonArray) - Constructor for class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    +
    Element to insert a footnote in a template.
    +
    +
    readJson(String) - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Function to read a local JSON file.
    +
    +
    removeDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Turns the datalabels of.
    +
    +
    removeElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    removeElementByName(String) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    removeLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Turns the legend of.
    +
    +
    RenderElement - Class in com.cloudofficeprint.RenderElements
    +
    +
    Abstract class for renderElements.
    +
    +
    RenderElement() - Constructor for class com.cloudofficeprint.RenderElements.RenderElement
    +
     
    +
    replaceKeyRecursive(JsonObject, String, String) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    +
    Replaces all the occurrences of oldKey in the json with the newKey.
    +
    +
    Resource - Class in com.cloudofficeprint.Resources
    +
    +
    Resource is an abstract class for all the different resource types for the + templates and "secondary files" : subtemplates, files to prepend, files to + append and files to insert (in the template).
    +
    +
    Resource() - Constructor for class com.cloudofficeprint.Resources.Resource
    +
     
    +
    Response - Class in com.cloudofficeprint
    +
    +
    Class for dealing with the Cloud Office Print server's response to a printjob + request.
    +
    +
    Response(String, String, byte[]) - Constructor for class com.cloudofficeprint.Response
    +
     
    +
    RESTResource - Class in com.cloudofficeprint.Resources
    +
    +
    Class for working with a REST endpoint as Resource.
    +
    +
    RESTResource(String, String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.RESTResource
    +
    +
    Resource from an REST endpoint.
    +
    +
    RightToLeft - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Word templates, might work in other templates but behaviour + is not predictable.
    +
    +
    RightToLeft(String, String) - Constructor for class com.cloudofficeprint.RenderElements.RightToLeft
    +
    +
    When substituting the content in a language written in right to left, like + Arabic, this object can be used to properly format the language.
    +
    +
    run() - Method in class com.cloudofficeprint.PrintJob
    +
    +
    Asynchronous version of execute().
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-16.html b/cloudofficeprint/build/docs/javadoc/index-files/index-16.html new file mode 100644 index 00000000..3e513e42 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-16.html @@ -0,0 +1,980 @@ + + + + + +S-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    S

    +
    +
    ScatterChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a scatter chart.
    +
    +
    ScatterChart(String, ChartOptions, ScatterSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
    +
    Represents an area chart.
    +
    +
    ScatterSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for scatter charts.
    +
    +
    ScatterSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries
    +
    +
    This object represents series for a scatter charts.
    +
    +
    sendGETRequest(String) - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to the url.
    +
    +
    sendPOSTRequest(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a POST request with the given json file as body.
    +
    +
    Server - Class in com.cloudofficeprint.Server
    +
    +
    Class representing the Cloud Office Print server to interact with.
    +
    +
    Server(String) - Constructor for class com.cloudofficeprint.Server.Server
    +
    +
    Most basic constructor of the server.
    +
    +
    Server(String, String, Printer, Commands, JsonObject, String, Integer) - Constructor for class com.cloudofficeprint.Server.Server
    +
    +
    Use default values if you don't want to specify an argument.
    +
    +
    ServerResource - Class in com.cloudofficeprint.Resources
    +
    +
    Child class of Resource.
    +
    +
    ServerResource(String, String) - Constructor for class com.cloudofficeprint.Resources.ServerResource
    +
    +
    Creates a resource with given path.
    +
    +
    setAccessToken(CloudAccessToken) - Method in class com.cloudofficeprint.Output.Output
    +
    +
    Sets the access token object of the output, if you want to store the output + on a cloud based service.
    +
    +
    setAltitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
     
    +
    setAltText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setAPIKey(String) - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Only applicable for service users.
    +
    +
    setAppendFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    setArgs(JsonObject) - Method in class com.cloudofficeprint.Server.Command
    +
     
    +
    setAuth(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    setAutoColor(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setAutoColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setAutoColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
     
    +
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Note: displaying rounded corners is not supported by LibreOffice.
    +
    +
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    setBackGroundImage(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setBackgroundImageAlpha(Double) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setBackGroundImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    +
    Sets the background image of the QR code to the given image from the path.
    +
    +
    setBackgroundOpacity(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Note: backgroundOpacity is ignored if backgroundColor is not specified or if + backgroundColor is specified in a color space which includes an alpha channel + (e.g.
    +
    +
    setBarSeries(ArrayList<BarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
     
    +
    setBarStackedPercentSeries(ArrayList<BarStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
     
    +
    setBarStackedSeries(ArrayList<BarStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
     
    +
    setBcc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    setBirthday(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setBody(byte[]) - Method in class com.cloudofficeprint.Response
    +
     
    +
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
     
    +
    setBody(String) - Method in class com.cloudofficeprint.Resources.RESTResource
    +
     
    +
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setBooleanValue(boolean) - Method in class com.cloudofficeprint.RenderElements.Freeze
    +
     
    +
    setBorder(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setBorderBottom(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderBottomColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderDiagonal(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderDiagonalColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderDiagonalDirection(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderLeft(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderLeftColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderRight(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderRightColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderTop(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setBorderTopColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setCc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    setCellBackground(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setCellHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setCellLocked(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setCellStyle(CellStyle) - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
     
    +
    setCharacterSet(Integer) - Method in class com.cloudofficeprint.Output.CsvOptions
    +
     
    +
    setCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
     
    +
    setClose(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    setCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
     
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    +
    Default :"silver".
    +
    +
    setColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setColors(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
    +
    Note : If no colors are specified, the document's theme is used.
    +
    +
    setColumns(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
     
    +
    setColumnSeries(ArrayList<ColumnSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
     
    +
    setColumnStackedPercentageSeries(ArrayList<ColumnStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
     
    +
    setCommand(String) - Method in class com.cloudofficeprint.Server.Command
    +
     
    +
    setCommands(Commands) - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    setContactPrimary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setContactSecondary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setContactTertiary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setConverter(String) - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    setCopChartDateOptions(COPChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    setCopies(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    setCopRemoteDebug(Boolean) - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    setCsvOptions(CsvOptions) - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    setData(String) - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
     
    +
    setData(Hashtable<String, RenderElement>) - Method in class com.cloudofficeprint.PrintJob
    +
    +
    Renderelements will replace their corresponding tag in the template.
    +
    +
    setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Turn the data labels on.
    +
    +
    setDataSource(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    setDateOptions(ChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setDepth(int) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
     
    +
    setDotScale(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
     
    +
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    setEncoding(String) - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    setEncryption(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
     
    +
    setEndDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
     
    +
    setEndpoint(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    setEvenPage(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    setExt(String) - Method in class com.cloudofficeprint.Response
    +
     
    +
    setExternalResource(ExternalResource) - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    setExtraOptions(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    +
    If you want to include extra options like including barcode text on the botto + The options should be space separated and should be followed by a "=" and + their value.
    +
    +
    setFieldSeparator(String) - Method in class com.cloudofficeprint.Output.CsvOptions
    +
     
    +
    setFileBase64(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
    +
    Sets the data of the resource to the given parameter.
    +
    +
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Images.ImageBase64
    +
    +
    Reads all bytes of the file, converts them to base64 and stores them in + this.value.
    +
    +
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
    +
    Sets the filetype of this resource to the extension of the file, sets the + mimetype as well.
    +
    +
    setFileName(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    setFiletype(String) - Method in class com.cloudofficeprint.Resources.Resource
    +
    +
    Sets the filetype (extension) of the resource to the given filetype.
    +
    +
    setFirstName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    +
    Default : Calibri.
    +
    +
    setFontBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    setFontItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    setFontSize(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setFontStrike(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFontSubscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFontSuperscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFontUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
     
    +
    setFormatCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setFormData(HashMap<String, String>) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
     
    +
    setGrid(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setHeaders(JsonArray) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    +
    Default : automatically determined by Cloud Office Print.
    +
    +
    setHeightLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setHigh(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    setHighlightColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setHost(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    setIdentifyFormFields(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    If it is set to true Cloud Office Print tries to identify the form fields and fills them in.
    +
    +
    setImage(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    setImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    +
    Sets the image to the image on the filepath.
    +
    +
    setImages(PDFImage[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
     
    +
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setJobName(String) - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    setJsonArray(JsonArray) - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    +
    to set Json array
    +
    +
    setKeyID(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
     
    +
    setLandscape(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    setLegend(String, ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Turns the legend on.
    +
    +
    setLineseries(ArrayList<LineSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    +
     
    +
    setLineStyle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    setLineThickness(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    setLinkUrl(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    setLocation(String) - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    setLockForm(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    setLoggingInfo(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    +
    +
    When the Cloud Office Print server is started with --enable_printlog, it will + create a file on the server called server_printjob.log.
    +
    +
    setLogo(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setLogoBackGroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setLogoFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    +
    Sets the logo to the given image from the path.
    +
    +
    setLongitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
     
    +
    setLow(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    setMajorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setMajorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setMax(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setMaxHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    setMerge(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    setMergeMakingEven(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    setMethod(String) - Method in class com.cloudofficeprint.Resources.RESTResource
    +
     
    +
    setMimetype(String) - Method in class com.cloudofficeprint.Response
    +
     
    +
    setMimeType(String) - Method in class com.cloudofficeprint.Resources.Resource
    +
    +
    Sets the mimetype of the resource to the given mimetype.
    +
    +
    setMin(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setMinorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setMinorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setModifyPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    setName(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    setName(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
     
    +
    setNickname(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setNotes(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    +
    Note: Decimal value between 0 and 1.
    +
    +
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    +
    Default: 1.
    +
    +
    setOpen(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    setOptions(ChartOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
     
    +
    setOrientation(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setOutput(Output) - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    setPaddingHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    setPaddingWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    setPageFormat(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    setPageHeight(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    setPageMargin(int) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    setPageMargin(int[]) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    setPageNumber(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    setPageWidth(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    setPassword(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    setPassword(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
     
    +
    setPassword(String) - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    setPasswordProtectionFlag(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    More info on the flag bits on + https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
    +
    +
    setPath(String) - Method in class com.cloudofficeprint.Resources.ServerResource
    +
    +
    Sets the path of the resource.
    +
    +
    setPDFOptions(PDFOptions) - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    setPiBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPiColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
     
    +
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
     
    +
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
     
    +
    setPiTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPiTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPoBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPoColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPort(int) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    setPostConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    setPostMerge(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    setPostProcess(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    setPostProcessDeleteDelay(int) - Method in class com.cloudofficeprint.Server.Commands
    +
    +
    Cloud Office Print deletes the file provided to the command directly after + executing it.
    +
    +
    setPostProcessReturn(Boolean) - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    setPoTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPoTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setPreConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    setPrependFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    setPrinter(Printer) - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Cloud Office Print supports to print directly to an IP Printer.
    +
    +
    setProxyIP(String) - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    setProxyPort(Integer) - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    setQrErrorCorrectionLevel(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    +
    Only for QR codes.
    +
    +
    setQuery(String) - Method in class com.cloudofficeprint.Resources.GraphQLResource
    +
     
    +
    setQuietZone(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setQuietZoneColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setReadPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    setRemoveLastPage(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to remove last page from output.
    +
    +
    setRequester(String) - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    setResponse(Response) - Method in class com.cloudofficeprint.PrintJob
    +
    +
    For setting to response after asynchronous execution.
    +
    +
    setReturnOutput(boolean) - Method in class com.cloudofficeprint.Server.Printer
    +
    +
    You can specify to whether to return output from server
    +
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    +
    Default : calculated to lie along the bottom-left to top-right diagonal.
    +
    +
    setRoundedCorners(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setRows(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
     
    +
    setSecondaryCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
     
    +
    setSecretKey(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
     
    +
    setSeries(ArrayList<AreaSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
     
    +
    setSeries(ArrayList<BubbleSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
     
    +
    setSeries(ArrayList<RadarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
     
    +
    setSeries(ArrayList<ScatterSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
     
    +
    setSeries(ArrayList<StockSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
     
    +
    setServer(Server) - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    setServerDirectory(String) - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    setService(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
     
    +
    setSheetNames(ArrayList<String>) - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
     
    +
    setSignCertificate(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to sign the output PDF if the output pdf has a signature + field.
    +
    +
    setSignCertificateWithPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to sign certificate with password.
    +
    +
    setSizes(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
     
    +
    setSmooth(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    +
    -
    +
    +
    setSplit(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    whether the output PDF should be split into one file per page in a zip file
    +
    +
    setStackedColumnSeries(ArrayList<ColumnStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
     
    +
    setStartDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
     
    +
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
     
    +
    setStrikethrough(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setSubject(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    setSubTemplates(Hashtable<String, Resource>) - Method in class com.cloudofficeprint.PrintJob
    +
    +
    Subtemplates are only accessible (in docx).
    +
    +
    setSymbol(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    setSymbolSize(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    setTabLeader(String) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
     
    +
    setTargetUrl(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setTemplate(Resource) - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    setText(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    setTextDelimiter(String) - Method in class com.cloudofficeprint.Output.CsvOptions
    +
     
    +
    setTextHAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setTextRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setTexts(PDFText[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
     
    +
    setTextVAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    setTimingColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setTimingHColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setTimingVColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    setTitleRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setToken(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
     
    +
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    setType(String) - Method in class com.cloudofficeprint.Output.Output
    +
    +
    Sets the file type (extension) of the output to type.
    +
    +
    setType(String) - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    +
     
    +
    setUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
     
    +
    setUrl(String) - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
    +
    Note : In Excel you can hyperlink to a cell.
    +
    +
    setUrl(String) - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    setURL(String) - Method in class com.cloudofficeprint.Resources.URLResource
    +
    +
    Sets the URL of the resource to given URL.
    +
    +
    setUsername(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    setUsername(String) - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    setValue(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
     
    +
    setValues(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setValuesStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    setVerbose(boolean) - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    setVersion(String) - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    setVolume(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    setWatermark(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to set your own watermark.
    +
    +
    setWatermarkColor(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to assign color of your watermark.
    +
    +
    setWatermarkFont(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to assign font to your watermark.
    +
    +
    setWatermarkOpacity(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to set opacity of your watermark.
    +
    +
    setWatermarkSize(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to set size of your watermark.
    +
    +
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    +
    The width manipulation is available from Cloud Office Print 20.2.
    +
    +
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    +
    Default : automatically determined by Cloud Office Print.
    +
    +
    setWidthLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    setWifiHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
     
    +
    setWrapText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    +
    Note : only supports 5 of the Microsoft Word Text Wrapping options.
    +
    +
    setX(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    setX(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    setX2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    setXAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setXData(JsonArray) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    setXTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    setY(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    setY(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    setY2AxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setY2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    setYAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    setYData(HashMap<String, JsonArray>) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    setYTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    SheetLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    +
    Loop where a sheet will be repeated for each element of the loop.
    +
    +
    SheetLoop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    +
    To repeat a sheet for each element of elements.
    +
    +
    SheetLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    +
    To repeat a sheet for each element of elements.
    +
    +
    SheetLoop(String, HashMap<String, RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    +
    To repeat a sheet for each element of elements.
    +
    +
    shortenDescription(String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    +
     
    +
    signPDF(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    This example show you how to sign a PDF file.
    +
    +
    SlideLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    +
    Loop where a slide will be repeated for each element of the loop.
    +
    +
    SlideLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SlideLoop
    +
    +
    To repeat a slide for each element of elements.
    +
    +
    SMSQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate an SMS QR-code + element.
    +
    +
    SMSQRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
    +
    This object represents a SMS QR-code.
    +
    +
    SolarSystemExample - Class in com.cloudofficeprint.Examples.SolarSystem
    +
     
    +
    SolarSystemExample() - Constructor for class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    +
     
    +
    SpaceXExample - Class in com.cloudofficeprint.Examples.SpaceX
    +
    +
    This example is fully explained in the spacex_example.md file.
    +
    +
    SpaceXExample() - Constructor for class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    +
     
    +
    StockChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a stock chart.
    +
    +
    StockChart(String, ChartOptions, StockSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
    +
    Represents a stock chart.
    +
    +
    StockSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    This class represents series for stock charts.
    +
    +
    StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    +
    This object represents series for a stock chart.
    +
    +
    StyledProperty - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Word and Powerpoint templates.
    +
    +
    StyledProperty(String, String) - Constructor for class com.cloudofficeprint.RenderElements.StyledProperty
    +
    +
    Represents styled text.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-17.html b/cloudofficeprint/build/docs/javadoc/index-files/index-17.html new file mode 100644 index 00000000..8e432d0b --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-17.html @@ -0,0 +1,130 @@ + + + + + +T-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    T

    +
    +
    TableCell - Class in com.cloudofficeprint.RenderElements.Cells
    +
    +
    Only supported in Word, Excel, Powerpoint templates (they all have tables + with cells).
    +
    +
    TableCell(String, String, CellStyle) - Constructor for class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
    +
    Represents a cell element.
    +
    +
    TableOfContents - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Word templates.
    +
    +
    TableOfContents(String, String, int, String) - Constructor for class com.cloudofficeprint.RenderElements.TableOfContents
    +
    +
    The most basic RenderElement.
    +
    +
    TableRowLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    +
    Only supported in PowerPoint templates.
    +
    +
    TableRowLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
    +
    +
    Only supported in PowerPoint templates.
    +
    +
    TelephoneNumberQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate a telephone number + QR-code element.
    +
    +
    TelephoneNumberQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
    +
    +
    This object represents a telephone number QR-code.
    +
    +
    TextBox - Class in com.cloudofficeprint.RenderElements
    +
    +
    This tag will allow you to insert a text box starting in the cell containing + the tag in Excel.
    +
    +
    TextBox(String, String) - Constructor for class com.cloudofficeprint.RenderElements.TextBox
    +
    +
    This object represents a text box starting in the cell containing the tag in + Excel.
    +
    +
    toString() - Method in exception com.cloudofficeprint.COPException
    +
     
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-18.html b/cloudofficeprint/build/docs/javadoc/index-files/index-18.html new file mode 100644 index 00000000..61e1da81 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-18.html @@ -0,0 +1,103 @@ + + + + + +U-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    U

    +
    +
    updateJson1WithJson2(JsonObject, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    URLQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate an URL QR-code + element.
    +
    +
    URLQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.URLQRCode
    +
    +
    This object represents a URL QR-code.
    +
    +
    URLResource - Class in com.cloudofficeprint.Resources
    +
    +
    Child class of Resource.
    +
    +
    URLResource(String, String, String) - Constructor for class com.cloudofficeprint.Resources.URLResource
    +
    +
    Constructor for this class.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-19.html b/cloudofficeprint/build/docs/javadoc/index-files/index-19.html new file mode 100644 index 00000000..c2459ef1 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-19.html @@ -0,0 +1,93 @@ + + + + + +V-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    V

    +
    +
    VCardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate a vCard QR-code + element
    +
    +
    VCardQRCode(String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    +
    This object represents a VCF or vCard QR Code.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-2.html b/cloudofficeprint/build/docs/javadoc/index-files/index-2.html new file mode 100644 index 00000000..933c2577 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-2.html @@ -0,0 +1,173 @@ + + + + + +B-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    B

    +
    +
    BarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a bar chart.
    +
    +
    BarChart(String, ChartOptions, BarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
    +
    Represents a bar chart.
    +
    +
    BarCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class represents a barcode or a QR code (created using the data of the + key) for a template.
    +
    +
    BarCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    +
    This class represents a barcode (created using the data of the key) for a + template.
    +
    +
    BarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for bar charts.
    +
    +
    BarSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarSeries
    +
    +
    This object represents series for a bar chart.
    +
    +
    BarStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a stacked bar chart.
    +
    +
    BarStackedChart(String, ChartOptions, BarStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
    +
    Represents a stacked bar chart.
    +
    +
    BarStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a stacked bar chart where the x-axis is expressed in percentage.
    +
    +
    BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
    +
    Represents a stacked bar chart.
    +
    +
    BarStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for stacked bar charts where the x-axis is expressed in + percentage.
    +
    +
    BarStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries
    +
    +
    This object represents series for a stacked bar chart where the x-axis is + expressed in percentage.
    +
    +
    BarStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for stacked bar charts.
    +
    +
    BarStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries
    +
    +
    This object series for represents a stacked bar chart.
    +
    +
    Base64Resource - Class in com.cloudofficeprint.Resources
    +
    +
    Child class of Resource.
    +
    +
    Base64Resource() - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    +
    +
    Constructor for creating an uninitialised object of this class.
    +
    +
    Base64Resource(String, String) - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    +
    +
    Constructor for creating an object of this class where the database64 can be + supplied as a string.
    +
    +
    BubbleChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a bubble chart.
    +
    +
    BubbleChart(String, ChartOptions, BubbleSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
    +
    Represents a bubble chart.
    +
    +
    BubbleSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for a bubble chart.
    +
    +
    BubbleSeries(String, String[], String[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
    +
    This object represents series for a bubble chart.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-20.html b/cloudofficeprint/build/docs/javadoc/index-files/index-20.html new file mode 100644 index 00000000..0e54099a --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-20.html @@ -0,0 +1,110 @@ + + + + + +W-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    W

    +
    +
    Watermark - Class in com.cloudofficeprint.RenderElements
    +
    +
    It is possible to use your own Watermark with font, size, opacity, color, width, height and rotation.
    +
    +
    Watermark(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Watermark
    +
    +
    Represents a watermark.
    +
    +
    waterMarkAndStyledProperty(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    Example for a styled property and a watermark.
    +
    +
    WifiQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate a WiFi QR-code + element.
    +
    +
    WifiQRCode(String, String, String, String, Boolean) - Constructor for class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    +
    This class is a subclass of QRCode and is used to generate a WiFi QR-code + element.
    +
    +
    withoutTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    Example without template.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-21.html b/cloudofficeprint/build/docs/javadoc/index-files/index-21.html new file mode 100644 index 00000000..cff4ff52 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-21.html @@ -0,0 +1,88 @@ + + + + + +X-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    X

    +
    +
    XYSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
     
    +
    XYSeries() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-3.html b/cloudofficeprint/build/docs/javadoc/index-files/index-3.html new file mode 100644 index 00000000..206a7cd1 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-3.html @@ -0,0 +1,325 @@ + + + + + +C-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    C

    +
    +
    CellSpan - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only available for Excel and HTML templates.
    +
    +
    CellSpan(String, String, int, int) - Constructor for class com.cloudofficeprint.RenderElements.CellSpan
    +
     
    +
    CellStyle - Class in com.cloudofficeprint.RenderElements.Cells
    +
    +
    Abstract class for cellstyles.
    +
    +
    CellStyle() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyle
    +
     
    +
    CellStyleDocxPpt - Class in com.cloudofficeprint.RenderElements.Cells
    +
    +
    Represent the style of Word and PowerPoint cells.
    +
    +
    CellStyleDocxPpt(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    +
    Represents the style of a Word/PowerPoint cell element.
    +
    +
    CellStyleXlsx - Class in com.cloudofficeprint.RenderElements.Cells
    +
    +
    Represents the style of Excel cells.
    +
    +
    CellStyleXlsx() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    +
    Represents the style of an Excell cell element.
    +
    +
    Chart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    It would be more optimal to make this class generic.
    +
    +
    Chart() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
     
    +
    ChartAxisOptions - Class in com.cloudofficeprint.RenderElements.Charts
    +
     
    +
    ChartAxisOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    +
    Represents the options for an axis of a chart.
    +
    +
    ChartDateOptions - Class in com.cloudofficeprint.RenderElements.Charts
    +
    +
    This class represents date options, only applicable for stock charts.
    +
    +
    ChartDateOptions(String, String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    +
    This object represents the date options for a chart.
    +
    +
    chartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    This example show how to build a line chart.
    +
    +
    ChartOptions - Class in com.cloudofficeprint.RenderElements.Charts
    +
    +
    This class represents the chart options.
    +
    +
    ChartOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    This object represents the options for a chart.
    +
    +
    ChartTextStyle - Class in com.cloudofficeprint.RenderElements.Charts
    +
    +
    This class represent chart styling.
    +
    +
    ChartTextStyle(Boolean, Boolean, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    +
    Contains the styling options for the text of the chart.
    +
    +
    CloudAccessToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    +
    +
    CloudAccessToken is an abstract class for all the different cloud access + tokens : OAuth tokens, AWS tokens,FTP/SFTP tokens
    +
    +
    CloudAccessToken() - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
     
    +
    Code - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    Superclass for QR and BarCodes.
    +
    +
    Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.Code
    +
    +
    This class represents codes (barcode or QR codes) (created using the data of + the key) for a template.
    +
    +
    ColumnChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a column chart.
    +
    +
    ColumnChart(String, ChartOptions, ColumnSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
    +
    Represents a column chart.
    +
    +
    ColumnSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for column charts.
    +
    +
    ColumnSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries
    +
    +
    This object represents series for a column chart.
    +
    +
    ColumnStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a stacked column chart.
    +
    +
    ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
    +
    Represents a stacked column chart.
    +
    +
    ColumnStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a stacked column chart.
    +
    +
    ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
    +
    Represents a stacked column chart where the y-axis is expressed in + percentage.
    +
    +
    ColumnStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for stacked column charts where the y-axis is expressed in + percentage.
    +
    +
    ColumnStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries
    +
    +
    This object represents series for a stacked column chart where the y-axis is + expressed in percentage.
    +
    +
    ColumnStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    +
    Represents series for stacked column charts.
    +
    +
    ColumnStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries
    +
    +
    This object represents series for a stacked column chart.
    +
    +
    com.cloudofficeprint - package com.cloudofficeprint
    +
     
    +
    com.cloudofficeprint.Examples.GeneralExamples - package com.cloudofficeprint.Examples.GeneralExamples
    +
     
    +
    com.cloudofficeprint.Examples.MultipleRequestMerge - package com.cloudofficeprint.Examples.MultipleRequestMerge
    +
     
    +
    com.cloudofficeprint.Examples.OrderConfirmation - package com.cloudofficeprint.Examples.OrderConfirmation
    +
     
    +
    com.cloudofficeprint.Examples.PDFSignature - package com.cloudofficeprint.Examples.PDFSignature
    +
     
    +
    com.cloudofficeprint.Examples.SolarSystem - package com.cloudofficeprint.Examples.SolarSystem
    +
     
    +
    com.cloudofficeprint.Examples.SpaceX - package com.cloudofficeprint.Examples.SpaceX
    +
     
    +
    com.cloudofficeprint.Output - package com.cloudofficeprint.Output
    +
     
    +
    com.cloudofficeprint.Output.CloudAcessToken - package com.cloudofficeprint.Output.CloudAcessToken
    +
     
    +
    com.cloudofficeprint.RenderElements - package com.cloudofficeprint.RenderElements
    +
     
    +
    com.cloudofficeprint.RenderElements.Cells - package com.cloudofficeprint.RenderElements.Cells
    +
     
    +
    com.cloudofficeprint.RenderElements.Charts - package com.cloudofficeprint.RenderElements.Charts
    +
     
    +
    com.cloudofficeprint.RenderElements.Charts.Charts - package com.cloudofficeprint.RenderElements.Charts.Charts
    +
     
    +
    com.cloudofficeprint.RenderElements.Charts.Series - package com.cloudofficeprint.RenderElements.Charts.Series
    +
     
    +
    com.cloudofficeprint.RenderElements.Codes - package com.cloudofficeprint.RenderElements.Codes
    +
     
    +
    com.cloudofficeprint.RenderElements.Images - package com.cloudofficeprint.RenderElements.Images
    +
     
    +
    com.cloudofficeprint.RenderElements.Loops - package com.cloudofficeprint.RenderElements.Loops
    +
     
    +
    com.cloudofficeprint.RenderElements.PDF - package com.cloudofficeprint.RenderElements.PDF
    +
     
    +
    com.cloudofficeprint.Resources - package com.cloudofficeprint.Resources
    +
     
    +
    com.cloudofficeprint.Server - package com.cloudofficeprint.Server
    +
     
    +
    CombinedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a combined chart.
    +
    +
    CombinedChart(String, ChartOptions, Chart[], Chart[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    +
    Represents a combined chart.
    +
    +
    combinedChartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    This example show how to build a combined chart.
    +
    +
    Command - Class in com.cloudofficeprint.Server
    +
    +
    Command object with a single command for the Cloud Office Print server.
    +
    +
    Command(String, JsonObject) - Constructor for class com.cloudofficeprint.Server.Command
    +
    +
    -
    +
    +
    Commands - Class in com.cloudofficeprint.Server
    +
    +
    Commands object with commands for the Cloud Office Print server to run before + or after the post processing.
    +
    +
    Commands() - Constructor for class com.cloudofficeprint.Server.Commands
    +
     
    +
    COPChart - Class in com.cloudofficeprint.RenderElements
    +
    +
    Supported in Word, Excel and Powerpoint templates.
    +
    +
    COPChart(String, JsonArray, HashMap<String, JsonArray>, String, String, String, String, String, COPChartDateOptions) - Constructor for class com.cloudofficeprint.RenderElements.COPChart
    +
    +
    Represent a Cloud Office Print chart (including data and style).
    +
    +
    COPChartDateOptions - Class in com.cloudofficeprint.RenderElements
    +
    +
    Date options for an COPChart (different from ChartDateOptions for the other + Charts).
    +
    +
    COPChartDateOptions(String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    +
    This object represents the date options for a chart.
    +
    +
    COPException - Exception in com.cloudofficeprint
    +
    +
    Class for handling a HTTP response of the Cloud Office Print server when the + responseCode is /= 200.
    +
    +
    COPException(int, String) - Constructor for exception com.cloudofficeprint.COPException
    +
    +
    Sets this.responseCode to responseCode.
    +
    +
    COPPDFTextAndImageExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    +
    This example shows you how to add text and images on pages of a template + without tag.
    +
    +
    CsvOptions - Class in com.cloudofficeprint.Output
    +
    +
    Class for all the optional PDF output options.
    +
    +
    CsvOptions() - Constructor for class com.cloudofficeprint.Output.CsvOptions
    +
    +
    Constructor for the CsvOptions object.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-4.html b/cloudofficeprint/build/docs/javadoc/index-files/index-4.html new file mode 100644 index 00000000..bfa2792e --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-4.html @@ -0,0 +1,106 @@ + + + + + +D-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    D

    +
    +
    D3Code - Class in com.cloudofficeprint.RenderElements
    +
    +
    With Word/Excel/PowerPoint documents, it's possible to let Cloud Office Print + execute some JavaScript code to generate a D3 image (Data Driven Documents).
    +
    +
    D3Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.D3Code
    +
    +
    Represents an D3 image.
    +
    +
    DoughnutChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    +
    Represents a doughnut chart.
    +
    +
    DoughnutChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
    +
    Represents a doughnut chart.
    +
    +
    downloadLocally(String) - Method in class com.cloudofficeprint.Response
    +
    +
    Downloads the file locally to the given path, filename needs to be specified + at the end of the path, not the extension.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-5.html b/cloudofficeprint/build/docs/javadoc/index-files/index-5.html new file mode 100644 index 00000000..fc5a1602 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-5.html @@ -0,0 +1,130 @@ + + + + + +E-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    E

    +
    +
    ElementCollection - Class in com.cloudofficeprint.RenderElements
    +
    +
    A collection used to group multiple RenderElements together.
    +
    +
    ElementCollection(String) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    +
    +
    A collection used to group multiple RenderElements together.
    +
    +
    ElementCollection(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    +
    +
    A collection used to group multiple RenderElements together.
    +
    +
    EmailQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate an email QR-code + element
    +
    +
    EmailQRCode(String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    +
    This object represents a mail QR-code.
    +
    +
    EventQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate an event QR-code + element
    +
    +
    EventQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
    +
    This object represents a Event QR Code.
    +
    +
    Examples - Class in com.cloudofficeprint.Examples.GeneralExamples
    +
     
    +
    Examples() - Constructor for class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
     
    +
    execute() - Method in class com.cloudofficeprint.PrintJob
    +
    +
    Creates the adequate JSON and sends it to the Cloud Office Print server.
    +
    +
    ExternalResource - Class in com.cloudofficeprint.Resources
    +
    +
    Abstract base class for external resources.
    +
    +
    ExternalResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.ExternalResource
    +
    +
    Abstract base class for external resources.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-6.html b/cloudofficeprint/build/docs/javadoc/index-files/index-6.html new file mode 100644 index 00000000..1d364ff7 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-6.html @@ -0,0 +1,120 @@ + + + + + +F-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    F

    +
    +
    FootNote - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Word and Excel templates.
    +
    +
    FootNote(String, String) - Constructor for class com.cloudofficeprint.RenderElements.FootNote
    +
    +
    Element to insert a footnote in a template.
    +
    +
    Formula - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Excel.
    +
    +
    Formula(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Formula
    +
    +
    Represents an Excel formula.
    +
    +
    Freeze - Class in com.cloudofficeprint.RenderElements
    +
    +
    This tag will allow you to utilize freeze pane property of the Excel.Three options are available.
    +
    +
    Freeze(String, boolean) - Constructor for class com.cloudofficeprint.RenderElements.Freeze
    +
    +
    This tag will allow you to use freeze pane property of Excel.
    +
    +
    Freeze(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Freeze
    +
    +
    This tag will allow you to use freeze pane property of Excel.
    +
    +
    FTPToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    +
    +
    Class to use for FTP/SFTP tokens to store output on a FTP/SFTP server.
    +
    +
    FTPToken(String, Boolean, int, String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    +
    Constructor for an FTPToken object.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-7.html b/cloudofficeprint/build/docs/javadoc/index-files/index-7.html new file mode 100644 index 00000000..0bb2d7c5 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-7.html @@ -0,0 +1,1192 @@ + + + + + +G-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    G

    +
    +
    GeolocationQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    +
    This class is a subclass of QRCode and is used to generate a geolocation + QR-code element
    +
    +
    GeolocationQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
    +
    This object represents a VCF or vCard QR Code.
    +
    +
    getAccessToken() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getAltitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
     
    +
    getAltText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getAPIKey() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Only applicable for service users.
    +
    +
    getAppendFiles() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getArgs() - Method in class com.cloudofficeprint.Server.Command
    +
     
    +
    getAuth() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    getAutoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getAutoColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getAutoColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
     
    +
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Note: displaying rounded corners is not supported by LibreOffice.
    +
    +
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getBackGroundImage() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getBackgroundImageAlpha() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getBackgroundOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Note: backgroundOpacity is ignored if backgroundColor is not specified or if + backgroundColor is specified in a color space which includes an alpha channel + (e.g.
    +
    +
    getBarSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
     
    +
    getBarStackedPercentSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
     
    +
    getBarStackedSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
     
    +
    getBcc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    getBirthday() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
     
    +
    getBody() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
     
    +
    getBody() - Method in class com.cloudofficeprint.Response
    +
     
    +
    getBold() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    getBold() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getBold() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getBooleanValue() - Method in class com.cloudofficeprint.RenderElements.Freeze
    +
     
    +
    getBorder() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getBorderBottom() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderBottomColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderDiagonal() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderDiagonalColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderDiagonalDirection() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderLeft() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderLeftColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderRight() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderRightColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderTop() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getBorderTopColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getCc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    getCellBackground() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getCellHidden() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getCellLocked() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getCellStyle() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
     
    +
    getCharacterSet() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
     
    +
    getCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
     
    +
    getClose() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    getCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
     
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getColors() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
    +
    Note : If no colors are specified, the document's theme is used.
    +
    +
    getColumns() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
     
    +
    getColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
     
    +
    getColumnStackedPercentageSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
     
    +
    getCommand() - Method in class com.cloudofficeprint.Server.Command
    +
     
    +
    getCommands() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getContactPrimary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getContactSecondary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getContactTertiary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getConverter() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getCopChartDateOptions() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getCopies() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getCopRemoteDebug() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getCOPVersionOnServer() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to server-url/version.
    +
    +
    getCsvOptions() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getData() - Method in class com.cloudofficeprint.PrintJob
    +
    +
    Renderelements will replace their corresponding tag in the template.
    +
    +
    getData() - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
     
    +
    getDataSource() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    getDate() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getDepth() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
     
    +
    getDotScale() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getElements() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    getElements() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
     
    +
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    getEncoding() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getEncryption() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
     
    +
    getEndDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
     
    +
    getEndpoint() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    getEvenPage() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getExt() - Method in class com.cloudofficeprint.Response
    +
     
    +
    getExtension(String) - Static method in class com.cloudofficeprint.Mimetype
    +
    +
    Return the extension given the mimetype of a file.
    +
    +
    getExtension(String) - Method in class com.cloudofficeprint.Resources.Resource
    +
     
    +
    getExternalResource() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getExtraOptions() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    +
    If you want to include extra options like including barcode text on the botto + The options should be space separated and should be followed by a "=" and + their value.
    +
    +
    getFieldSeparator() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
     
    +
    getFileBase64() - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
     
    +
    getFileName() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    getFiletype() - Method in class com.cloudofficeprint.Resources.Resource
    +
     
    +
    getFirstName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getFontBold() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getFontItalic() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getFontStrike() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFontSubscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFontSuperscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFontUnderline() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getFormat() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    getFormat() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
     
    +
    getFormatCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getFormData() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
     
    +
    getGrid() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getHeaders() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getHeightLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getHigh() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    getHighlightColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getHost() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    getHTML() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
     
    +
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getIdentifyFormFields() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    If it is set to true Cloud Office Print tries to identify the for + fields and fills them in.
    +
    +
    getImage() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    getImages() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
     
    +
    getItalic() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    getItalic() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getItalic() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getJobName() - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyle
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    +
    No color needed for stockseries.
    +
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.URLQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.FootNote
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Formula
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Freeze
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HTML
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PageBreak
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Property
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Raw
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    +
    Don't use.
    +
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Command
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getJsonArray() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    +
    To get raw json array.
    +
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
     
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
     
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    getJSONForPost() - Method in class com.cloudofficeprint.Server.Command
    +
     
    +
    getJSONForPre() - Method in class com.cloudofficeprint.Server.Command
    +
     
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
     
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
     
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Resource
    +
    +
    Needs to be used to get the JSON of a resource for a secondary file (file to + prepend, to append, to insert or subtemplate), because their JSON has a + different format then for a template.
    +
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.ServerResource
    +
     
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.URLResource
    +
     
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
     
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
     
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Resource
    +
    +
    Needs to be called to get the JSON of a resource for a template.
    +
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.ServerResource
    +
     
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.URLResource
    +
     
    +
    getKeyID() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
     
    +
    getLandscape() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    getLandscape() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
     
    +
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    getLegendPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getLegendStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getLineseries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    +
     
    +
    getLineStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    getLineThickness() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    getLinkUrl() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getLocation() - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    getLockForm() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getLoggingInfo() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    When the Cloud Office Print server is started with --enable_printlog, it will + create a file on the server called server_printjob.log.
    +
    +
    getLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getLogoBackGroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getLongitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
     
    +
    getLow() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    getMajorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getMajorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getMax() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getMaxHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    getMerge() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to set whether to return a zip file of multiple output.
    +
    +
    getMergeMakingEven() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getMessageForSupport() - Method in exception com.cloudofficeprint.COPException
    +
     
    +
    getMethod() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
     
    +
    getMimetype() - Method in class com.cloudofficeprint.Response
    +
     
    +
    getMimeType() - Method in class com.cloudofficeprint.Resources.Resource
    +
     
    +
    getMimeType(String) - Static method in class com.cloudofficeprint.Mimetype
    +
    +
    Return the mimetype given the extension of a file.
    +
    +
    getMimetypeFromContentType(String) - Static method in class com.cloudofficeprint.Mimetype
    +
    +
    Extract the mimetype from the Content-Type argument in an HTTP reponse.
    +
    +
    getMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to server-url/supported_template_mimetypes.
    +
    +
    getMin() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getMinorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getMinorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getModifiedChartDicts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
     
    +
    getModifyPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getName() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    getName() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
     
    +
    getNickname() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getNotes() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getOfficeToPdfVersion() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to server-url/officetopdf.
    +
    +
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    +
    Note: Decimal value between 0 and 1.
    +
    +
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getOpen() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    getOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
     
    +
    getOrientation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getOutput() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getOutputMimeTypesSupported(String) - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to + server-url/supported_output_mimetypes?template=extension.
    +
    +
    getPaddingHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getPaddingWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getPageFormat() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    getPageHeight() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    getPageMargin() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    getPageNumber() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    getPageWidth() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Only supported when converting HTML to PDF.
    +
    +
    getPassword() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    getPassword() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
     
    +
    getPassword() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getPasswordProtectionFlag() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    More info on the flag bits on + https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
    +
    +
    getPath() - Method in class com.cloudofficeprint.Resources.ServerResource
    +
     
    +
    getPDFOptions() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getPiBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPiColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
     
    +
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
     
    +
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
     
    +
    getPiTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPiTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPoBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPort() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    getPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Note that not all options might be available for specific charts.
    +
    +
    getPostConversion() - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    getPostMerge() - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    getPostProcess() - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    getPostProcessDeleteDelay() - Method in class com.cloudofficeprint.Server.Commands
    +
    +
    Cloud Office Print deletes the file provided to the command directly after + executing it.
    +
    +
    getPostProcessReturn() - Method in class com.cloudofficeprint.Server.Commands
    +
    +
    If you are already doing something with the file and don't want it to be + returned in the response set this to true.
    +
    +
    getPoTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPoTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getPreConversion() - Method in class com.cloudofficeprint.Server.Commands
    +
     
    +
    getPrependFiles() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getPrependMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to server-url/supported_prepend_mimetypes.
    +
    +
    getPrinter() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Cloud Office Print supports to print directly to an IP Printer.
    +
    +
    getProxyIP() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getProxyPort() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getQrErrorCorrectionLevel() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    +
    Only for QR codes.
    +
    +
    getQuery() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    +
     
    +
    getQuietZone() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getQuietZoneColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getReadPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getRemoveLastPage() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to remove last page from output.
    +
    +
    getRequester() - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    getResponse() - Method in class com.cloudofficeprint.PrintJob
    +
    +
    For getting to response after asynchronous execution.
    +
    +
    getResponseCode() - Method in exception com.cloudofficeprint.COPException
    +
     
    +
    getReturnOutput() - Method in class com.cloudofficeprint.Server.Printer
    +
    +
    You can specify to whether to return output from server
    +
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getRoundedCorners() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getRows() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
     
    +
    getSecondaryCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
     
    +
    getSecretKey() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
     
    +
    getSeparator() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
     
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
     
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
     
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
     
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
     
    +
    getServer() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getServerDirectory() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getService() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
     
    +
    getSheetNames() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
     
    +
    getShowCategoryName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getShowDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    +
    Default true for pie/pie3d and doughnut.
    +
    +
    getShowLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getShowLegendKey() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getShowPercentage() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getShowSeriesName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getShowValue() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getSignCertificate() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to sign the output PDF if the output pdf has a signature + field.
    +
    +
    getSignCertificateWithPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to sign certificate with password.
    +
    +
    getSizes() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
     
    +
    getSmooth() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    getSofficeVersionServer() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to server-url/soffice.
    +
    +
    getSplit() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    the output PDF should be split into one file per page in a zip file.
    +
    +
    getStackedColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
     
    +
    getStartDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
     
    +
    getStep() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    getStep() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
     
    +
    getStrikethrough() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getSubject() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
     
    +
    getSubTemplates() - Method in class com.cloudofficeprint.PrintJob
    +
    +
    Subtemplates are only accessible (in docx).
    +
    +
    getSymbol() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    getSymbolSize() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    getTabLeader() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
     
    +
    getTargetUrl() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getTemplate() - Method in class com.cloudofficeprint.PrintJob
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.FootNote
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Formula
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Freeze
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HTML
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Labels
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SlideLoop
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PageBreak
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Property
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Raw
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    +
    Don't use.
    +
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    +
    +
    Cannot be used for a resource.
    +
    +
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
    +
    Cannot be used for a resource.
    +
    +
    getText() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
     
    +
    getTextDelimiter() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
     
    +
    getTextHAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getTextRotation() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getTexts() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
     
    +
    getTextVAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
     
    +
    getTimingColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getTimingHColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getTimingVColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getTitleRotation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getToken() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
     
    +
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getType() - Method in class com.cloudofficeprint.Output.Output
    +
     
    +
    getType() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    +
     
    +
    getUnderline() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
     
    +
    getUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
     
    +
    getUnit() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
     
    +
    getURID() - Method in exception com.cloudofficeprint.COPException
    +
     
    +
    getUrl() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
    +
    Note : In Excel you can hyperlink to a cell.
    +
    +
    getUrl() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getURL() - Method in class com.cloudofficeprint.Resources.URLResource
    +
     
    +
    getUserMessage() - Method in exception com.cloudofficeprint.COPException
    +
     
    +
    getUsername() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
     
    +
    getUsername() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getValue() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
     
    +
    getValues() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getValuesStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
     
    +
    getVersion() - Method in class com.cloudofficeprint.Server.Printer
    +
     
    +
    getVolume() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
     
    +
    getWatermark() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to set your own watermark.
    +
    +
    getWatermarkColor() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to assign color of your watermark.
    +
    +
    getWatermarkFont() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to assign font to your watermark.
    +
    +
    getWatermarkOpacity() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to set opacity of your watermark.
    +
    +
    getWatermarkSize() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    It is possible to set size of your watermark.
    +
    +
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    +
    The width manipulation is available from Cloud Office Print 20.2.
    +
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
     
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
     
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
     
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
     
    +
    getWidthLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getWifiHidden() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
     
    +
    getWrapText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    +
    Note : only supports 5 of the Microsoft Word Text Wrapping options.
    +
    +
    getX() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    getX() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    getX2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getXAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getXData() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getXTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getY() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    getY() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
     
    +
    getY2AxisOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getY2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getYAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
     
    +
    getYData() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    getYTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
     
    +
    GraphQLResource - Class in com.cloudofficeprint.Resources
    +
    +
    Class for working with a GraphQL endpoint as Resource.
    +
    +
    GraphQLResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.GraphQLResource
    +
    +
    Resource from a GraphQL endpoint.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-8.html b/cloudofficeprint/build/docs/javadoc/index-files/index-8.html new file mode 100644 index 00000000..96874754 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-8.html @@ -0,0 +1,108 @@ + + + + + +H-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    H

    +
    +
    HTML - Class in com.cloudofficeprint.RenderElements
    +
    +
    Only supported in Word, Excel, HTML and Md templates.
    +
    +
    HTML(String, String) - Constructor for class com.cloudofficeprint.RenderElements.HTML
    +
    +
    HTML text can be rendered and put in templates.
    +
    +
    HTMLResource - Class in com.cloudofficeprint.Resources
    +
    +
    Child class of Resource.
    +
    +
    HTMLResource(String, Boolean) - Constructor for class com.cloudofficeprint.Resources.HTMLResource
    +
    +
    Constructor for this class.
    +
    +
    HyperLink - Class in com.cloudofficeprint.RenderElements
    +
    +
    Class representing a hyperlink for templates.
    +
    +
    HyperLink(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.HyperLink
    +
    +
    Element to insert a footnote in a template.
    +
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-9.html b/cloudofficeprint/build/docs/javadoc/index-files/index-9.html new file mode 100644 index 00000000..5829b501 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/index-files/index-9.html @@ -0,0 +1,127 @@ + + + + + +I-Index + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    I

    +
    +
    Image - Class in com.cloudofficeprint.RenderElements.Images
    +
     
    +
    Image() - Constructor for class com.cloudofficeprint.RenderElements.Images.Image
    +
     
    +
    ImageBase64 - Class in com.cloudofficeprint.RenderElements.Images
    +
    +
    Represents an image to insert in a template with a base64-encoded string as + source.
    +
    +
    ImageBase64(String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    +
    +
    This object represent an image to insert in the template.
    +
    +
    ImageBase64(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    +
    +
    This object represent an image to insert in the template.
    +
    +
    ImageUrl - Class in com.cloudofficeprint.RenderElements.Images
    +
    +
    Represents an image to insert in a template with a URL string as source.
    +
    +
    ImageUrl(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageUrl
    +
    +
    This object represent an image to insert in the template.
    +
    +
    InlineDataLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    +
    Horizontal table looping for Word, Excel and CSV templates.
    +
    +
    InlineDataLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
    +
    +
    Horizontal table looping for Word, Excel and CSV templates.
    +
    +
    isIppPrinterReachable() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a Get request to check the status of ipp-printer provided with location and version of url
    +
    +
    isReachable() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a GET request to server-url/marco and checks if the answer is polo.
    +
    +
    isVerbose() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/index.html b/cloudofficeprint/build/docs/javadoc/index.html index c5a4342d..0d64366d 100644 --- a/cloudofficeprint/build/docs/javadoc/index.html +++ b/cloudofficeprint/build/docs/javadoc/index.html @@ -2,185 +2,143 @@ - -Overview (cloudofficeprint 21.2.1 API) + +Overview + + + - + + - - - - - + + - - -
    +
    + -
    -

    cloudofficeprint 21.2.1 API

    -
    +
    -
    - - +
    +
    Packages 
    + + - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + +
    Packages
    PackageDescriptionPackageDescription
    com.cloudofficeprint 
    com.cloudofficeprint 
    com.cloudofficeprint.Examples.GeneralExamples 
    com.cloudofficeprint.Examples.GeneralExamples 
    com.cloudofficeprint.Examples.MultipleRequestMerge 
    com.cloudofficeprint.Examples.MultipleRequestMerge 
    com.cloudofficeprint.Examples.OrderConfirmation 
    com.cloudofficeprint.Examples.OrderConfirmation 
    com.cloudofficeprint.Examples.PDFSignature 
    com.cloudofficeprint.Examples.PDFSignature 
    com.cloudofficeprint.Examples.SolarSystem 
    com.cloudofficeprint.Examples.SolarSystem 
    com.cloudofficeprint.Examples.SpaceX 
    com.cloudofficeprint.Examples.SpaceX 
    com.cloudofficeprint.Output 
    com.cloudofficeprint.Output 
    com.cloudofficeprint.Output.CloudAcessToken 
    com.cloudofficeprint.Output.CloudAcessToken 
    com.cloudofficeprint.RenderElements 
    com.cloudofficeprint.RenderElements 
    com.cloudofficeprint.RenderElements.Cells 
    com.cloudofficeprint.RenderElements.Cells 
    com.cloudofficeprint.RenderElements.Charts 
    com.cloudofficeprint.RenderElements.Charts 
    com.cloudofficeprint.RenderElements.Charts.Charts 
    com.cloudofficeprint.RenderElements.Charts.Charts 
    com.cloudofficeprint.RenderElements.Charts.Series 
    com.cloudofficeprint.RenderElements.Charts.Series 
    com.cloudofficeprint.RenderElements.Codes 
    com.cloudofficeprint.RenderElements.Codes 
    com.cloudofficeprint.RenderElements.Images 
    com.cloudofficeprint.RenderElements.Images 
    com.cloudofficeprint.RenderElements.Loops 
    com.cloudofficeprint.RenderElements.Loops 
    com.cloudofficeprint.RenderElements.PDF 
    com.cloudofficeprint.RenderElements.PDF 
    com.cloudofficeprint.Resources 
    com.cloudofficeprint.Resources 
    com.cloudofficeprint.Server 
    com.cloudofficeprint.Server 
    @@ -189,47 +147,24 @@

    cloudofficeprint 21.2.1 API

    +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/jquery-ui.overrides.css b/cloudofficeprint/build/docs/javadoc/jquery-ui.overrides.css new file mode 100644 index 00000000..1abff952 --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/jquery-ui.overrides.css @@ -0,0 +1,34 @@ +/* + * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. + * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + */ + +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active, +a.ui-button:active, +.ui-button:active, +.ui-button.ui-state-active:hover { + /* Overrides the color of selection used in jQuery UI */ + background: #F8981D; +} diff --git a/cloudofficeprint/build/docs/javadoc/member-search-index.js b/cloudofficeprint/build/docs/javadoc/member-search-index.js index 78cb0ea8..9369b95b 100644 --- a/cloudofficeprint/build/docs/javadoc/member-search-index.js +++ b/cloudofficeprint/build/docs/javadoc/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addAllRenderElements(ElementCollection)","url":"addAllRenderElements(com.cloudofficeprint.RenderElements.ElementCollection)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addElement(RenderElement)","url":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"addElement(RenderElement)","url":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addFromDict(Hashtable)","url":"addFromDict(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"AreaChart(String, ChartOptions, AreaSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"AreaSeries(String, String[], String[], String, Float)","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Float)"},{"p":"com.cloudofficeprint","c":"Response","l":"asString()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"AWSToken(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"BarChart(String, ChartOptions, BarSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"BarCode(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarSeries","l":"BarSeries(String, String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"BarStackedChart(String, ChartOptions, BarStackedSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedPercentSeries","l":"BarStackedPercentSeries(String, String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedSeries","l":"BarStackedSeries(String, String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"BubbleChart(String, ChartOptions, BubbleSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"BubbleSeries(String, String[], String[], Integer[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"CellSpan(String, String, int, int)","url":"%3Cinit%3E(java.lang.String,java.lang.String,int,int)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"CellStyle()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"CellStyleDocxPpt(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"CellStyleXlsx()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"Chart()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"ChartAxisOptions()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"ChartDateOptions(String, String, String, Integer)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"chartExample(String)","url":"chartExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"ChartOptions()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"ChartTextStyle(Boolean, Boolean, String, String)","url":"%3Cinit%3E(java.lang.Boolean,java.lang.Boolean,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"CloudAccessToken()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"Code(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"ColumnChart(String, ChartOptions, ColumnSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnSeries","l":"ColumnSeries(String, String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedPercentSeries","l":"ColumnStackedPercentSeries(String, String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedSeries","l":"ColumnStackedSeries(String, String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"CombinedChart(String, ChartOptions, Chart[], Chart[])","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Charts.Chart[],com.cloudofficeprint.RenderElements.Charts.Charts.Chart[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"combinedChartExample(String)","url":"combinedChartExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"Command(String, JsonObject)","url":"%3Cinit%3E(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"Commands()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"COPChart(String, JsonArray, HashMap, String, String, String, String, String, COPChartDateOptions)","url":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray,java.util.HashMap,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"COPChartDateOptions(String, String, Integer)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"COPException","l":"COPException(int, String)","url":"%3Cinit%3E(int,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"COPPDFTextAndImageExample(String)","url":"COPPDFTextAndImageExample(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"CsvOptions()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"D3Code(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"DoughnutChart(String, ChartOptions, PieSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint","c":"Response","l":"downloadLocally(String)","url":"downloadLocally(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String, ArrayList)","url":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"EmailQRCode(String, String, String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"EventQRCode(String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"Examples()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"execute()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"ExternalResource(String, String, String, JsonArray, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"FootNote(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"Formula(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"FTPToken(String, Boolean, int, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.Boolean,int,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"GeolocationQRCode(String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getAccessToken()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getAltitude()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getAltText()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getAPIKey()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getAppendFiles()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getArgs()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getAuth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackGroundImage()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackgroundImageAlpha()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getBarSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getBarStackedPercentSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getBarStackedSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBcc()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getBirthday()"},{"p":"com.cloudofficeprint","c":"Response","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBorder()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottom()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottomColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonal()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalDirection()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeft()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeftColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRightColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTop()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTopColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getCc()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellBackground()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellHidden()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellLocked()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getCellStyle()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getCharacterSet()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getCharts()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getClose()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getCode()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getColors()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getColumns()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getColumnStackedPercentageSeries()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getCommand()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCommands()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactPrimary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactSecondary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactTertiary()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getConverter()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getCopChartDateOptions()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getCopies()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getCopRemoteDebug()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCOPVersionOnServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getCsvOptions()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getData()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getData()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getDataSource()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getDepth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getDotScale()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getEncoding()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getEncryption()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getEndDate()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getEndpoint()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getEvenPage()"},{"p":"com.cloudofficeprint","c":"Response","l":"getExt()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getExtension(String)","url":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getExtension(String)","url":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getExternalResource()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getExtraOptions()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getFieldSeparator()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getFileBase64()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getFileName()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getFiletype()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getFirstName()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontBold()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontItalic()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontStrike()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSubscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSuperscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getFormatCode()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getFormData()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getGrid()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getHeaders()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getHeightLogo()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getHigh()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getHighlightColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getHost()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getHTML()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getIdentifier()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getIdentifyFormFields()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getImage()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getImages()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getItalic()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJobName()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getJson()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJsonArray()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPost()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPre()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getKeyID()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLandscape()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getLandscape()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendPosition()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getLineseries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineThickness()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getLinkUrl()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getLocation()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLockForm()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getLoggingInfo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogoBackGroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getLongitude()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getLow()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMax()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMerge()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMergeMakingEven()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getMessageForSupport()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getMethod()"},{"p":"com.cloudofficeprint","c":"Response","l":"getMimetype()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getMimeType()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimeType(String)","url":"getMimeType(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimetypeFromContentType(String)","url":"getMimetypeFromContentType(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getMimeTypesSupported()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMin()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getModifiedChartDicts()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getModifyPassword()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNickname()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNotes()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOfficeToPdfVersion()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getOpen()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getOptions()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getOrientation()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getOutput()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOutputMimeTypesSupported(String)","url":"getOutputMimeTypesSupported(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageFormat()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageHeight()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageMargin()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getPageNumber()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageWidth()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPassword()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getPassword()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPassword()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPasswordProtectionFlag()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getPath()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getPDFOptions()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTRColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPort()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getPosition()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostConversion()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostMerge()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcess()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessDeleteDelay()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessReturn()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTRColor()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPreConversion()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getPrependFiles()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrependMimeTypesSupported()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrinter()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyIP()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyPort()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getQrErrorCorrectionLevel()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getQuery()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZone()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZoneColor()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getReadPassword()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getRequester()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getResponse()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getResponseCode()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getRoundedCorners()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getRows()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getSecondaryCharts()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getSecretKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getSeparator()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getSeries()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getServerDirectory()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getService()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getSheetNames()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowCategoryName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowDataLabels()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegend()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegendKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowPercentage()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowSeriesName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowValue()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSignCertificate()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getSizes()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSmooth()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getSofficeVersionServer()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSplit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getStackedColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getStartDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getStrikethrough()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getSubject()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getSubTemplates()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbol()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbolSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTabLeader()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTargetUrl()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getTemplate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getText()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getTextDelimiter()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextHAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTexts()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextVAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingHColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingVColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getToken()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTransparency()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTransparency()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getURID()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getUrl()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUrl()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getURL()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getUserMessage()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getUsername()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUsername()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getValue()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValues()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValuesStyle()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getVersion()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getVolume()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getWidthLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getWifiHidden()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWrapText()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getX2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getXAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getY2AxisOptions()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getY2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getYAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYTitle()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"GraphQLResource(String, String, String, JsonArray, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"HTML(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"HTMLResource(String, Boolean)","url":"%3Cinit%3E(java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"HyperLink(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"Image()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageUrl","l":"ImageUrl(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"InlineDataLoop(String, ArrayList)","url":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isReachable()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isVerbose()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"Labels(String, ArrayList)","url":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"LineChart(String, ChartOptions, LineSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.LineSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"LineSeries(String, String[], String[], String, Boolean, String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localJson(String)","url":"localJson(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplate(String)","url":"localTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplateAsync(String)","url":"localTemplateAsync(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, ArrayList)","url":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, RenderElement[])","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"loopExample(String)","url":"loopExample(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"Main()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"main(String, String)","url":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"main(String, String)","url":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"main(String)","url":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"main(String)","url":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"main(String)","url":"main(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"main(String[])","url":"main(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"makeCollectionFromJson(String, JsonObject)","url":"makeCollectionFromJson(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"MarkDownContent(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"MECardQRCode(String, String, String, String, String, String, String, String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"Mimetype()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"MultipleRequestMergeExample()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"OAuth2Token(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"OrderConfirmationExample()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken,java.lang.String,com.cloudofficeprint.Output.PDFOptions,com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"PageBreak(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"PDFFormData(HashMap)","url":"%3Cinit%3E(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer, String)","url":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer)","url":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"PDFImages(PDFImage[])","url":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"PDFInsertObject(Integer, Integer, Integer)","url":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"PDFOptions()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"PDFSignatureExample()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"PDFText(Integer, Integer, Integer, String)","url":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"PDFTexts(PDFText[])","url":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"Pie3DChart(String, ChartOptions, PieSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"PieChart(String, ChartOptions, PieSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"PieSeries(String, String[], String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"prependAppendSubTemplatesExample(String)","url":"prependAppendSubTemplatesExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"Printer(String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(ExternalResource, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","url":"%3Cinit%3E(com.cloudofficeprint.Resources.ExternalResource,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(Hashtable, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","url":"%3Cinit%3E(java.util.Hashtable,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, int)","url":"%3Cinit%3E(java.lang.String,int)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"QRCode(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"qrCodeExample(String)","url":"qrCodeExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"RadarChart(String, ChartOptions, RadarSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"RadarSeries","l":"RadarSeries(String, String[], String[], String, Boolean, String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"Raw(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"RawJsonArray(String, JsonArray)","url":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"readJson(String)","url":"readJson(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeDataLabels()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElement(RenderElement)","url":"removeElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElementByName(String)","url":"removeElementByName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeLegend()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"RenderElement()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"replaceKeyRecursive(JsonObject, String, String)","url":"replaceKeyRecursive(com.google.gson.JsonObject,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"Resource()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"Response","l":"Response(String, String, byte[])","url":"%3Cinit%3E(java.lang.String,java.lang.String,byte[])"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"RESTResource(String, String, String, String, JsonArray, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"RightToLeft(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"run()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"ScatterChart(String, ChartOptions, ScatterSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ScatterSeries","l":"ScatterSeries(String, String[], String[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendGETRequest(String)","url":"sendGETRequest(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendPOSTRequest(JsonObject)","url":"sendPOSTRequest(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String, String, Printer, Commands, JsonObject, String, Integer)","url":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.Server.Printer,com.cloudofficeprint.Server.Commands,com.google.gson.JsonObject,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"ServerResource(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setAccessToken(CloudAccessToken)","url":"setAccessToken(com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setAltitude(String)","url":"setAltitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setAltText(String)","url":"setAltText(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setAPIKey(String)","url":"setAPIKey(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setAppendFiles(Resource[])","url":"setAppendFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setArgs(JsonObject)","url":"setArgs(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setAuth(String)","url":"setAuth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColor(Boolean)","url":"setAutoColor(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorDark(String)","url":"setAutoColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorLight(String)","url":"setAutoColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setBackgroundColor(String)","url":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundColor(String)","url":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setBackgroundColor(String)","url":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImage(String)","url":"setBackGroundImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackgroundImageAlpha(Double)","url":"setBackgroundImageAlpha(java.lang.Double)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImageFromLocalFile(String)","url":"setBackGroundImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundOpacity(Integer)","url":"setBackgroundOpacity(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"setBarSeries(ArrayList)","url":"setBarSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"setBarStackedPercentSeries(ArrayList)","url":"setBarStackedPercentSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"setBarStackedSeries(ArrayList)","url":"setBarStackedSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBcc(String)","url":"setBcc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setBirthday(String)","url":"setBirthday(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setBody(byte[])"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBody(String)","url":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"setBody(String)","url":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setBody(String)","url":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setBold(Boolean)","url":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setBold(Boolean)","url":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setBold(Boolean)","url":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBorder(Boolean)","url":"setBorder(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottom(String)","url":"setBorderBottom(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottomColor(String)","url":"setBorderBottomColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonal(String)","url":"setBorderDiagonal(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalColor(String)","url":"setBorderDiagonalColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalDirection(String)","url":"setBorderDiagonalDirection(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeft(String)","url":"setBorderLeft(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeftColor(String)","url":"setBorderLeftColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRight(String)","url":"setBorderRight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRightColor(String)","url":"setBorderRightColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTop(String)","url":"setBorderTop(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTopColor(String)","url":"setBorderTopColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setCc(String)","url":"setCc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellBackground(String)","url":"setCellBackground(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellHidden(Boolean)","url":"setCellHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellLocked(Boolean)","url":"setCellLocked(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"setCellStyle(CellStyle)","url":"setCellStyle(com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setCharacterSet(Integer)","url":"setCharacterSet(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setCharts(ArrayList)","url":"setCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setClose(Integer[])","url":"setClose(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setCode(String)","url":"setCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setColor(String)","url":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setColor(String)","url":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setColor(String)","url":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setColor(String)","url":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorDark(String)","url":"setColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorLight(String)","url":"setColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"setColors(String[])","url":"setColors(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setColumns(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"setColumnSeries(ArrayList)","url":"setColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"setColumnStackedPercentageSeries(ArrayList)","url":"setColumnStackedPercentageSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setCommand(String)","url":"setCommand(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setCommands(Commands)","url":"setCommands(com.cloudofficeprint.Server.Commands)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactPrimary(String)","url":"setContactPrimary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactSecondary(String)","url":"setContactSecondary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactTertiary(String)","url":"setContactTertiary(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setConverter(String)","url":"setConverter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setCopChartDateOptions(COPChartDateOptions)","url":"setCopChartDateOptions(com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setCopies(Integer)","url":"setCopies(java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setCopRemoteDebug(Boolean)","url":"setCopRemoteDebug(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setCsvOptions(CsvOptions)","url":"setCsvOptions(com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setData(Hashtable)","url":"setData(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"setData(String)","url":"setData(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String)","url":"setDataLabels(java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setDataSource(String)","url":"setDataSource(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setDateOptions(ChartDateOptions)","url":"setDateOptions(com.cloudofficeprint.RenderElements.Charts.ChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setDepth(int)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setDotScale(Integer)","url":"setDotScale(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"setElements(ArrayList)","url":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"setElements(ArrayList)","url":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setEmail(String)","url":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setEncoding(String)","url":"setEncoding(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setEncryption(String)","url":"setEncryption(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setEndDate(String)","url":"setEndDate(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setEndpoint(String)","url":"setEndpoint(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setEvenPage(Boolean)","url":"setEvenPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"Response","l":"setExt(String)","url":"setExt(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setExternalResource(ExternalResource)","url":"setExternalResource(com.cloudofficeprint.Resources.ExternalResource)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setExtraOptions(String)","url":"setExtraOptions(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setFieldSeparator(String)","url":"setFieldSeparator(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileBase64(String)","url":"setFileBase64(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"setFileFromLocalFile(String)","url":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileFromLocalFile(String)","url":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setFileName(String)","url":"setFileName(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setFiletype(String)","url":"setFiletype(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setFirstName(String)","url":"setFirstName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFont(String)","url":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFont(String)","url":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setFont(String)","url":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFont(String)","url":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setFont(String)","url":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFont(String)","url":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontBold(Boolean)","url":"setFontBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontColor(String)","url":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontColor(String)","url":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontColor(String)","url":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontColor(String)","url":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontItalic(Boolean)","url":"setFontItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontSize(Integer)","url":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSize(Integer)","url":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontSize(Integer)","url":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontSize(String)","url":"setFontSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontStrike(Boolean)","url":"setFontStrike(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSubscript(Boolean)","url":"setFontSubscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSuperscript(Boolean)","url":"setFontSuperscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontUnderline(Boolean)","url":"setFontUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setFormat(String)","url":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setFormat(String)","url":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setFormatCode(String)","url":"setFormatCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"setFormData(HashMap)","url":"setFormData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setGrid(Boolean)","url":"setGrid(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setHeaders(JsonArray)","url":"setHeaders(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setHeight(Integer)","url":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setHeight(Integer)","url":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setHeight(Integer)","url":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setHeight(Integer)","url":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setHeight(String)","url":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setHeight(String)","url":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setHeightLogo(Integer)","url":"setHeightLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setHigh(Integer[])","url":"setHigh(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setHighlightColor(String)","url":"setHighlightColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setHost(String)","url":"setHost(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setIdentifyFormFields(Boolean)","url":"setIdentifyFormFields(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImage(String)","url":"setImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImageFromLocalFile(String)","url":"setImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"setImages(PDFImage[])","url":"setImages(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setItalic(Boolean)","url":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setItalic(Boolean)","url":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setItalic(Boolean)","url":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setJobName(String)","url":"setJobName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"setJsonArray(JsonArray)","url":"setJsonArray(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setKeyID(String)","url":"setKeyID(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLandscape(Boolean)","url":"setLandscape(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setLastName(String)","url":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setLastName(String)","url":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setLegend(String, ChartTextStyle)","url":"setLegend(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"setLineseries(ArrayList)","url":"setLineseries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineStyle(String)","url":"setLineStyle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineThickness(String)","url":"setLineThickness(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setLinkUrl(String)","url":"setLinkUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setLocation(String)","url":"setLocation(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLockForm(Boolean)","url":"setLockForm(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setLoggingInfo(JsonObject)","url":"setLoggingInfo(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogo(String)","url":"setLogo(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoBackGroundColor(String)","url":"setLogoBackGroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoFromLocalFile(String)","url":"setLogoFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setLongitude(String)","url":"setLongitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setLow(Integer[])","url":"setLow(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorGridLines(Boolean)","url":"setMajorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorUnit(Float)","url":"setMajorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMax(Float)","url":"setMax(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxHeight(Integer)","url":"setMaxHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxWidth(Integer)","url":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setMaxWidth(Integer)","url":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMerge(Boolean)","url":"setMerge(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMergeMakingEven(Boolean)","url":"setMergeMakingEven(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setMethod(String)","url":"setMethod(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setMimetype(String)","url":"setMimetype(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setMimeType(String)","url":"setMimeType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMin(Float)","url":"setMin(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorGridLines(Boolean)","url":"setMinorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorUnit(Float)","url":"setMinorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setModifyPassword(String)","url":"setModifyPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setName(String)","url":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNickname(String)","url":"setNickname(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNotes(String)","url":"setNotes(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setOpacity(Float)","url":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setOpacity(Float)","url":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setOpen(Integer[])","url":"setOpen(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"setOptions(ChartOptions)","url":"setOptions(com.cloudofficeprint.RenderElements.Charts.ChartOptions)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setOrientation(String)","url":"setOrientation(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setOutput(Output)","url":"setOutput(com.cloudofficeprint.Output.Output)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingHeight(Integer)","url":"setPaddingHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingWidth(Integer)","url":"setPaddingWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageFormat(String)","url":"setPageFormat(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageHeight(String)","url":"setPageHeight(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setPageNumber(Integer)","url":"setPageNumber(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageWidth(String)","url":"setPageWidth(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPassword(String)","url":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setPassword(String)","url":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPassword(String)","url":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPasswordProtectionFlag(Integer)","url":"setPasswordProtectionFlag(java.lang.Integer)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"setPath(String)","url":"setPath(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setPDFOptions(PDFOptions)","url":"setPDFOptions(com.cloudofficeprint.Output.PDFOptions)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiBLColor(String)","url":"setPiBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiColor(String)","url":"setPiColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"setPieSeries(ArrayList)","url":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"setPieSeries(ArrayList)","url":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"setPieSeries(ArrayList)","url":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTLColor(String)","url":"setPiTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTRColor(String)","url":"setPiTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoBLColor(String)","url":"setPoBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoColor(String)","url":"setPoColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPort(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostConversion(Command)","url":"setPostConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostMerge(Command)","url":"setPostMerge(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcess(Command)","url":"setPostProcess(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessDeleteDelay(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessReturn(Boolean)","url":"setPostProcessReturn(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTLColor(String)","url":"setPoTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTRColor(String)","url":"setPoTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPreConversion(Command)","url":"setPreConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setPrependFiles(Resource[])","url":"setPrependFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPrinter(Printer)","url":"setPrinter(com.cloudofficeprint.Server.Printer)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyIP(String)","url":"setProxyIP(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyPort(Integer)","url":"setProxyPort(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setQrErrorCorrectionLevel(String)","url":"setQrErrorCorrectionLevel(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"setQuery(String)","url":"setQuery(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZone(Integer)","url":"setQuietZone(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZoneColor(String)","url":"setQuietZoneColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setReadPassword(String)","url":"setReadPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setRequester(String)","url":"setRequester(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setResponse(Response)","url":"setResponse(com.cloudofficeprint.Response)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setRotation(Integer)","url":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setRotation(Integer)","url":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setRotation(Integer)","url":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setRotation(Integer)","url":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setRotation(Integer)","url":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setRoundedCorners(Boolean)","url":"setRoundedCorners(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setRows(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setSecondaryCharts(ArrayList)","url":"setSecondaryCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setSecretKey(String)","url":"setSecretKey(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"setSeries(ArrayList)","url":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"setSeries(ArrayList)","url":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"setSeries(ArrayList)","url":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"setSeries(ArrayList)","url":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"setSeries(ArrayList)","url":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setServer(Server)","url":"setServer(com.cloudofficeprint.Server.Server)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setServerDirectory(String)","url":"setServerDirectory(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"setService(String)","url":"setService(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"setSheetNames(ArrayList)","url":"setSheetNames(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSignCertificate(String)","url":"setSignCertificate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"setSizes(Integer[])","url":"setSizes(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSmooth(Boolean)","url":"setSmooth(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSplit(Boolean)","url":"setSplit(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"setStackedColumnSeries(ArrayList)","url":"setStackedColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setStartDate(String)","url":"setStartDate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setStep(Integer)","url":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setStep(Integer)","url":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setStrikethrough(Boolean)","url":"setStrikethrough(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setSubject(String)","url":"setSubject(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setSubTemplates(Hashtable)","url":"setSubTemplates(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbol(String)","url":"setSymbol(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbolSize(String)","url":"setSymbolSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setTabLeader(String)","url":"setTabLeader(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTargetUrl(String)","url":"setTargetUrl(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setTemplate(Resource)","url":"setTemplate(com.cloudofficeprint.Resources.Resource)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setText(String)","url":"setText(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setTextDelimiter(String)","url":"setTextDelimiter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextHAlignment(String)","url":"setTextHAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextRotation(Integer)","url":"setTextRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"setTexts(PDFText[])","url":"setTexts(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextVAlignment(String)","url":"setTextVAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingColor(String)","url":"setTimingColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingHColor(String)","url":"setTimingHColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingVColor(String)","url":"setTimingVColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setTitle(String)","url":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitle(String)","url":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitle(String)","url":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleRotation(Integer)","url":"setTitleRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleStyle(ChartTextStyle)","url":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitleStyle(ChartTextStyle)","url":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"setToken(String)","url":"setToken(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setTransparency(String)","url":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTransparency(String)","url":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setType(String)","url":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"setType(String)","url":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setUnderline(Boolean)","url":"setUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setUnit(String)","url":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setUnit(String)","url":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"setUrl(String)","url":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUrl(String)","url":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"setURL(String)","url":"setURL(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setUsername(String)","url":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUsername(String)","url":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setValue(String)","url":"setValue(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValues(Boolean)","url":"setValues(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValuesStyle(ChartTextStyle)","url":"setValuesStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setVerbose(boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setVersion(String)","url":"setVersion(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setVolume(Integer[])","url":"setVolume(java.lang.Integer[])"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermark(String)","url":"setWatermark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setWebsite(String)","url":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setWebsite(String)","url":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setWidth(Integer)","url":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setWidth(Integer)","url":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWidth(Integer)","url":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setWidth(Integer)","url":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setWidth(String)","url":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setWidth(String)","url":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setWidth(String)","url":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setWidthLogo(Integer)","url":"setWidthLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setWifiHidden(Boolean)","url":"setWifiHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWrapText(String)","url":"setWrapText(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setX(Integer)","url":"setX(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setX(String[])","url":"setX(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setX2Title(String)","url":"setX2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setXAxisOptions(ChartAxisOptions)","url":"setXAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXData(JsonArray)","url":"setXData(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXTitle(String)","url":"setXTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setY(Integer)","url":"setY(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setY(String[])","url":"setY(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setY2AxisOptions(ChartAxisOptions)","url":"setY2AxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setY2Title(String)","url":"setY2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setYAxisOptions(ChartAxisOptions)","url":"setYAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYData(HashMap)","url":"setYData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYTitle(String)","url":"setYTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, ArrayList)","url":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, HashMap)","url":"%3Cinit%3E(java.lang.String,java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, RenderElement[])","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"shortenDescription(String)","url":"shortenDescription(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"signPDF(String)","url":"signPDF(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"SlideLoop(String, ArrayList)","url":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"SMSQRCode(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"SolarSystemExample()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"SpaceXExample()","url":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"StockChart(String, ChartOptions, StockSeries...)","url":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.StockSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[])","url":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"StyledProperty(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"TableCell(String, String, CellStyle)","url":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"TableOfContents(String, String, int, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,int,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"TableRowLoop(String, ArrayList)","url":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"TelephoneNumberQRCode(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"TextBox(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"COPException","l":"toString()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"updateJson1WithJson2(JsonObject, JsonObject)","url":"updateJson1WithJson2(com.google.gson.JsonObject,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"URLQRCode(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"URLResource(String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"VCardQRCode(String, String, String, String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"Watermark(String, String)","url":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"waterMarkAndStyledProperty(String)","url":"waterMarkAndStyledProperty(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"WifiQRCode(String, String, String, String, Boolean)","url":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"withoutTemplate(String)","url":"withoutTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"XYSeries()","url":"%3Cinit%3E()"}] \ No newline at end of file +memberSearchIndex = [{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addAllRenderElements(ElementCollection)","u":"addAllRenderElements(com.cloudofficeprint.RenderElements.ElementCollection)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addElement(RenderElement)","u":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"addElement(RenderElement)","u":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addFromDict(Hashtable)","u":"addFromDict(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"AreaChart(String, ChartOptions, AreaSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"AreaSeries(String, String[], String[], String, Float)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Float)"},{"p":"com.cloudofficeprint","c":"Response","l":"asString()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"AWSToken(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"BarChart(String, ChartOptions, BarSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"BarCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarSeries","l":"BarSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"BarStackedChart(String, ChartOptions, BarStackedSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedPercentSeries","l":"BarStackedPercentSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedSeries","l":"BarStackedSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"BubbleChart(String, ChartOptions, BubbleSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"BubbleSeries(String, String[], String[], Integer[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"CellSpan(String, String, int, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"CellStyle()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"CellStyleDocxPpt(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"CellStyleXlsx()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"Chart()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"ChartAxisOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"ChartDateOptions(String, String, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"chartExample(String)","u":"chartExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"ChartOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"ChartTextStyle(Boolean, Boolean, String, String)","u":"%3Cinit%3E(java.lang.Boolean,java.lang.Boolean,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"CloudAccessToken()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"Code(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"ColumnChart(String, ChartOptions, ColumnSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnSeries","l":"ColumnSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedPercentSeries","l":"ColumnStackedPercentSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedSeries","l":"ColumnStackedSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"CombinedChart(String, ChartOptions, Chart[], Chart[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Charts.Chart[],com.cloudofficeprint.RenderElements.Charts.Charts.Chart[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"combinedChartExample(String)","u":"combinedChartExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"Command(String, JsonObject)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"Commands()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"COPChart(String, JsonArray, HashMap, String, String, String, String, String, COPChartDateOptions)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray,java.util.HashMap,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"COPChartDateOptions(String, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"COPException","l":"COPException(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"COPPDFTextAndImageExample(String)","u":"COPPDFTextAndImageExample(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"CsvOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"D3Code(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"DoughnutChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint","c":"Response","l":"downloadLocally(String)","u":"downloadLocally(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"EmailQRCode(String, String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"EventQRCode(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"Examples()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"execute()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"ExternalResource(String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"FootNote(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"Formula(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"Freeze(String, boolean)","u":"%3Cinit%3E(java.lang.String,boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"Freeze(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"FTPToken(String, Boolean, int, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.Boolean,int,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"GeolocationQRCode(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getAccessToken()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getAltitude()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getAltText()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getAPIKey()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getAppendFiles()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getArgs()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getAuth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackGroundImage()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackgroundImageAlpha()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getBarSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getBarStackedPercentSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getBarStackedSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBcc()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getBirthday()"},{"p":"com.cloudofficeprint","c":"Response","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getBooleanValue()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBorder()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottom()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottomColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonal()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalDirection()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeft()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeftColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRightColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTop()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTopColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getCc()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellBackground()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellHidden()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellLocked()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getCellStyle()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getCharacterSet()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getCharts()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getClose()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getCode()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getColors()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getColumns()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getColumnStackedPercentageSeries()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getCommand()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCommands()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactPrimary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactSecondary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactTertiary()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getConverter()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getCopChartDateOptions()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getCopies()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getCopRemoteDebug()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCOPVersionOnServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getCsvOptions()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getData()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getData()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getDataSource()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getDepth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getDotScale()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getEncoding()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getEncryption()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getEndDate()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getEndpoint()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getEvenPage()"},{"p":"com.cloudofficeprint","c":"Response","l":"getExt()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getExtension(String)","u":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getExtension(String)","u":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getExternalResource()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getExtraOptions()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getFieldSeparator()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getFileBase64()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getFileName()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getFiletype()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getFirstName()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontBold()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontItalic()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontStrike()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSubscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSuperscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getFormatCode()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getFormData()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getGrid()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getHeaders()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getHeightLogo()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getHigh()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getHighlightColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getHost()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getHTML()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getIdentifier()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getIdentifyFormFields()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getImage()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getImages()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getItalic()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJobName()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getJson()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJsonArray()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPost()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPre()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getKeyID()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLandscape()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getLandscape()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendPosition()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getLineseries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineThickness()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getLinkUrl()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getLocation()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLockForm()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getLoggingInfo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogoBackGroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getLongitude()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getLow()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMax()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMerge()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMergeMakingEven()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getMessageForSupport()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getMethod()"},{"p":"com.cloudofficeprint","c":"Response","l":"getMimetype()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getMimeType()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimeType(String)","u":"getMimeType(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimetypeFromContentType(String)","u":"getMimetypeFromContentType(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getMimeTypesSupported()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMin()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getModifiedChartDicts()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getModifyPassword()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNickname()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNotes()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOfficeToPdfVersion()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getOpen()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getOptions()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getOrientation()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getOutput()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOutputMimeTypesSupported(String)","u":"getOutputMimeTypesSupported(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageFormat()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageHeight()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageMargin()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getPageNumber()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageWidth()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPassword()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getPassword()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPassword()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPasswordProtectionFlag()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getPath()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getPDFOptions()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTRColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPort()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getPosition()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostConversion()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostMerge()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcess()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessDeleteDelay()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessReturn()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTRColor()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPreConversion()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getPrependFiles()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrependMimeTypesSupported()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrinter()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyIP()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyPort()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getQrErrorCorrectionLevel()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getQuery()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZone()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZoneColor()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getReadPassword()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getRemoveLastPage()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getRequester()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getResponse()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getResponseCode()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getReturnOutput()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getRoundedCorners()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getRows()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getSecondaryCharts()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getSecretKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getSeparator()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getSeries()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getServerDirectory()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getService()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getSheetNames()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowCategoryName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowDataLabels()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegend()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegendKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowPercentage()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowSeriesName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowValue()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSignCertificate()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSignCertificateWithPassword()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getSizes()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSmooth()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getSofficeVersionServer()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSplit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getStackedColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getStartDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getStrikethrough()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getSubject()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getSubTemplates()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbol()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbolSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTabLeader()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTargetUrl()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getTemplate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getText()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getTextDelimiter()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextHAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTexts()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextVAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingHColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingVColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getToken()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTransparency()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTransparency()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getURID()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getUrl()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUrl()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getURL()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getUserMessage()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getUsername()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUsername()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getValue()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValues()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValuesStyle()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getVersion()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getVolume()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermark()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkColor()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkFont()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkOpacity()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkSize()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getWidthLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getWifiHidden()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWrapText()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getX2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getXAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getY2AxisOptions()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getY2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getYAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYTitle()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"GraphQLResource(String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"HTML(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"HTMLResource(String, Boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"HyperLink(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"Image()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageUrl","l":"ImageUrl(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"InlineDataLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isIppPrinterReachable()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isReachable()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isVerbose()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"Labels(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"LineChart(String, ChartOptions, LineSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.LineSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"LineSeries(String, String[], String[], String, Boolean, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localJson(String)","u":"localJson(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplate(String)","u":"localTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplateAsync(String)","u":"localTemplateAsync(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, RenderElement[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"loopExample(String)","u":"loopExample(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"Main()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"main(String, String)","u":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"main(String, String)","u":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"makeCollectionFromJson(String, JsonObject)","u":"makeCollectionFromJson(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"MarkDownContent(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"MECardQRCode(String, String, String, String, String, String, String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"Mimetype()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"MultipleRequestMergeExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"OAuth2Token(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"OrderConfirmationExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken,java.lang.String,com.cloudofficeprint.Output.PDFOptions,com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"PageBreak(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"PDFFormData(HashMap)","u":"%3Cinit%3E(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer, String)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"PDFImages(PDFImage[])","u":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"PDFInsertObject(Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"PDFOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"PDFSignatureExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"PDFText(Integer, Integer, Integer, String)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"PDFTexts(PDFText[])","u":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"Pie3DChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"PieChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"PieSeries(String, String[], String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"prependAppendSubTemplatesExample(String)","u":"prependAppendSubTemplatesExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"Printer(String, String, String, String, boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,boolean)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(ExternalResource, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","u":"%3Cinit%3E(com.cloudofficeprint.Resources.ExternalResource,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(Hashtable, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","u":"%3Cinit%3E(java.util.Hashtable,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"QRCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"qrCodeExample(String)","u":"qrCodeExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"RadarChart(String, ChartOptions, RadarSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"RadarSeries","l":"RadarSeries(String, String[], String[], String, Boolean, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"Raw(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"RawJsonArray(String, JsonArray)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"readJson(String)","u":"readJson(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeDataLabels()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElement(RenderElement)","u":"removeElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElementByName(String)","u":"removeElementByName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeLegend()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"RenderElement()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"replaceKeyRecursive(JsonObject, String, String)","u":"replaceKeyRecursive(com.google.gson.JsonObject,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"Resource()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"Response","l":"Response(String, String, byte[])","u":"%3Cinit%3E(java.lang.String,java.lang.String,byte[])"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"RESTResource(String, String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"RightToLeft(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"run()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"ScatterChart(String, ChartOptions, ScatterSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ScatterSeries","l":"ScatterSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendGETRequest(String)","u":"sendGETRequest(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendPOSTRequest(JsonObject)","u":"sendPOSTRequest(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String, String, Printer, Commands, JsonObject, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.Server.Printer,com.cloudofficeprint.Server.Commands,com.google.gson.JsonObject,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"ServerResource(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setAccessToken(CloudAccessToken)","u":"setAccessToken(com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setAltitude(String)","u":"setAltitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setAltText(String)","u":"setAltText(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setAPIKey(String)","u":"setAPIKey(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setAppendFiles(Resource[])","u":"setAppendFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setArgs(JsonObject)","u":"setArgs(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setAuth(String)","u":"setAuth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColor(Boolean)","u":"setAutoColor(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorDark(String)","u":"setAutoColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorLight(String)","u":"setAutoColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImage(String)","u":"setBackGroundImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackgroundImageAlpha(Double)","u":"setBackgroundImageAlpha(java.lang.Double)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImageFromLocalFile(String)","u":"setBackGroundImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundOpacity(Integer)","u":"setBackgroundOpacity(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"setBarSeries(ArrayList)","u":"setBarSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"setBarStackedPercentSeries(ArrayList)","u":"setBarStackedPercentSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"setBarStackedSeries(ArrayList)","u":"setBarStackedSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBcc(String)","u":"setBcc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setBirthday(String)","u":"setBirthday(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setBody(byte[])"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"setBooleanValue(boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBorder(Boolean)","u":"setBorder(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottom(String)","u":"setBorderBottom(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottomColor(String)","u":"setBorderBottomColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonal(String)","u":"setBorderDiagonal(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalColor(String)","u":"setBorderDiagonalColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalDirection(String)","u":"setBorderDiagonalDirection(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeft(String)","u":"setBorderLeft(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeftColor(String)","u":"setBorderLeftColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRight(String)","u":"setBorderRight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRightColor(String)","u":"setBorderRightColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTop(String)","u":"setBorderTop(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTopColor(String)","u":"setBorderTopColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setCc(String)","u":"setCc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellBackground(String)","u":"setCellBackground(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellHidden(Boolean)","u":"setCellHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellLocked(Boolean)","u":"setCellLocked(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"setCellStyle(CellStyle)","u":"setCellStyle(com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setCharacterSet(Integer)","u":"setCharacterSet(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setCharts(ArrayList)","u":"setCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setClose(Integer[])","u":"setClose(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setCode(String)","u":"setCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorDark(String)","u":"setColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorLight(String)","u":"setColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"setColors(String[])","u":"setColors(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setColumns(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"setColumnSeries(ArrayList)","u":"setColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"setColumnStackedPercentageSeries(ArrayList)","u":"setColumnStackedPercentageSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setCommand(String)","u":"setCommand(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setCommands(Commands)","u":"setCommands(com.cloudofficeprint.Server.Commands)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactPrimary(String)","u":"setContactPrimary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactSecondary(String)","u":"setContactSecondary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactTertiary(String)","u":"setContactTertiary(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setConverter(String)","u":"setConverter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setCopChartDateOptions(COPChartDateOptions)","u":"setCopChartDateOptions(com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setCopies(Integer)","u":"setCopies(java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setCopRemoteDebug(Boolean)","u":"setCopRemoteDebug(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setCsvOptions(CsvOptions)","u":"setCsvOptions(com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setData(Hashtable)","u":"setData(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"setData(String)","u":"setData(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String)","u":"setDataLabels(java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setDataSource(String)","u":"setDataSource(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setDateOptions(ChartDateOptions)","u":"setDateOptions(com.cloudofficeprint.RenderElements.Charts.ChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setDepth(int)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setDotScale(Integer)","u":"setDotScale(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"setElements(ArrayList)","u":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"setElements(ArrayList)","u":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setEmail(String)","u":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setEmail(String)","u":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setEncoding(String)","u":"setEncoding(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setEncryption(String)","u":"setEncryption(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setEndDate(String)","u":"setEndDate(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setEndpoint(String)","u":"setEndpoint(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setEvenPage(Boolean)","u":"setEvenPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"Response","l":"setExt(String)","u":"setExt(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setExternalResource(ExternalResource)","u":"setExternalResource(com.cloudofficeprint.Resources.ExternalResource)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setExtraOptions(String)","u":"setExtraOptions(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setFieldSeparator(String)","u":"setFieldSeparator(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileBase64(String)","u":"setFileBase64(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"setFileFromLocalFile(String)","u":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileFromLocalFile(String)","u":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setFileName(String)","u":"setFileName(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setFiletype(String)","u":"setFiletype(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setFirstName(String)","u":"setFirstName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontBold(Boolean)","u":"setFontBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontItalic(Boolean)","u":"setFontItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontSize(String)","u":"setFontSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontStrike(Boolean)","u":"setFontStrike(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSubscript(Boolean)","u":"setFontSubscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSuperscript(Boolean)","u":"setFontSuperscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontUnderline(Boolean)","u":"setFontUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setFormat(String)","u":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setFormat(String)","u":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setFormatCode(String)","u":"setFormatCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"setFormData(HashMap)","u":"setFormData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setGrid(Boolean)","u":"setGrid(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setHeaders(JsonArray)","u":"setHeaders(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setHeight(String)","u":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setHeight(String)","u":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setHeightLogo(Integer)","u":"setHeightLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setHigh(Integer[])","u":"setHigh(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setHighlightColor(String)","u":"setHighlightColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setHost(String)","u":"setHost(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setIdentifyFormFields(Boolean)","u":"setIdentifyFormFields(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImage(String)","u":"setImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImageFromLocalFile(String)","u":"setImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"setImages(PDFImage[])","u":"setImages(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setJobName(String)","u":"setJobName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"setJsonArray(JsonArray)","u":"setJsonArray(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setKeyID(String)","u":"setKeyID(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLandscape(Boolean)","u":"setLandscape(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setLastName(String)","u":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setLastName(String)","u":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setLegend(String, ChartTextStyle)","u":"setLegend(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"setLineseries(ArrayList)","u":"setLineseries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineStyle(String)","u":"setLineStyle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineThickness(String)","u":"setLineThickness(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setLinkUrl(String)","u":"setLinkUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLockForm(Boolean)","u":"setLockForm(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setLoggingInfo(JsonObject)","u":"setLoggingInfo(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogo(String)","u":"setLogo(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoBackGroundColor(String)","u":"setLogoBackGroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoFromLocalFile(String)","u":"setLogoFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setLongitude(String)","u":"setLongitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setLow(Integer[])","u":"setLow(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorGridLines(Boolean)","u":"setMajorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorUnit(Float)","u":"setMajorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMax(Float)","u":"setMax(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxHeight(Integer)","u":"setMaxHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxWidth(Integer)","u":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setMaxWidth(Integer)","u":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMerge(Boolean)","u":"setMerge(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMergeMakingEven(Boolean)","u":"setMergeMakingEven(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setMethod(String)","u":"setMethod(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setMimetype(String)","u":"setMimetype(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setMimeType(String)","u":"setMimeType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMin(Float)","u":"setMin(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorGridLines(Boolean)","u":"setMinorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorUnit(Float)","u":"setMinorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setModifyPassword(String)","u":"setModifyPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNickname(String)","u":"setNickname(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNotes(String)","u":"setNotes(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setOpacity(Float)","u":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setOpacity(Float)","u":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setOpen(Integer[])","u":"setOpen(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"setOptions(ChartOptions)","u":"setOptions(com.cloudofficeprint.RenderElements.Charts.ChartOptions)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setOrientation(String)","u":"setOrientation(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setOutput(Output)","u":"setOutput(com.cloudofficeprint.Output.Output)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingHeight(Integer)","u":"setPaddingHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingWidth(Integer)","u":"setPaddingWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageFormat(String)","u":"setPageFormat(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageHeight(String)","u":"setPageHeight(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setPageNumber(Integer)","u":"setPageNumber(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageWidth(String)","u":"setPageWidth(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPasswordProtectionFlag(Integer)","u":"setPasswordProtectionFlag(java.lang.Integer)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"setPath(String)","u":"setPath(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setPDFOptions(PDFOptions)","u":"setPDFOptions(com.cloudofficeprint.Output.PDFOptions)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiBLColor(String)","u":"setPiBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiColor(String)","u":"setPiColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTLColor(String)","u":"setPiTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTRColor(String)","u":"setPiTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoBLColor(String)","u":"setPoBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoColor(String)","u":"setPoColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPort(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostConversion(Command)","u":"setPostConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostMerge(Command)","u":"setPostMerge(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcess(Command)","u":"setPostProcess(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessDeleteDelay(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessReturn(Boolean)","u":"setPostProcessReturn(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTLColor(String)","u":"setPoTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTRColor(String)","u":"setPoTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPreConversion(Command)","u":"setPreConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setPrependFiles(Resource[])","u":"setPrependFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPrinter(Printer)","u":"setPrinter(com.cloudofficeprint.Server.Printer)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyIP(String)","u":"setProxyIP(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyPort(Integer)","u":"setProxyPort(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setQrErrorCorrectionLevel(String)","u":"setQrErrorCorrectionLevel(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"setQuery(String)","u":"setQuery(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZone(Integer)","u":"setQuietZone(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZoneColor(String)","u":"setQuietZoneColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setReadPassword(String)","u":"setReadPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setRemoveLastPage(Boolean)","u":"setRemoveLastPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setRequester(String)","u":"setRequester(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setResponse(Response)","u":"setResponse(com.cloudofficeprint.Response)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setReturnOutput(boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setRoundedCorners(Boolean)","u":"setRoundedCorners(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setRows(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setSecondaryCharts(ArrayList)","u":"setSecondaryCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setSecretKey(String)","u":"setSecretKey(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setServer(Server)","u":"setServer(com.cloudofficeprint.Server.Server)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setServerDirectory(String)","u":"setServerDirectory(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"setService(String)","u":"setService(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"setSheetNames(ArrayList)","u":"setSheetNames(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSignCertificate(String)","u":"setSignCertificate(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSignCertificateWithPassword(String)","u":"setSignCertificateWithPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"setSizes(Integer[])","u":"setSizes(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSmooth(Boolean)","u":"setSmooth(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSplit(Boolean)","u":"setSplit(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"setStackedColumnSeries(ArrayList)","u":"setStackedColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setStartDate(String)","u":"setStartDate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setStep(Integer)","u":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setStep(Integer)","u":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setStrikethrough(Boolean)","u":"setStrikethrough(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setSubject(String)","u":"setSubject(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setSubTemplates(Hashtable)","u":"setSubTemplates(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbol(String)","u":"setSymbol(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbolSize(String)","u":"setSymbolSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setTabLeader(String)","u":"setTabLeader(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTargetUrl(String)","u":"setTargetUrl(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setTemplate(Resource)","u":"setTemplate(com.cloudofficeprint.Resources.Resource)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setText(String)","u":"setText(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setTextDelimiter(String)","u":"setTextDelimiter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextHAlignment(String)","u":"setTextHAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextRotation(Integer)","u":"setTextRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"setTexts(PDFText[])","u":"setTexts(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextVAlignment(String)","u":"setTextVAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingColor(String)","u":"setTimingColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingHColor(String)","u":"setTimingHColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingVColor(String)","u":"setTimingVColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleRotation(Integer)","u":"setTitleRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleStyle(ChartTextStyle)","u":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitleStyle(ChartTextStyle)","u":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"setToken(String)","u":"setToken(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setTransparency(String)","u":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTransparency(String)","u":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setUnderline(Boolean)","u":"setUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setUnit(String)","u":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setUnit(String)","u":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"setUrl(String)","u":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUrl(String)","u":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"setURL(String)","u":"setURL(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setValue(String)","u":"setValue(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValues(Boolean)","u":"setValues(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValuesStyle(ChartTextStyle)","u":"setValuesStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setVerbose(boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setVersion(String)","u":"setVersion(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setVolume(Integer[])","u":"setVolume(java.lang.Integer[])"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermark(String)","u":"setWatermark(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkColor(String)","u":"setWatermarkColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkFont(String)","u":"setWatermarkFont(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkOpacity(Integer)","u":"setWatermarkOpacity(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkSize(Integer)","u":"setWatermarkSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setWebsite(String)","u":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setWebsite(String)","u":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setWidthLogo(Integer)","u":"setWidthLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setWifiHidden(Boolean)","u":"setWifiHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWrapText(String)","u":"setWrapText(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setX(Integer)","u":"setX(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setX(String[])","u":"setX(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setX2Title(String)","u":"setX2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setXAxisOptions(ChartAxisOptions)","u":"setXAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXData(JsonArray)","u":"setXData(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXTitle(String)","u":"setXTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setY(Integer)","u":"setY(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setY(String[])","u":"setY(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setY2AxisOptions(ChartAxisOptions)","u":"setY2AxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setY2Title(String)","u":"setY2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setYAxisOptions(ChartAxisOptions)","u":"setYAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYData(HashMap)","u":"setYData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYTitle(String)","u":"setYTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, HashMap)","u":"%3Cinit%3E(java.lang.String,java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, RenderElement[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"shortenDescription(String)","u":"shortenDescription(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"signPDF(String)","u":"signPDF(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"SlideLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"SMSQRCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"SolarSystemExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"SpaceXExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"StockChart(String, ChartOptions, StockSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.StockSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"StyledProperty(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"TableCell(String, String, CellStyle)","u":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"TableOfContents(String, String, int, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"TableRowLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"TelephoneNumberQRCode(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"TextBox(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"COPException","l":"toString()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"updateJson1WithJson2(JsonObject, JsonObject)","u":"updateJson1WithJson2(com.google.gson.JsonObject,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"URLQRCode(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"URLResource(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"VCardQRCode(String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"Watermark(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"waterMarkAndStyledProperty(String)","u":"waterMarkAndStyledProperty(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"WifiQRCode(String, String, String, String, Boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"withoutTemplate(String)","u":"withoutTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"XYSeries()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file diff --git a/cloudofficeprint/build/docs/javadoc/module-search-index.js b/cloudofficeprint/build/docs/javadoc/module-search-index.js new file mode 100644 index 00000000..0d59754f --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/module-search-index.js @@ -0,0 +1 @@ +moduleSearchIndex = [];updateSearchResults(); \ No newline at end of file diff --git a/cloudofficeprint/build/docs/javadoc/overview-summary.html b/cloudofficeprint/build/docs/javadoc/overview-summary.html index 328de353..7b459fe5 100644 --- a/cloudofficeprint/build/docs/javadoc/overview-summary.html +++ b/cloudofficeprint/build/docs/javadoc/overview-summary.html @@ -2,17 +2,20 @@ - -cloudofficeprint 21.2.1 API + +Generated Documentation (Untitled) + + + + + - - - +
    diff --git a/cloudofficeprint/build/docs/javadoc/allclasses.html b/cloudofficeprint/build/docs/javadoc/allclasses.html deleted file mode 100644 index 1143f268..00000000 --- a/cloudofficeprint/build/docs/javadoc/allclasses.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - -All Classes (cloudofficeprint 21.2.1 API) - - - - - - - - - - - -

    All Classes

    -
    - -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/allpackages-index.html b/cloudofficeprint/build/docs/javadoc/allpackages-index.html index c0236b43..1a1d93fe 100644 --- a/cloudofficeprint/build/docs/javadoc/allpackages-index.html +++ b/cloudofficeprint/build/docs/javadoc/allpackages-index.html @@ -2,10 +2,9 @@ - -All Packages + +All Packages (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -158,7 +157,7 @@

    All Packages

  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html index d1a2287f..e3ea04f2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/COPException.html @@ -2,10 +2,9 @@ - -COPException + +COPException (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -177,7 +176,7 @@

    Methods inherited from addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait @@ -284,7 +283,7 @@

    toString

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html index 78669753..024f81f2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/Examples.html @@ -2,10 +2,9 @@ - -Examples + +Examples (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -218,7 +217,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -408,7 +407,7 @@

    signPDF

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html index c21a0ff6..ebca75b1 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.GeneralExamples + +com.cloudofficeprint.Examples.GeneralExamples (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -88,7 +87,7 @@

    Package com.cloudofficeprint.Examples.Gen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html index cabb2e23..866b69d6 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/GeneralExamples/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.GeneralExamples Class Hierarchy + +com.cloudofficeprint.Examples.GeneralExamples Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -79,7 +78,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html index 1c2e48b6..7c208264 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.html @@ -2,10 +2,9 @@ - -MultipleRequestMergeExample + +MultipleRequestMergeExample (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -139,7 +138,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -202,7 +201,7 @@

    main

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html index 375ac221..45988201 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.MultipleRequestMerge + +com.cloudofficeprint.Examples.MultipleRequestMerge (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -88,7 +87,7 @@

    Package com.cloudofficeprint.Examples.Mul
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html index 5ff90438..31c3e7a4 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/MultipleRequestMerge/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.MultipleRequestMerge Class Hierarchy + +com.cloudofficeprint.Examples.MultipleRequestMerge Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -79,7 +78,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html index 63938d00..8c50b077 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.html @@ -2,10 +2,9 @@ - -OrderConfirmationExample + +OrderConfirmationExample (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -136,7 +135,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -191,7 +190,7 @@

    main

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html index a419e113..a6cafd21 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.OrderConfirmation + +com.cloudofficeprint.Examples.OrderConfirmation (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -88,7 +87,7 @@

    Package com.cloudofficeprint.Examples.Ord
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html index 36c4c7e2..4ab534dc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/OrderConfirmation/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.OrderConfirmation Class Hierarchy + +com.cloudofficeprint.Examples.OrderConfirmation Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -79,7 +78,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html index 5390c0a8..2043519a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.html @@ -2,10 +2,9 @@ - -PDFSignatureExample + +PDFSignatureExample (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -136,7 +135,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -186,7 +185,7 @@

    main

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html index 8243ccbc..d6423909 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.PDFSignature + +com.cloudofficeprint.Examples.PDFSignature (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -88,7 +87,7 @@

    Package com.cloudofficeprint.Examples.PDF
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html index 2df536bc..c2459cd9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/PDFSignature/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.PDFSignature Class Hierarchy + +com.cloudofficeprint.Examples.PDFSignature Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -79,7 +78,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html index 42ac8d71..5f459558 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.html @@ -2,10 +2,9 @@ - -SolarSystemExample + +SolarSystemExample (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -137,7 +136,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -196,7 +195,7 @@

    main

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html index a2f3caf3..997a9e0e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.SolarSystem + +com.cloudofficeprint.Examples.SolarSystem (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -88,7 +87,7 @@

    Package com.cloudofficeprint.Examples.Sol
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html index 26c065f0..4b60a49b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SolarSystem/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.SolarSystem Class Hierarchy + +com.cloudofficeprint.Examples.SolarSystem Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -79,7 +78,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html index 88fc014b..7742ab93 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.html @@ -2,10 +2,9 @@ - -SpaceXExample + +SpaceXExample (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -143,7 +142,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -214,7 +213,7 @@

    main

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html index f2946d67..7073c679 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.SpaceX + +com.cloudofficeprint.Examples.SpaceX (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -90,7 +89,7 @@

    Package com.cloudofficeprint.Examples.Spa
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html index 54d60419..570690d2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Examples/SpaceX/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Examples.SpaceX Class Hierarchy + +com.cloudofficeprint.Examples.SpaceX Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -79,7 +78,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html index f34f8528..e5e73fdc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Main.html @@ -2,10 +2,9 @@ - -Main + +Main (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -136,7 +135,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -191,7 +190,7 @@

    main

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html index 4de1f4ea..d365c5ce 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Mimetype.html @@ -2,10 +2,9 @@ - -Mimetype + +Mimetype (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -153,7 +152,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -244,7 +243,7 @@

    getMimetypeFromContentType

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html index 65830062..fbbfebd6 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.html @@ -2,10 +2,9 @@ - -AWSToken + +AWSToken (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -165,7 +164,7 @@

    getService, setService

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -270,7 +269,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html index e6d2a71e..1d56ddbc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.html @@ -2,10 +2,9 @@ - -CloudAccessToken + +CloudAccessToken (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -152,7 +151,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -227,7 +226,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html index dea9b91c..e80541cf 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.html @@ -2,10 +2,9 @@ - -FTPToken + +FTPToken (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -188,7 +187,7 @@

    getService, setService

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -345,7 +344,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html index 59ca99c4..e25a8877 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.html @@ -2,10 +2,9 @@ - -OAuth2Token + +OAuth2Token (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -156,7 +155,7 @@

    getService, setService

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -241,7 +240,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html index d5ce06f8..473a943c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Output.CloudAcessToken + +com.cloudofficeprint.Output.CloudAcessToken (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -109,7 +108,7 @@

    Package com.cloudofficeprint.Output.Cloud
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html index 33a65d7a..1149c0f3 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CloudAcessToken/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Output.CloudAcessToken Class Hierarchy + +com.cloudofficeprint.Output.CloudAcessToken Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -85,7 +84,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html index 6f7ac651..f8c2f0bb 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/CsvOptions.html @@ -2,10 +2,9 @@ - -CsvOptions + +CsvOptions (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -169,7 +168,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -289,7 +288,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html index b4700d42..e94f8359 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/Output.html @@ -2,10 +2,9 @@ - -Output + +Output (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -222,7 +221,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -470,7 +469,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html index a0b1a171..8a7731c0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/PDFOptions.html @@ -2,10 +2,9 @@ - -PDFOptions + +PDFOptions (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -132,7 +131,7 @@

    Method Summary

    java.lang.Integer getCopies() -
    Useful when user need multiple number of output copies
    +
    Useful when user needs multiple number of output copies
    @@ -443,7 +442,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -733,7 +732,6 @@

    getPasswordProtectionFlag

    setPasswordProtectionFlag

    public void setPasswordProtectionFlag​(java.lang.Integer passwordProtectionFlag)
    Sets the protection flag for the PDF. -

    More info on the flag bits on https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.

    @@ -770,7 +768,7 @@

    setLockForm

    getCopies

    public java.lang.Integer getCopies()
    -
    Useful when user need multiple number of output copies
    +
    Useful when user needs multiple number of output copies
    Returns:
    Number of times the output need to be repeated.
    @@ -781,7 +779,7 @@

    getCopies

    setCopies

    public void setCopies​(java.lang.Integer copies)
    -
    Sets the Number of times the output will be repeated. Useful when user need multiple number of output copies
    +
    Sets the Number of times the output will be repeated. Useful when user needs multiple number of output copies
    Parameters:
    copies - Number of times the output need to be repeated.
    @@ -805,7 +803,6 @@

    setPageMargin

    public void setPageMargin​(int[] pageMargins) throws java.lang.Exception
    Sets top bottom left right margin in pixels. -

    Only supported when converting HTML to PDF.

    Parameters:
    @@ -820,7 +817,6 @@

    setPageMargin

    setPageMargin

    public void setPageMargin​(int pageMargin)
    Sets same pageMargin for top, bottom, left and right. -

    Only supported when converting HTML to PDF.

    Parameters:
    @@ -1048,7 +1044,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html index 2e105b2f..ff9fe65f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Output + +com.cloudofficeprint.Output (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -102,7 +101,7 @@

    Package com.cloudofficeprint.Output

  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html index 70426a52..64c34875 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Output Class Hierarchy + +com.cloudofficeprint.Output Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -81,7 +80,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html index 284b28da..23c9a96b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html @@ -2,10 +2,9 @@ - -PrintJob + +PrintJob (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -293,7 +292,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    @@ -660,7 +659,7 @@

    run

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html index 1890dcd7..0ce5ef9b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChart.html @@ -2,10 +2,9 @@ - -COPChart + +COPChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -243,7 +242,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    @@ -507,7 +506,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html index c253006f..d9459f34 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/COPChartDateOptions.html @@ -2,10 +2,9 @@ - -COPChartDateOptions + +COPChartDateOptions (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -172,7 +171,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -301,7 +300,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html index 71ab27e3..bf3a7652 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/CellSpan.html @@ -2,10 +2,9 @@ - -CellSpan + +CellSpan (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -172,7 +171,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -292,7 +291,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html index f9f3f161..ec34ee24 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyle.html @@ -2,10 +2,9 @@ - -CellStyle + +CellStyle (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -141,7 +140,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -196,7 +195,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html index 7c176d3c..a5992f40 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.html @@ -2,10 +2,9 @@ - -CellStyleDocxPpt + +CellStyleDocxPpt (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -166,7 +165,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -281,7 +280,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html index b1abbca8..418b200c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.html @@ -2,10 +2,9 @@ - -CellStyleXlsx + +CellStyleXlsx (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -401,7 +400,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -1003,7 +1002,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html index cb46baad..aa32b0e9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/TableCell.html @@ -2,10 +2,9 @@ - -TableCell + +TableCell (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -163,7 +162,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -263,7 +262,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html index 7c857662..afd295c4 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Cells + +com.cloudofficeprint.RenderElements.Cells (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -109,7 +108,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html index 43370991..678793af 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Cells/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Cells Class Hierarchy + +com.cloudofficeprint.RenderElements.Cells Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -89,7 +88,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html index 201e8498..08c1ecd6 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.html @@ -2,10 +2,9 @@ - -ChartAxisOptions + +ChartAxisOptions (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -278,7 +277,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -618,7 +617,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html index 890b1285..d8e1721a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.html @@ -2,10 +2,9 @@ - -ChartDateOptions + +ChartDateOptions (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -182,7 +181,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -333,7 +332,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html index c623a9ea..7bdb35cd 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartOptions.html @@ -2,10 +2,9 @@ - -ChartOptions + +ChartOptions (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -365,7 +364,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -849,7 +848,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html index afb9389c..9902ab0c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.html @@ -2,10 +2,9 @@ - -ChartTextStyle + +ChartTextStyle (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -182,7 +181,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -328,7 +327,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html index 295e507a..357abb4c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.html @@ -2,10 +2,9 @@ - -AreaChart + +AreaChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html index b1f98825..dcf1c647 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.html @@ -2,10 +2,9 @@ - -BarChart + +BarChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html index 69d4e2f9..9a5240c4 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.html @@ -2,10 +2,9 @@ - -BarStackedChart + +BarStackedChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html index 25b148cc..e9e7fef3 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.html @@ -2,10 +2,9 @@ - -BarStackedPercentChart + +BarStackedPercentChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -248,7 +247,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html index 7db3ef6b..907fe186 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.html @@ -2,10 +2,9 @@ - -BubbleChart + +BubbleChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html index a527b688..e389aebf 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.html @@ -2,10 +2,9 @@ - -Chart + +Chart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -156,7 +155,7 @@

    getJSON, getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -233,7 +232,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html index 74d67f8c..e8996d5c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.html @@ -2,10 +2,9 @@ - -ColumnChart + +ColumnChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html index 59b84230..a9fea915 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.html @@ -2,10 +2,9 @@ - -ColumnStackedChart + +ColumnStackedChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html index 132c29c6..666b9182 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.html @@ -2,10 +2,9 @@ - -ColumnStackedPercentChart + +ColumnStackedPercentChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -162,7 +161,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -250,7 +249,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html index 6c7911c9..15aba464 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.html @@ -2,10 +2,9 @@ - -CombinedChart + +CombinedChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -187,7 +186,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -324,7 +323,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html index 614b4905..f01170af 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.html @@ -2,10 +2,9 @@ - -DoughnutChart + +DoughnutChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html index de91aa3c..97a19fd9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.html @@ -2,10 +2,9 @@ - -LineChart + +LineChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html index ce4c0457..710527e1 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.html @@ -2,10 +2,9 @@ - -Pie3DChart + +Pie3DChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html index 472d27a3..5bb8679a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.html @@ -2,10 +2,9 @@ - -PieChart + +PieChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html index a2ff2c68..0b0300e5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.html @@ -2,10 +2,9 @@ - -RadarChart + +RadarChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html index 1a92bb20..e30cf720 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.html @@ -2,10 +2,9 @@ - -ScatterChart + +ScatterChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html index 10489ca9..55dcdb97 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.html @@ -2,10 +2,9 @@ - -StockChart + +StockChart (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -247,7 +246,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html index 437701cb..7fbd6595 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Charts.Charts + +com.cloudofficeprint.RenderElements.Charts.Charts (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -186,7 +185,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html index 1f2c00e3..a65d2120 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Charts/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Charts.Charts Class Hierarchy + +com.cloudofficeprint.RenderElements.Charts.Charts Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -102,7 +101,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html index 8e3ccbe8..0cf0638b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.html @@ -2,10 +2,9 @@ - -AreaSeries + +AreaSeries (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -172,7 +171,7 @@

    getJSONData, getName, getX, getY, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -301,7 +300,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html index f56924a7..244188ac 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.html @@ -2,10 +2,9 @@ - -BarSeries + +BarSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -119,7 +118,7 @@

    getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -164,7 +163,7 @@

    BarSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html index 80d3dadf..15d5cec2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.html @@ -2,10 +2,9 @@ - -BarStackedPercentSeries + +BarStackedPercentSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -121,7 +120,7 @@

    getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -167,7 +166,7 @@

    BarStackedPercentSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html index 5c6cf71e..7088c272 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.html @@ -2,10 +2,9 @@ - -BarStackedSeries + +BarStackedSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -119,7 +118,7 @@

    getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -164,7 +163,7 @@

    BarStackedSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html index 03ade128..f03a4954 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.html @@ -2,10 +2,9 @@ - -BubbleSeries + +BubbleSeries (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -157,7 +156,7 @@

    getColor, getJSON, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -244,7 +243,7 @@

    getJSONData

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html index 99b88771..db055f5f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.html @@ -2,10 +2,9 @@ - -ColumnSeries + +ColumnSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -119,7 +118,7 @@

    getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -164,7 +163,7 @@

    ColumnSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html index e96d5868..4145d008 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.html @@ -2,10 +2,9 @@ - -ColumnStackedPercentSeries + +ColumnStackedPercentSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -121,7 +120,7 @@

    getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -167,7 +166,7 @@

    ColumnStackedPercentSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html index e31d49da..d2dd9375 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.html @@ -2,10 +2,9 @@ - -ColumnStackedSeries + +ColumnStackedSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -119,7 +118,7 @@

    getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -164,7 +163,7 @@

    ColumnStackedSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html index fd1d34a7..ff87514f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.html @@ -2,10 +2,9 @@ - -LineSeries + +LineSeries (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -209,7 +208,7 @@

    getColor, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -405,7 +404,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html index dab802f5..a8b18bcd 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.html @@ -2,10 +2,9 @@ - -PieSeries + +PieSeries (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getColor, getJSON, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -258,7 +257,7 @@

    getJSONData

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html index e6df2d06..c1e17d94 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.html @@ -2,10 +2,9 @@ - -RadarSeries + +RadarSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -130,7 +129,7 @@

    getColor, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -193,7 +192,7 @@

    RadarSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html index 45dac3a0..ff7b7306 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.html @@ -2,10 +2,9 @@ - -ScatterSeries + +ScatterSeries (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -120,7 +119,7 @@

    getColor, getJSON, getJSONData, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -166,7 +165,7 @@

    ScatterSeries

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html index 9f332a87..3522260f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.html @@ -2,10 +2,9 @@ - -StockSeries + +StockSeries (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -207,7 +206,7 @@

    getColor, getName, getX, getY, setColor, setName, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -394,7 +393,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html index ff6ce498..66a14866 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.html @@ -2,10 +2,9 @@ - -XYSeries + +XYSeries (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -185,7 +184,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -330,7 +329,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html index de1e6af0..9be35da5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Charts.Series + +com.cloudofficeprint.RenderElements.Charts.Series (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -168,7 +167,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html index c7d35474..a2327685 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/Series/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Charts.Series Class Hierarchy + +com.cloudofficeprint.RenderElements.Charts.Series Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -98,7 +97,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html index ffcf6654..8ba3fc79 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Charts + +com.cloudofficeprint.RenderElements.Charts (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -106,7 +105,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html index 3f75a339..cd438b0f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Charts/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Charts Class Hierarchy + +com.cloudofficeprint.RenderElements.Charts Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -82,7 +81,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html index d3d3fb99..fe8cd97a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/BarCode.html @@ -2,10 +2,9 @@ - -BarCode + +BarCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -255,7 +254,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -528,7 +527,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html index 3f82414a..c0d38f25 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/Code.html @@ -2,10 +2,9 @@ - -Code + +Code (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getJSON, getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -251,7 +250,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html index cc55ede7..be345ce2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.html @@ -2,10 +2,9 @@ - -EmailQRCode + +EmailQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -200,7 +199,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -354,7 +353,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html index cf46559d..ad9bda02 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/EventQRCode.html @@ -2,10 +2,9 @@ - -EventQRCode + +EventQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -178,7 +177,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -288,7 +287,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html index 86353e6d..68168c95 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.html @@ -2,10 +2,9 @@ - -GeolocationQRCode + +GeolocationQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -178,7 +177,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -288,7 +287,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html index 17be90e0..020b98c9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.html @@ -2,10 +2,9 @@ - -MECardQRCode + +MECardQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -255,7 +254,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -519,7 +518,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html index 298c79ad..baae053b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/QRCode.html @@ -2,10 +2,9 @@ - -QRCode + +QRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -421,7 +420,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -1029,7 +1028,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html index 65fb1d8f..360654e3 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.html @@ -2,10 +2,9 @@ - -SMSQRCode + +SMSQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -167,7 +166,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -254,7 +253,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html index cede79a6..4762e618 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.html @@ -2,10 +2,9 @@ - -TelephoneNumberQRCode + +TelephoneNumberQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -156,7 +155,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -221,7 +220,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html index 3080239e..c5dc20b7 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/URLQRCode.html @@ -2,10 +2,9 @@ - -URLQRCode + +URLQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -156,7 +155,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -221,7 +220,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html index 548fce6a..62f168a9 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.html @@ -2,10 +2,9 @@ - -VCardQRCode + +VCardQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -199,7 +198,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -350,7 +349,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html index c604f314..d27e5da5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.html @@ -2,10 +2,9 @@ - -WifiQRCode + +WifiQRCode (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -190,7 +189,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -322,7 +321,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html index 2481041d..6c8fd654 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Codes + +com.cloudofficeprint.RenderElements.Codes (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -167,7 +166,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html index a0dc33a5..f0db9bae 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Codes/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Codes Class Hierarchy + +com.cloudofficeprint.RenderElements.Codes Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -100,7 +99,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html index be5c8f0c..7d244abc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/D3Code.html @@ -2,10 +2,9 @@ - -D3Code + +D3Code (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -162,7 +161,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -264,7 +263,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html index 3b7fa6ae..4135269e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ElementCollection.html @@ -2,10 +2,9 @@ - -ElementCollection + +ElementCollection (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -214,7 +213,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -407,7 +406,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html index 0eb063e3..f41dd329 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html @@ -2,10 +2,9 @@ - -FootNote + +FootNote (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,7 +150,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -228,7 +227,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html index 5e66a601..e5cff577 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Formula.html @@ -2,10 +2,9 @@ - -Formula + +Formula (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,7 +150,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -229,7 +228,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html index 7994b988..68f9e9e0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Freeze.html @@ -2,10 +2,9 @@ - -Freeze + +Freeze (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -170,7 +169,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -280,7 +279,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html index d7910605..53c7dd27 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HTML.html @@ -2,10 +2,9 @@ - -HTML + +HTML (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,7 +150,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -228,7 +227,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html index 9b304835..df894f3c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html @@ -2,10 +2,9 @@ - -HyperLink + +HyperLink (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -165,7 +164,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -270,7 +269,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html index 61837628..89cf5808 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/Image.html @@ -2,10 +2,9 @@ - -Image + +Image (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -244,7 +243,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -508,7 +507,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html index 038aa620..9cee2502 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageBase64.html @@ -2,10 +2,9 @@ - -ImageBase64 + +ImageBase64 (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -160,7 +159,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -241,7 +240,7 @@

    setFileFromLocalFile

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html index 2f93fd41..db77e905 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/ImageUrl.html @@ -2,10 +2,9 @@ - -ImageUrl + +ImageUrl (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -123,7 +122,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -168,7 +167,7 @@

    ImageUrl

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html index 12677532..2f59764a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Images + +com.cloudofficeprint.RenderElements.Images (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -101,7 +100,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html index 88c4206f..e20c2ba5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Images/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Images Class Hierarchy + +com.cloudofficeprint.RenderElements.Images Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -88,7 +87,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html index fcc8667a..19679d1a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.html @@ -2,10 +2,9 @@ - -InlineDataLoop + +InlineDataLoop (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -153,7 +152,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -220,7 +219,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html index 2df12707..3691f277 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Labels.html @@ -2,10 +2,9 @@ - -Labels + +Labels (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -156,7 +155,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -226,7 +225,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html index 3f4a7cdc..b3321825 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/Loop.html @@ -2,10 +2,9 @@ - -Loop + +Loop (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -182,7 +181,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -313,7 +312,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html index 5146f058..5713928e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SheetLoop.html @@ -2,10 +2,9 @@ - -SheetLoop + +SheetLoop (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -180,7 +179,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -303,7 +302,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html index bc685071..47a44ef7 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/SlideLoop.html @@ -2,10 +2,9 @@ - -SlideLoop + +SlideLoop (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,7 +150,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -215,7 +214,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html index 74d5eb6a..4cdcf456 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.html @@ -2,10 +2,9 @@ - -TableRowLoop + +TableRowLoop (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,7 +150,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -216,7 +215,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html index b63f3ec2..402bd431 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Loops + +com.cloudofficeprint.RenderElements.Loops (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -120,7 +119,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html index 7a4e3d91..3a3e6791 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Loops/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.Loops Class Hierarchy + +com.cloudofficeprint.RenderElements.Loops Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -91,7 +90,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html index a9ca367f..f2caf294 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/MarkDownContent.html @@ -2,10 +2,9 @@ - -MarkDownContent + +MarkDownContent (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,7 +150,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -228,7 +227,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html index 665e90f3..23267e5d 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFFormData.html @@ -2,10 +2,9 @@ - -PDFFormData + +PDFFormData (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -161,7 +160,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -261,7 +260,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html index 54e68128..f560d3cc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImage.html @@ -2,10 +2,9 @@ - -PDFImage + +PDFImage (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -216,7 +215,7 @@

    getPageNumber, getX, getY, setPageNumber, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -435,7 +434,7 @@

    getIdentifier

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html index 9fbe62d5..d63796d6 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFImages.html @@ -2,10 +2,9 @@ - -PDFImages + +PDFImages (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -158,7 +157,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -254,7 +253,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html index ddfb83a3..6a12570e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.html @@ -2,10 +2,9 @@ - -PDFInsertObject + +PDFInsertObject (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -180,7 +179,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -324,7 +323,7 @@

    getIdentifier

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html index fbbca52e..914681ef 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFText.html @@ -2,10 +2,9 @@ - -PDFText + +PDFText (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -221,7 +220,7 @@

    getPageNumber, getX, getY, setPageNumber, setX, setY

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -445,7 +444,7 @@

    getIdentifier

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html index dd6cbb4f..5c3a0605 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/PDFTexts.html @@ -2,10 +2,9 @@ - -PDFTexts + +PDFTexts (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -158,7 +157,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -253,7 +252,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html index 94fe2f6a..7d586986 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.PDF + +com.cloudofficeprint.RenderElements.PDF (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -116,7 +115,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html index a143ac34..5f0e5c83 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PDF/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements.PDF Class Hierarchy + +com.cloudofficeprint.RenderElements.PDF Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -91,7 +90,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html index 5257b86a..b82447e5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/PageBreak.html @@ -2,10 +2,9 @@ - -PageBreak + +PageBreak (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -151,7 +150,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -230,7 +229,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html index 0db2a10f..aac62264 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Property.html @@ -2,10 +2,9 @@ - -Property + +Property (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -158,7 +157,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -250,7 +249,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html index 7de51b7a..21a137f5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html @@ -2,10 +2,9 @@ - -Raw + +Raw (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -150,7 +149,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -226,7 +225,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html index 41dfb1ea..e4178c27 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RawJsonArray.html @@ -2,10 +2,9 @@ - -RawJsonArray + +RawJsonArray (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -168,7 +167,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -269,7 +268,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html index 1be6e10b..fc320ebc 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html @@ -2,10 +2,9 @@ - -RenderElement + +RenderElement (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -167,7 +166,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -273,7 +272,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html index e539d969..40225323 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RightToLeft.html @@ -2,10 +2,9 @@ - -RightToLeft + +RightToLeft (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -155,7 +154,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -235,7 +234,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html index a5702f2b..e4ea0080 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/StyledProperty.html @@ -2,10 +2,9 @@ - -StyledProperty + +StyledProperty (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -231,7 +230,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -468,7 +467,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html index b4dc0eea..cb7bf089 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TableOfContents.html @@ -2,10 +2,9 @@ - -TableOfContents + +TableOfContents (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -173,7 +172,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -301,7 +300,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html index f6ed9a21..603b6210 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/TextBox.html @@ -2,10 +2,9 @@ - -TextBox + +TextBox (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -212,7 +211,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -411,7 +410,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html index 54cb7937..d94af9c4 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Watermark.html @@ -2,10 +2,9 @@ - -Watermark + +Watermark (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -222,7 +221,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -428,7 +427,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html index 408d660d..04d4c9a6 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements + +com.cloudofficeprint.RenderElements (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -214,7 +213,7 @@

    Package com.cloudofficeprint.RenderElemen
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html index 7947dd45..f956e62a 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.RenderElements Class Hierarchy + +com.cloudofficeprint.RenderElements Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -102,7 +101,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html index 8d8f6086..2df3e760 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Base64Resource.html @@ -2,10 +2,9 @@ - -Base64Resource + +Base64Resource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -184,7 +183,7 @@

    Me getExtension, getFiletype, getMimeType, setFiletype, setMimeType

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -319,7 +318,7 @@

    setFileFromLocalFile

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html index 56f882e9..35758bb2 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ExternalResource.html @@ -2,10 +2,9 @@ - -ExternalResource + +ExternalResource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -202,7 +201,7 @@

    getName, getTemplateTags, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -379,7 +378,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html index 3255a463..ac90c599 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/GraphQLResource.html @@ -2,10 +2,9 @@ - -GraphQLResource + +GraphQLResource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -170,7 +169,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -275,7 +274,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html index 43bd102c..86a6ea54 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/HTMLResource.html @@ -2,10 +2,9 @@ - -HTMLResource + +HTMLResource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -167,7 +166,7 @@

    Me getExtension, getFiletype, getMimeType, setFiletype, setMimeType

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -276,7 +275,7 @@

    getJSONForSecondaryFile

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html index e12df0c2..5737397e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/RESTResource.html @@ -2,10 +2,9 @@ - -RESTResource + +RESTResource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -181,7 +180,7 @@

    getName, getValue, setName, setValue

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -308,7 +307,7 @@

    getTemplateTags

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html index 85a3caf4..5783e2ed 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/Resource.html @@ -2,10 +2,9 @@ - -Resource + +Resource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -183,7 +182,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -308,7 +307,7 @@

    getExtension

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html index 778762ba..73f66ba5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/ServerResource.html @@ -2,10 +2,9 @@ - -ServerResource + +ServerResource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -169,7 +168,7 @@

    Me getExtension, getFiletype, getMimeType, setFiletype, setMimeType

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -280,7 +279,7 @@

    getJSONForSecondaryFile

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html index 9dc8975e..54b549a0 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/URLResource.html @@ -2,10 +2,9 @@ - -URLResource + +URLResource (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -170,7 +169,7 @@

    Me getExtension, getFiletype, getMimeType, setFiletype, setMimeType

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -279,7 +278,7 @@

    getJSONForSecondaryFile

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html index 87a333b0..fb9b8d22 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Resources + +com.cloudofficeprint.Resources (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -134,7 +133,7 @@

    Package com.cloudofficeprint.ResourcesClass
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html index 1465fc79..2fdea48c 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Resources/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Resources Class Hierarchy + +com.cloudofficeprint.Resources Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -96,7 +95,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html index 5731a087..62ce5e6b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Response.html @@ -2,10 +2,9 @@ - -Response + +Response (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -180,7 +179,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -323,7 +322,7 @@

    downloadLocally

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html index edc56cd4..e1ebc86f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Command.html @@ -2,10 +2,9 @@ - -Command + +Command (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -172,7 +171,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -305,7 +304,7 @@

    getJSONForPost

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html index 3ae118a7..68eeceac 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Commands.html @@ -2,10 +2,9 @@ - -Commands + +Commands (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -208,7 +207,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -398,7 +397,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html index 9659742e..4c29e512 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Printer.html @@ -2,10 +2,9 @@ - -Printer + +Printer (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -91,7 +90,6 @@

    Class Printer

    binary pdftops is on PATH variable. You can download executables from cloudofficeprint.com to check whether or not your IPP printer supports PDF/postscript. -

    This class represents an IP-enabled printer to use with the Cloud Office Print server. @@ -207,7 +205,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -386,7 +384,7 @@

    getJSON

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html index 724513f3..e27d5708 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/Server.html @@ -2,10 +2,9 @@ - -Server + +Server (cloudofficeprint 21.2.1 API) - @@ -39,7 +38,7 @@
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -344,7 +343,7 @@

    Method Summary

    Methods inherited from class java.lang.Object

    -equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait @@ -789,7 +788,7 @@

    readJson

  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html index 3b09d4fd..61f14fa5 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Server + +com.cloudofficeprint.Server (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -109,7 +108,7 @@

    Package com.cloudofficeprint.Server

  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html index 665425a9..d2289094 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Server/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint.Server Class Hierarchy + +com.cloudofficeprint.Server Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -82,7 +81,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html index 1db16e1c..4687bd61 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-summary.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint + +com.cloudofficeprint (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -130,7 +129,7 @@

    Package com.cloudofficeprint

  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html index 393375e4..a1a3a33f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/package-tree.html @@ -2,10 +2,9 @@ - -com.cloudofficeprint Class Hierarchy + +com.cloudofficeprint Class Hierarchy (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -91,7 +90,7 @@

    Class Hierarchy

  • Class
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/constant-values.html b/cloudofficeprint/build/docs/javadoc/constant-values.html index 43f1490a..47b4efa0 100644 --- a/cloudofficeprint/build/docs/javadoc/constant-values.html +++ b/cloudofficeprint/build/docs/javadoc/constant-values.html @@ -2,10 +2,9 @@ - -Constant Field Values + +Constant Field Values (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -68,7 +67,7 @@

    Contents

  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/deprecated-list.html b/cloudofficeprint/build/docs/javadoc/deprecated-list.html index 0bc749a5..b7dcec62 100644 --- a/cloudofficeprint/build/docs/javadoc/deprecated-list.html +++ b/cloudofficeprint/build/docs/javadoc/deprecated-list.html @@ -2,10 +2,9 @@ - -Deprecated List + +Deprecated List (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -66,7 +65,7 @@

    Contents

  • Class
  • Tree
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/help-doc.html b/cloudofficeprint/build/docs/javadoc/help-doc.html index a65fa2c1..d556bfe0 100644 --- a/cloudofficeprint/build/docs/javadoc/help-doc.html +++ b/cloudofficeprint/build/docs/javadoc/help-doc.html @@ -2,10 +2,9 @@ - -API Help + +API Help (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • @@ -133,7 +132,7 @@

    Deprecated API

    Index

    -

    The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

    +

    The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.

    Serialized Form

    @@ -166,7 +165,7 @@

    Search

  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • diff --git a/cloudofficeprint/build/docs/javadoc/index-all.html b/cloudofficeprint/build/docs/javadoc/index-all.html index 90511314..b22b402f 100644 --- a/cloudofficeprint/build/docs/javadoc/index-all.html +++ b/cloudofficeprint/build/docs/javadoc/index-all.html @@ -5,371 +5,324 @@ Index (cloudofficeprint 21.2.1 API) + + - + + - - - - - + + - - -
    +
    + +
    -
    A B C D E F G H I L M O P Q R S T U V W X 
    All Classes All Packages - - -

    A

    -
    -
    addAllRenderElements(ElementCollection) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    +

    Index

    +
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +

    A

    +
    +
    addAllRenderElements(ElementCollection) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    Adds all the elements from the elementcollection to the elements of this collection.
    -
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
     
    -
    addFromDict(Hashtable<String, String>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    addFromDict(Hashtable<String, String>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    Adds the list of properties from a mapping.
    -
    AreaChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    AreaChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents an area chart.
    -
    AreaChart(String, ChartOptions, AreaSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
    AreaChart(String, ChartOptions, AreaSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    Represents an area chart.
    -
    AreaSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    AreaSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    This class represents series for an area chart.
    -
    AreaSeries(String, String[], String[], String, Float) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    AreaSeries(String, String[], String[], String, Float) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    This object represents series for a pie chart.
    -
    asString() - Method in class com.cloudofficeprint.Response
    +
    asString() - Method in class com.cloudofficeprint.Response
    Return the string representation of this Response.
    -
    AWSToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    +
    AWSToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    Class to use for AWS tokens to store output on AWS.
    -
    AWSToken(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
    AWSToken(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    Constructor for an AWSToken object.
    - - - -

    B

    -
    -
    BarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +

    B

    +
    +
    BarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a bar chart.
    -
    BarChart(String, ChartOptions, BarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
    BarChart(String, ChartOptions, BarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    Represents a bar chart.
    -
    BarCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    BarCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class represents a barcode or a QR code (created using the data of the key) for a template.
    -
    BarCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    BarCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.BarCode
    This class represents a barcode (created using the data of the key) for a template.
    -
    BarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    BarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for bar charts.
    -
    BarSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarSeries
    +
    BarSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarSeries
    This object represents series for a bar chart.
    -
    BarStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    BarStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a stacked bar chart.
    -
    BarStackedChart(String, ChartOptions, BarStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
    BarStackedChart(String, ChartOptions, BarStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    Represents a stacked bar chart.
    -
    BarStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    BarStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a stacked bar chart where the x-axis is expressed in percentage.
    -
    BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
    BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    Represents a stacked bar chart.
    -
    BarStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    BarStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for stacked bar charts where the x-axis is expressed in percentage.
    -
    BarStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries
    +
    BarStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries
    This object represents series for a stacked bar chart where the x-axis is expressed in percentage.
    -
    BarStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    BarStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for stacked bar charts.
    -
    BarStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries
    +
    BarStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries
    This object series for represents a stacked bar chart.
    -
    Base64Resource - Class in com.cloudofficeprint.Resources
    +
    Base64Resource - Class in com.cloudofficeprint.Resources
    Child class of Resource.
    -
    Base64Resource() - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    +
    Base64Resource() - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    Constructor for creating an uninitialised object of this class.
    -
    Base64Resource(String, String) - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    +
    Base64Resource(String, String) - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    Constructor for creating an object of this class where the database64 can be supplied as a string.
    -
    BubbleChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    BubbleChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a bubble chart.
    -
    BubbleChart(String, ChartOptions, BubbleSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
    BubbleChart(String, ChartOptions, BubbleSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    Represents a bubble chart.
    -
    BubbleSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    BubbleSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for a bubble chart.
    -
    BubbleSeries(String, String[], String[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
    BubbleSeries(String, String[], String[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    This object represents series for a bubble chart.
    - - - -

    C

    -
    -
    CellSpan - Class in com.cloudofficeprint.RenderElements
    +

    C

    +
    +
    CellSpan - Class in com.cloudofficeprint.RenderElements
    Only available for Excel and HTML templates.
    -
    CellSpan(String, String, int, int) - Constructor for class com.cloudofficeprint.RenderElements.CellSpan
    +
    CellSpan(String, String, int, int) - Constructor for class com.cloudofficeprint.RenderElements.CellSpan
     
    -
    CellStyle - Class in com.cloudofficeprint.RenderElements.Cells
    +
    CellStyle - Class in com.cloudofficeprint.RenderElements.Cells
    Abstract class for cellstyles.
    -
    CellStyle() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyle
    +
    CellStyle() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyle
     
    -
    CellStyleDocxPpt - Class in com.cloudofficeprint.RenderElements.Cells
    +
    CellStyleDocxPpt - Class in com.cloudofficeprint.RenderElements.Cells
    Represent the style of Word and PowerPoint cells.
    -
    CellStyleDocxPpt(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    CellStyleDocxPpt(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    Represents the style of a Word/PowerPoint cell element.
    -
    CellStyleXlsx - Class in com.cloudofficeprint.RenderElements.Cells
    +
    CellStyleXlsx - Class in com.cloudofficeprint.RenderElements.Cells
    Represents the style of Excel cells.
    -
    CellStyleXlsx() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    CellStyleXlsx() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    Represents the style of an Excell cell element.
    -
    Chart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    Chart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    It would be more optimal to make this class generic.
    -
    Chart() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
    Chart() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
     
    -
    ChartAxisOptions - Class in com.cloudofficeprint.RenderElements.Charts
    +
    ChartAxisOptions - Class in com.cloudofficeprint.RenderElements.Charts
     
    -
    ChartAxisOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    ChartAxisOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    Represents the options for an axis of a chart.
    -
    ChartDateOptions - Class in com.cloudofficeprint.RenderElements.Charts
    +
    ChartDateOptions - Class in com.cloudofficeprint.RenderElements.Charts
    This class represents date options, only applicable for stock charts.
    -
    ChartDateOptions(String, String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    ChartDateOptions(String, String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    This object represents the date options for a chart.
    -
    chartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    chartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    This example show how to build a line chart.
    -
    ChartOptions - Class in com.cloudofficeprint.RenderElements.Charts
    +
    ChartOptions - Class in com.cloudofficeprint.RenderElements.Charts
    This class represents the chart options.
    -
    ChartOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    ChartOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    This object represents the options for a chart.
    -
    ChartTextStyle - Class in com.cloudofficeprint.RenderElements.Charts
    +
    ChartTextStyle - Class in com.cloudofficeprint.RenderElements.Charts
    This class represent chart styling.
    -
    ChartTextStyle(Boolean, Boolean, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    ChartTextStyle(Boolean, Boolean, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    Contains the styling options for the text of the chart.
    -
    CloudAccessToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    +
    CloudAccessToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    CloudAccessToken is an abstract class for all the different cloud access tokens : OAuth tokens, AWS tokens,FTP/SFTP tokens
    -
    CloudAccessToken() - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
    CloudAccessToken() - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
     
    -
    Code - Class in com.cloudofficeprint.RenderElements.Codes
    +
    Code - Class in com.cloudofficeprint.RenderElements.Codes
    Superclass for QR and BarCodes.
    -
    Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.Code
    +
    Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.Code
    This class represents codes (barcode or QR codes) (created using the data of the key) for a template.
    -
    ColumnChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    ColumnChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a column chart.
    -
    ColumnChart(String, ChartOptions, ColumnSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
    ColumnChart(String, ChartOptions, ColumnSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    Represents a column chart.
    -
    ColumnSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    ColumnSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for column charts.
    -
    ColumnSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries
    +
    ColumnSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries
    This object represents series for a column chart.
    -
    ColumnStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    ColumnStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a stacked column chart.
    -
    ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
    ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    Represents a stacked column chart.
    -
    ColumnStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    ColumnStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a stacked column chart.
    -
    ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
    ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    Represents a stacked column chart where the y-axis is expressed in percentage.
    -
    ColumnStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    ColumnStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for stacked column charts where the y-axis is expressed in percentage.
    -
    ColumnStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries
    +
    ColumnStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries
    This object represents series for a stacked column chart where the y-axis is expressed in percentage.
    -
    ColumnStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    ColumnStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for stacked column charts.
    -
    ColumnStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries
    +
    ColumnStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries
    This object represents series for a stacked column chart.
    @@ -413,2768 +366,2787 @@

    C

     
    com.cloudofficeprint.Server - package com.cloudofficeprint.Server
     
    -
    CombinedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    CombinedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a combined chart.
    -
    CombinedChart(String, ChartOptions, Chart[], Chart[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    CombinedChart(String, ChartOptions, Chart[], Chart[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    Represents a combined chart.
    -
    combinedChartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    combinedChartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    This example show how to build a combined chart.
    -
    Command - Class in com.cloudofficeprint.Server
    +
    Command - Class in com.cloudofficeprint.Server
    Command object with a single command for the Cloud Office Print server.
    -
    Command(String, JsonObject) - Constructor for class com.cloudofficeprint.Server.Command
    +
    Command(String, JsonObject) - Constructor for class com.cloudofficeprint.Server.Command
    -
    -
    Commands - Class in com.cloudofficeprint.Server
    +
    Commands - Class in com.cloudofficeprint.Server
    Commands object with commands for the Cloud Office Print server to run before or after the post processing.
    -
    Commands() - Constructor for class com.cloudofficeprint.Server.Commands
    +
    Commands() - Constructor for class com.cloudofficeprint.Server.Commands
     
    -
    COPChart - Class in com.cloudofficeprint.RenderElements
    +
    COPChart - Class in com.cloudofficeprint.RenderElements
    Supported in Word, Excel and Powerpoint templates.
    -
    COPChart(String, JsonArray, HashMap<String, JsonArray>, String, String, String, String, String, COPChartDateOptions) - Constructor for class com.cloudofficeprint.RenderElements.COPChart
    +
    COPChart(String, JsonArray, HashMap<String, JsonArray>, String, String, String, String, String, COPChartDateOptions) - Constructor for class com.cloudofficeprint.RenderElements.COPChart
    Represent a Cloud Office Print chart (including data and style).
    -
    COPChartDateOptions - Class in com.cloudofficeprint.RenderElements
    +
    COPChartDateOptions - Class in com.cloudofficeprint.RenderElements
    Date options for an COPChart (different from ChartDateOptions for the other Charts).
    -
    COPChartDateOptions(String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    COPChartDateOptions(String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.COPChartDateOptions
    This object represents the date options for a chart.
    -
    COPException - Exception in com.cloudofficeprint
    +
    COPException - Exception in com.cloudofficeprint
    Class for handling a HTTP response of the Cloud Office Print server when the responseCode is /= 200.
    -
    COPException(int, String) - Constructor for exception com.cloudofficeprint.COPException
    +
    COPException(int, String) - Constructor for exception com.cloudofficeprint.COPException
    Sets this.responseCode to responseCode.
    -
    COPPDFTextAndImageExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    COPPDFTextAndImageExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    This example shows you how to add text and images on pages of a template without tag.
    -
    CsvOptions - Class in com.cloudofficeprint.Output
    +
    CsvOptions - Class in com.cloudofficeprint.Output
    Class for all the optional PDF output options.
    -
    CsvOptions() - Constructor for class com.cloudofficeprint.Output.CsvOptions
    +
    CsvOptions() - Constructor for class com.cloudofficeprint.Output.CsvOptions
    Constructor for the CsvOptions object.
    - - - -

    D

    -
    -
    D3Code - Class in com.cloudofficeprint.RenderElements
    +

    D

    +
    +
    D3Code - Class in com.cloudofficeprint.RenderElements
    With Word/Excel/PowerPoint documents, it's possible to let Cloud Office Print execute some JavaScript code to generate a D3 image (Data Driven Documents).
    -
    D3Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.D3Code
    +
    D3Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.D3Code
    Represents an D3 image.
    -
    DoughnutChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    DoughnutChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a doughnut chart.
    -
    DoughnutChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
    DoughnutChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    Represents a doughnut chart.
    -
    downloadLocally(String) - Method in class com.cloudofficeprint.Response
    +
    downloadLocally(String) - Method in class com.cloudofficeprint.Response
    Downloads the file locally to the given path, filename needs to be specified at the end of the path, not the extension.
    - - - -

    E

    -
    -
    ElementCollection - Class in com.cloudofficeprint.RenderElements
    +

    E

    +
    +
    ElementCollection - Class in com.cloudofficeprint.RenderElements
    A collection used to group multiple RenderElements together.
    -
    ElementCollection(String) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    +
    ElementCollection(String) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    A collection used to group multiple RenderElements together.
    -
    ElementCollection(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    +
    ElementCollection(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    A collection used to group multiple RenderElements together.
    -
    EmailQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    EmailQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate an email QR-code element
    -
    EmailQRCode(String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    EmailQRCode(String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    This object represents a mail QR-code.
    -
    EventQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    EventQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate an event QR-code element
    -
    EventQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
    EventQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    This object represents a Event QR Code.
    -
    Examples - Class in com.cloudofficeprint.Examples.GeneralExamples
    +
    Examples - Class in com.cloudofficeprint.Examples.GeneralExamples
     
    -
    Examples() - Constructor for class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    Examples() - Constructor for class com.cloudofficeprint.Examples.GeneralExamples.Examples
     
    -
    execute() - Method in class com.cloudofficeprint.PrintJob
    +
    execute() - Method in class com.cloudofficeprint.PrintJob
    Creates the adequate JSON and sends it to the Cloud Office Print server.
    -
    ExternalResource - Class in com.cloudofficeprint.Resources
    +
    ExternalResource - Class in com.cloudofficeprint.Resources
    Abstract base class for external resources.
    -
    ExternalResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.ExternalResource
    +
    ExternalResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.ExternalResource
    Abstract base class for external resources.
    - - - -

    F

    -
    -
    FootNote - Class in com.cloudofficeprint.RenderElements
    +

    F

    +
    +
    FootNote - Class in com.cloudofficeprint.RenderElements
    Only supported in Word and Excel templates.
    -
    FootNote(String, String) - Constructor for class com.cloudofficeprint.RenderElements.FootNote
    +
    FootNote(String, String) - Constructor for class com.cloudofficeprint.RenderElements.FootNote
    Element to insert a footnote in a template.
    -
    Formula - Class in com.cloudofficeprint.RenderElements
    +
    Formula - Class in com.cloudofficeprint.RenderElements
    Only supported in Excel.
    -
    Formula(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Formula
    +
    Formula(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Formula
    Represents an Excel formula.
    -
    FTPToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    +
    Freeze - Class in com.cloudofficeprint.RenderElements
    +
    +
    This tag will allow you to utilize freeze pane property of the Excel.Three options are available.
    +
    +
    Freeze(String, boolean) - Constructor for class com.cloudofficeprint.RenderElements.Freeze
    +
    +
    This tag will allow you to use freeze pane property of Excel.
    +
    +
    Freeze(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Freeze
    +
    +
    This tag will allow you to use freeze pane property of Excel.
    +
    +
    FTPToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    Class to use for FTP/SFTP tokens to store output on a FTP/SFTP server.
    -
    FTPToken(String, Boolean, int, String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    FTPToken(String, Boolean, int, String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    Constructor for an FTPToken object.
    - - - -

    G

    -
    -
    GeolocationQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +

    G

    +
    +
    GeolocationQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate a geolocation QR-code element
    -
    GeolocationQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
    GeolocationQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    This object represents a VCF or vCard QR Code.
    -
    getAccessToken() - Method in class com.cloudofficeprint.Output.Output
    +
    getAccessToken() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getAltitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
    getAltitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
     
    -
    getAltText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getAltText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getAPIKey() - Method in class com.cloudofficeprint.Server.Server
    +
    getAPIKey() - Method in class com.cloudofficeprint.Server.Server
    Only applicable for service users.
    -
    getAppendFiles() - Method in class com.cloudofficeprint.PrintJob
    +
    getAppendFiles() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getArgs() - Method in class com.cloudofficeprint.Server.Command
    +
    getArgs() - Method in class com.cloudofficeprint.Server.Command
     
    -
    getAuth() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    getAuth() - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    getAutoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getAutoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getAutoColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getAutoColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getAutoColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getAutoColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
     
    -
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Note: displaying rounded corners is not supported by LibreOffice.
    -
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getBackGroundImage() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getBackGroundImage() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getBackgroundImageAlpha() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getBackgroundImageAlpha() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getBackgroundOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getBackgroundOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Note: backgroundOpacity is ignored if backgroundColor is not specified or if backgroundColor is specified in a color space which includes an alpha channel (e.g.
    -
    getBarSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
    getBarSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
     
    -
    getBarStackedPercentSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
    getBarStackedPercentSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
     
    -
    getBarStackedSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
    getBarStackedSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
     
    -
    getBcc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    getBcc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    getBirthday() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getBirthday() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
     
    -
    getBody() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
    getBody() - Method in class com.cloudofficeprint.Resources.RESTResource
     
    -
    getBody() - Method in class com.cloudofficeprint.Response
    +
    getBody() - Method in class com.cloudofficeprint.Response
     
    -
    getBold() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    getBold() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    getBold() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getBold() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getBold() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getBold() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getBorder() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getBooleanValue() - Method in class com.cloudofficeprint.RenderElements.Freeze
     
    -
    getBorderBottom() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorder() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getBorderBottomColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderBottom() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderDiagonal() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderBottomColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderDiagonalColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderDiagonal() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderDiagonalDirection() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderDiagonalColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderLeft() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderDiagonalDirection() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderLeftColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderLeft() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderRight() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderLeftColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderRightColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderRight() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderTop() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderRightColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getBorderTopColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getBorderTop() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getCc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    getBorderTopColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getCellBackground() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getCc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    getCellHidden() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getCellBackground() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getCellLocked() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getCellHidden() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getCellStyle() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
    getCellLocked() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getCharacterSet() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
    getCellStyle() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
     
    -
    getCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    getCharacterSet() - Method in class com.cloudofficeprint.Output.CsvOptions
     
    -
    getClose() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    getCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
     
    -
    getCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    getClose() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    getCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    getColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getColor() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getColors() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
    getColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
     
    +
    getColors() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    Note : If no colors are specified, the document's theme is used.
    -
    getColumns() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    getColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
    getColumns() - Method in class com.cloudofficeprint.RenderElements.CellSpan
     
    -
    getColumnStackedPercentageSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
    getColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
     
    -
    getCommand() - Method in class com.cloudofficeprint.Server.Command
    +
    getColumnStackedPercentageSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
     
    -
    getCommands() - Method in class com.cloudofficeprint.Server.Server
    +
    getCommand() - Method in class com.cloudofficeprint.Server.Command
     
    -
    getContactPrimary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getCommands() - Method in class com.cloudofficeprint.Server.Server
     
    -
    getContactSecondary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getContactPrimary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getContactTertiary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getContactSecondary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getConverter() - Method in class com.cloudofficeprint.Output.Output
    +
    getContactTertiary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getCopChartDateOptions() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getConverter() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getCopies() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getCopChartDateOptions() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getCopRemoteDebug() - Method in class com.cloudofficeprint.PrintJob
    +
    getCopies() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Useful when user needs multiple number of output copies
    +
    +
    getCopRemoteDebug() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getCOPVersionOnServer() - Method in class com.cloudofficeprint.Server.Server
    +
    getCOPVersionOnServer() - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to server-url/version.
    -
    getCsvOptions() - Method in class com.cloudofficeprint.Output.Output
    +
    getCsvOptions() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getData() - Method in class com.cloudofficeprint.PrintJob
    +
    getData() - Method in class com.cloudofficeprint.PrintJob
    Renderelements will replace their corresponding tag in the template.
    -
    getData() - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
    getData() - Method in class com.cloudofficeprint.RenderElements.D3Code
     
    -
    getDataSource() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    getDataSource() - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    getDate() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getDate() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getDepth() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
    getDepth() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
     
    -
    getDotScale() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getDotScale() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getElements() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    getElements() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    getElements() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    getElements() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
     
    -
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    getEncoding() - Method in class com.cloudofficeprint.Output.Output
    +
    getEncoding() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getEncryption() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    getEncryption() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
     
    -
    getEndDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
    getEndDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
     
    -
    getEndpoint() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    getEndpoint() - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    getEvenPage() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getEvenPage() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getExt() - Method in class com.cloudofficeprint.Response
    +
    getExt() - Method in class com.cloudofficeprint.Response
     
    -
    getExtension(String) - Static method in class com.cloudofficeprint.Mimetype
    +
    getExtension(String) - Static method in class com.cloudofficeprint.Mimetype
    Return the extension given the mimetype of a file.
    -
    getExtension(String) - Method in class com.cloudofficeprint.Resources.Resource
    +
    getExtension(String) - Method in class com.cloudofficeprint.Resources.Resource
     
    -
    getExternalResource() - Method in class com.cloudofficeprint.PrintJob
    +
    getExternalResource() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getExtraOptions() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getExtraOptions() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    If you want to include extra options like including barcode text on the botto The options should be space separated and should be followed by a "=" and their value.
    -
    getFieldSeparator() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
    getFieldSeparator() - Method in class com.cloudofficeprint.Output.CsvOptions
     
    -
    getFileBase64() - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
    getFileBase64() - Method in class com.cloudofficeprint.Resources.Base64Resource
     
    -
    getFileName() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    getFileName() - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    getFiletype() - Method in class com.cloudofficeprint.Resources.Resource
    +
    getFiletype() - Method in class com.cloudofficeprint.Resources.Resource
     
    -
    getFirstName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    getFirstName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getFont() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getFontBold() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontBold() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getFontItalic() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontItalic() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getFontStrike() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontStrike() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFontSubscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontSubscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFontSuperscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontSuperscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFontUnderline() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getFontUnderline() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getFormat() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    getFormat() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    getFormat() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    getFormat() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
     
    -
    getFormatCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getFormatCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getFormData() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
    getFormData() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
     
    -
    getGrid() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getGrid() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getHeaders() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    getHeaders() - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getHeightLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getHeightLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getHigh() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    getHigh() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    getHighlightColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getHighlightColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getHost() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    getHost() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    getHTML() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
    getHTML() - Method in class com.cloudofficeprint.Resources.HTMLResource
     
    -
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getIdentifyFormFields() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getIdentifyFormFields() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getImage() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    getImage() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    getImages() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
    getImages() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
     
    -
    getItalic() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    getItalic() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    getItalic() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getItalic() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getItalic() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getItalic() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getJobName() - Method in class com.cloudofficeprint.Server.Printer
    +
    getJobName() - Method in class com.cloudofficeprint.Server.Printer
     
    -
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
    getJSON() - Method in class com.cloudofficeprint.Output.CsvOptions
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.Output
    +
    getJSON() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getJSON() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getJSON() - Method in class com.cloudofficeprint.PrintJob
    +
    getJSON() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyle
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyle
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.CellSpan
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    No color needed for stockseries.
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.URLQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.URLQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.D3Code
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.FootNote
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.FootNote
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Formula
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Formula
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Freeze
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HTML
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HTML
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HyperLink
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PageBreak
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PageBreak
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Property
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Property
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Raw
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Raw
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    Don't use.
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RenderElement
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getJSON() - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    getJSON() - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    getJSON() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    +
    getJSON() - Method in class com.cloudofficeprint.Resources.GraphQLResource
     
    -
    getJSON() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
    getJSON() - Method in class com.cloudofficeprint.Resources.RESTResource
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Command
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Command
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Commands
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Commands
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Printer
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Printer
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Server
    +
    getJSON() - Method in class com.cloudofficeprint.Server.Server
     
    -
    getJsonArray() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    -
     
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
    getJsonArray() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    +
    To get raw json array.
    +
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
     
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
     
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    getJSONForPost() - Method in class com.cloudofficeprint.Server.Command
    +
    getJSONForPost() - Method in class com.cloudofficeprint.Server.Command
     
    -
    getJSONForPre() - Method in class com.cloudofficeprint.Server.Command
    +
    getJSONForPre() - Method in class com.cloudofficeprint.Server.Command
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Base64Resource
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.HTMLResource
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Resource
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Resource
    Needs to be used to get the JSON of a resource for a secondary file (file to prepend, to append, to insert or subtemplate), because their JSON has a different format then for a template.
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.ServerResource
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.ServerResource
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.URLResource
    +
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.URLResource
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Base64Resource
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.HTMLResource
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Resource
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Resource
    Needs to be called to get the JSON of a resource for a template.
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.ServerResource
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.ServerResource
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.URLResource
    +
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.URLResource
     
    -
    getKeyID() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
    getKeyID() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
     
    -
    getLandscape() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getLandscape() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    Only supported when converting HTML to PDF.
    +
    Returns whether to output PDF will have landscape orientation or not.
    -
    getLandscape() - Method in class com.cloudofficeprint.Resources.HTMLResource
    +
    getLandscape() - Method in class com.cloudofficeprint.Resources.HTMLResource
     
    -
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    getLegendPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getLegendPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getLegendStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getLegendStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getLineseries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    +
    getLineseries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
     
    -
    getLineStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    getLineStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    getLineThickness() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    getLineThickness() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    getLinkUrl() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getLinkUrl() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getLocation() - Method in class com.cloudofficeprint.Server.Printer
    +
    getLocation() - Method in class com.cloudofficeprint.Server.Printer
     
    -
    getLockForm() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getLockForm() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getLoggingInfo() - Method in class com.cloudofficeprint.Server.Server
    +
    getLoggingInfo() - Method in class com.cloudofficeprint.Server.Server
    When the Cloud Office Print server is started with --enable_printlog, it will create a file on the server called server_printjob.log.
    -
    getLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getLogoBackGroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getLogoBackGroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getLongitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
    getLongitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
     
    -
    getLow() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    getLow() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    getMajorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getMajorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getMajorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getMajorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getMax() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getMax() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getMaxHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getMaxHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    getMerge() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getMerge() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getMergeMakingEven() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getMergeMakingEven() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getMessageForSupport() - Method in exception com.cloudofficeprint.COPException
    +
    getMessageForSupport() - Method in exception com.cloudofficeprint.COPException
     
    -
    getMethod() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
    getMethod() - Method in class com.cloudofficeprint.Resources.RESTResource
     
    -
    getMimetype() - Method in class com.cloudofficeprint.Response
    +
    getMimetype() - Method in class com.cloudofficeprint.Response
     
    -
    getMimeType() - Method in class com.cloudofficeprint.Resources.Resource
    +
    getMimeType() - Method in class com.cloudofficeprint.Resources.Resource
     
    -
    getMimeType(String) - Static method in class com.cloudofficeprint.Mimetype
    +
    getMimeType(String) - Static method in class com.cloudofficeprint.Mimetype
    Return the mimetype given the extension of a file.
    -
    getMimetypeFromContentType(String) - Static method in class com.cloudofficeprint.Mimetype
    +
    getMimetypeFromContentType(String) - Static method in class com.cloudofficeprint.Mimetype
    Extract the mimetype from the Content-Type argument in an HTTP reponse.
    -
    getMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    +
    getMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to server-url/supported_template_mimetypes.
    -
    getMin() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getMin() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getMinorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getMinorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getMinorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getMinorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getModifiedChartDicts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    getModifiedChartDicts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
     
    -
    getModifyPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getModifyPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getName() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    getName() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    getName() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
    getName() - Method in class com.cloudofficeprint.RenderElements.RenderElement
     
    -
    getNickname() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getNickname() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getNotes() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getNotes() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    getOfficeToPdfVersion() - Method in class com.cloudofficeprint.Server.Server
    +
    getOfficeToPdfVersion() - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to server-url/officetopdf.
    -
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    Note: Decimal value between 0 and 1.
    -
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getOpen() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    getOpen() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    getOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
    getOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
     
    -
    getOrientation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getOrientation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getOutput() - Method in class com.cloudofficeprint.PrintJob
    +
    getOutput() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getOutputMimeTypesSupported(String) - Method in class com.cloudofficeprint.Server.Server
    +
    getOutputMimeTypesSupported(String) - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to server-url/supported_output_mimetypes?template=extension.
    -
    getPaddingHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getPaddingHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getPaddingWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getPaddingWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getPageFormat() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Only supported when converting HTML to PDF.
    -
    -
    getPageHeight() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getPageFormat() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
     
    +
    getPageHeight() - Method in class com.cloudofficeprint.Output.PDFOptions
    Only supported when converting HTML to PDF.
    -
    getPageMargin() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getPageMargin() - Method in class com.cloudofficeprint.Output.PDFOptions
    Only supported when converting HTML to PDF.
    -
    getPageNumber() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    getPageNumber() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    getPageWidth() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getPageWidth() - Method in class com.cloudofficeprint.Output.PDFOptions
    Only supported when converting HTML to PDF.
    -
    getPassword() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    getPassword() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    getPassword() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    getPassword() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
     
    -
    getPassword() - Method in class com.cloudofficeprint.Server.Server
    +
    getPassword() - Method in class com.cloudofficeprint.Server.Server
     
    -
    getPasswordProtectionFlag() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getPasswordProtectionFlag() - Method in class com.cloudofficeprint.Output.PDFOptions
    More info on the flag bits on https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
    -
    getPath() - Method in class com.cloudofficeprint.Resources.ServerResource
    +
    getPath() - Method in class com.cloudofficeprint.Resources.ServerResource
     
    -
    getPDFOptions() - Method in class com.cloudofficeprint.Output.Output
    +
    getPDFOptions() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getPiBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPiBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPiColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPiColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
     
    -
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
     
    -
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
     
    -
    getPiTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPiTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPiTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPiTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPoBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPoBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPort() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    getPort() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    getPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Note that not all options might be available for specific charts.
    -
    getPostConversion() - Method in class com.cloudofficeprint.Server.Commands
    +
    getPostConversion() - Method in class com.cloudofficeprint.Server.Commands
     
    -
    getPostMerge() - Method in class com.cloudofficeprint.Server.Commands
    +
    getPostMerge() - Method in class com.cloudofficeprint.Server.Commands
     
    -
    getPostProcess() - Method in class com.cloudofficeprint.Server.Commands
    +
    getPostProcess() - Method in class com.cloudofficeprint.Server.Commands
     
    -
    getPostProcessDeleteDelay() - Method in class com.cloudofficeprint.Server.Commands
    +
    getPostProcessDeleteDelay() - Method in class com.cloudofficeprint.Server.Commands
    Cloud Office Print deletes the file provided to the command directly after executing it.
    -
    getPostProcessReturn() - Method in class com.cloudofficeprint.Server.Commands
    +
    getPostProcessReturn() - Method in class com.cloudofficeprint.Server.Commands
    If you are already doing something with the file and don't want it to be returned in the response set this to true.
    -
    getPoTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPoTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPoTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getPoTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getPreConversion() - Method in class com.cloudofficeprint.Server.Commands
    +
    getPreConversion() - Method in class com.cloudofficeprint.Server.Commands
     
    -
    getPrependFiles() - Method in class com.cloudofficeprint.PrintJob
    +
    getPrependFiles() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getPrependMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    +
    getPrependMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to server-url/supported_prepend_mimetypes.
    -
    getPrinter() - Method in class com.cloudofficeprint.Server.Server
    +
    getPrinter() - Method in class com.cloudofficeprint.Server.Server
    Cloud Office Print supports to print directly to an IP Printer.
    -
    getProxyIP() - Method in class com.cloudofficeprint.Server.Server
    +
    getProxyIP() - Method in class com.cloudofficeprint.Server.Server
     
    -
    getProxyPort() - Method in class com.cloudofficeprint.Server.Server
    +
    getProxyPort() - Method in class com.cloudofficeprint.Server.Server
     
    -
    getQrErrorCorrectionLevel() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getQrErrorCorrectionLevel() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    Only for QR codes.
    -
    getQuery() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    +
    getQuery() - Method in class com.cloudofficeprint.Resources.GraphQLResource
     
    -
    getQuietZone() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getQuietZone() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getQuietZoneColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getQuietZoneColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getReadPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getReadPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getRequester() - Method in class com.cloudofficeprint.Server.Printer
    +
    getRemoveLastPage() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Returns whether to remove last page from output.
    +
    +
    getRequester() - Method in class com.cloudofficeprint.Server.Printer
     
    -
    getResponse() - Method in class com.cloudofficeprint.PrintJob
    +
    getResponse() - Method in class com.cloudofficeprint.PrintJob
    For getting to response after asynchronous execution.
    -
    getResponseCode() - Method in exception com.cloudofficeprint.COPException
    +
    getResponseCode() - Method in exception com.cloudofficeprint.COPException
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getReturnOutput() - Method in class com.cloudofficeprint.Server.Printer
    +
    +
    You can specify to whether to return output from server
    +
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getRoundedCorners() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getRoundedCorners() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getRows() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
    getRows() - Method in class com.cloudofficeprint.RenderElements.CellSpan
     
    -
    getSecondaryCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    getSecondaryCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
     
    -
    getSecretKey() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
    getSecretKey() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
     
    -
    getSeparator() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getSeparator() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
     
    -
    getServer() - Method in class com.cloudofficeprint.PrintJob
    +
    getServer() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getServerDirectory() - Method in class com.cloudofficeprint.Output.Output
    +
    getServerDirectory() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getService() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
    getService() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
     
    -
    getSheetNames() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    getSheetNames() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
     
    -
    getShowCategoryName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getShowCategoryName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getShowDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getShowDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Default true for pie/pie3d and doughnut.
    -
    getShowLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getShowLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getShowLegendKey() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getShowLegendKey() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getShowPercentage() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getShowPercentage() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getShowSeriesName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getShowSeriesName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getShowValue() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getShowValue() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getSignCertificate() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    It is possible to sign the output PDF if the output pdf has a signature - field.
    -
    -
    getSizes() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
    getSignCertificate() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getSmooth() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    getSignCertificatePassword() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getSofficeVersionServer() - Method in class com.cloudofficeprint.Server.Server
    +
    getSizes() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
     
    +
    getSmooth() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
     
    +
    getSofficeVersionServer() - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to server-url/soffice.
    -
    getSplit() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getStackedColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
    getSplit() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Returns whether to split or not.
    +
    +
    getStackedColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
     
    -
    getStartDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
    getStartDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
     
    -
    getStep() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    getStep() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    getStep() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    getStep() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
     
    -
    getStrikethrough() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getStrikethrough() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getSubject() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    getSubject() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    getSubTemplates() - Method in class com.cloudofficeprint.PrintJob
    +
    getSubTemplates() - Method in class com.cloudofficeprint.PrintJob
    Subtemplates are only accessible (in docx).
    -
    getSymbol() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    getSymbol() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    getSymbolSize() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    getSymbolSize() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    getTabLeader() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
    getTabLeader() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
     
    -
    getTargetUrl() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getTargetUrl() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getTemplate() - Method in class com.cloudofficeprint.PrintJob
    +
    getTemplate() - Method in class com.cloudofficeprint.PrintJob
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.CellSpan
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.D3Code
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.FootNote
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.FootNote
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Formula
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Formula
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HTML
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Freeze
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HTML
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HyperLink
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Labels
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Labels
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SlideLoop
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SlideLoop
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PageBreak
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PageBreak
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Property
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Raw
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Property
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Raw
    +
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    Don't use.
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RenderElement
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    +
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    Cannot be used for a resource.
    -
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.RESTResource
    +
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.RESTResource
    Cannot be used for a resource.
    -
    getText() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    getText() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    getTextDelimiter() - Method in class com.cloudofficeprint.Output.CsvOptions
    +
    getTextDelimiter() - Method in class com.cloudofficeprint.Output.CsvOptions
     
    -
    getTextHAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getTextHAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getTextRotation() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getTextRotation() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getTexts() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
    getTexts() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
     
    -
    getTextVAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    getTextVAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    getTimingColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getTimingColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getTimingHColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getTimingHColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getTimingVColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getTimingVColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getTitleRotation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getTitleRotation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getToken() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
    getToken() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
     
    -
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getType() - Method in class com.cloudofficeprint.Output.Output
    +
    getType() - Method in class com.cloudofficeprint.Output.Output
     
    -
    getType() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    +
    getType() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
     
    -
    getUnderline() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    getUnderline() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    getUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    getUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    getUnit() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    getUnit() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
     
    -
    getURID() - Method in exception com.cloudofficeprint.COPException
    +
    getURID() - Method in exception com.cloudofficeprint.COPException
     
    -
    getUrl() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
    getUrl() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    Note : In Excel you can hyperlink to a cell.
    -
    getUrl() - Method in class com.cloudofficeprint.Server.Server
    +
    getUrl() - Method in class com.cloudofficeprint.Server.Server
    +
     
    +
    getURL() - Method in class com.cloudofficeprint.Resources.URLResource
     
    -
    getURL() - Method in class com.cloudofficeprint.Resources.URLResource
    +
    getUserMessage() - Method in exception com.cloudofficeprint.COPException
     
    -
    getUserMessage() - Method in exception com.cloudofficeprint.COPException
    +
    getUsername() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    getUsername() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    getUsername() - Method in class com.cloudofficeprint.Server.Server
     
    -
    getUsername() - Method in class com.cloudofficeprint.Server.Server
    +
    getValue() - Method in class com.cloudofficeprint.RenderElements.RenderElement
     
    -
    getValue() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
    getValues() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getValues() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getValuesStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    getValuesStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    getVersion() - Method in class com.cloudofficeprint.Server.Printer
     
    -
    getVersion() - Method in class com.cloudofficeprint.Server.Printer
    +
    getVolume() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    getVolume() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    getWatermark() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getWatermark() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    getWatermarkColor() - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Returns the color of your watermark.
    +
    +
    getWatermarkFont() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    getWatermarkFontSize() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    getWatermarkOpacity() - Method in class com.cloudofficeprint.Output.PDFOptions
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
     
    +
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
     
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    The width manipulation is available from Cloud Office Print 20.2.
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Watermark
     
    -
    getWidthLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    getWidthLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    getWifiHidden() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    getWifiHidden() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
     
    -
    getWrapText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    getWrapText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    Note : only supports 5 of the Microsoft Word Text Wrapping options.
    -
    getX() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    getX() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    getX() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    getX() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    getX2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getX2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getXAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getXAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getXData() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getXData() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getXTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getXTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getY() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    getY() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    getY() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    getY() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    getY2AxisOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getY2AxisOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getY2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getY2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getYAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    getYAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    getYData() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getYData() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    getYTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    getYTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    GraphQLResource - Class in com.cloudofficeprint.Resources
    +
    GraphQLResource - Class in com.cloudofficeprint.Resources
    Class for working with a GraphQL endpoint as Resource.
    -
    GraphQLResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.GraphQLResource
    +
    GraphQLResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.GraphQLResource
    Resource from a GraphQL endpoint.
    - - - -

    H

    -
    -
    HTML - Class in com.cloudofficeprint.RenderElements
    +

    H

    +
    +
    HTML - Class in com.cloudofficeprint.RenderElements
    Only supported in Word, Excel, HTML and Md templates.
    -
    HTML(String, String) - Constructor for class com.cloudofficeprint.RenderElements.HTML
    +
    HTML(String, String) - Constructor for class com.cloudofficeprint.RenderElements.HTML
    HTML text can be rendered and put in templates.
    -
    HTMLResource - Class in com.cloudofficeprint.Resources
    +
    HTMLResource - Class in com.cloudofficeprint.Resources
    Child class of Resource.
    -
    HTMLResource(String, Boolean) - Constructor for class com.cloudofficeprint.Resources.HTMLResource
    +
    HTMLResource(String, Boolean) - Constructor for class com.cloudofficeprint.Resources.HTMLResource
    Constructor for this class.
    -
    HyperLink - Class in com.cloudofficeprint.RenderElements
    +
    HyperLink - Class in com.cloudofficeprint.RenderElements
    Class representing a hyperlink for templates.
    -
    HyperLink(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.HyperLink
    +
    HyperLink(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.HyperLink
    Element to insert a footnote in a template.
    - - - -

    I

    -
    -
    Image - Class in com.cloudofficeprint.RenderElements.Images
    +

    I

    +
    +
    Image - Class in com.cloudofficeprint.RenderElements.Images
     
    -
    Image() - Constructor for class com.cloudofficeprint.RenderElements.Images.Image
    +
    Image() - Constructor for class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    ImageBase64 - Class in com.cloudofficeprint.RenderElements.Images
    +
    ImageBase64 - Class in com.cloudofficeprint.RenderElements.Images
    Represents an image to insert in a template with a base64-encoded string as source.
    -
    ImageBase64(String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    +
    ImageBase64(String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    This object represent an image to insert in the template.
    -
    ImageBase64(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    +
    ImageBase64(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    This object represent an image to insert in the template.
    -
    ImageUrl - Class in com.cloudofficeprint.RenderElements.Images
    +
    ImageUrl - Class in com.cloudofficeprint.RenderElements.Images
    Represents an image to insert in a template with a URL string as source.
    -
    ImageUrl(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageUrl
    +
    ImageUrl(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageUrl
    This object represent an image to insert in the template.
    -
    InlineDataLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    InlineDataLoop - Class in com.cloudofficeprint.RenderElements.Loops
    Horizontal table looping for Word, Excel and CSV templates.
    -
    InlineDataLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
    +
    InlineDataLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
    Horizontal table looping for Word, Excel and CSV templates.
    -
    isReachable() - Method in class com.cloudofficeprint.Server.Server
    +
    isIppPrinterReachable() - Method in class com.cloudofficeprint.Server.Server
    +
    +
    Sends a Get request to check the status of ipp-printer provided with location and version of url.
    +
    +
    isReachable() - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to server-url/marco and checks if the answer is polo.
    -
    isVerbose() - Method in class com.cloudofficeprint.Server.Server
    +
    isVerbose() - Method in class com.cloudofficeprint.Server.Server
     
    - - - -

    L

    -
    -
    Labels - Class in com.cloudofficeprint.RenderElements.Loops
    +

    L

    +
    +
    Labels - Class in com.cloudofficeprint.RenderElements.Loops
    Cloud Office Print also provides a way to print labels Word documents.
    -
    Labels(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Labels
    +
    Labels(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Labels
    Cloud Office Print also provides a way to print labels Word documents.
    -
    LineChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    LineChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    This class represents line charts.
    -
    LineChart(String, ChartOptions, LineSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    +
    LineChart(String, ChartOptions, LineSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    Represents a line chart.
    -
    LineSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    LineSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for a chart where the data-points are connected with lines.
    -
    LineSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    LineSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    This object represents series for a line chart (where data-points are connected with lines).
    -
    localJson(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    localJson(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    Example where the local test.json is read and send to the server.
    -
    localTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    localTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    Example with templateTest.docx as template, a list of properties and an image as data.
    -
    localTemplateAsync(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    localTemplateAsync(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    Asynchronous version of the above example.
    -
    Loop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    Loop - Class in com.cloudofficeprint.RenderElements.Loops
    Represents elements to be included in loops in templates.
    -
    Loop(String) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    Loop(String) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    Loop elements for a template.
    -
    Loop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    Loop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    Loop elements for a template.
    -
    Loop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    Loop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    Loop elements for a template.
    -
    loopExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    loopExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    In this example 2 nested loops are given in the template.
    - - - -

    M

    -
    -
    main(String) - Method in class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    +

    M

    +
    +
    main(String) - Method in class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    This is an example of how you can merge the output files generated from a single template using multiple requests.
    -
    main(String) - Method in class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    +
    main(String) - Method in class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
     
    -
    main(String) - Method in class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    +
    main(String) - Method in class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
     
    -
    main(String[]) - Static method in class com.cloudofficeprint.Main
    +
    main(String[]) - Static method in class com.cloudofficeprint.Main
     
    -
    main(String, String) - Method in class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    +
    main(String, String) - Method in class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
     
    -
    main(String, String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    +
    main(String, String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
     
    -
    Main - Class in com.cloudofficeprint
    +
    Main - Class in com.cloudofficeprint
     
    -
    Main() - Constructor for class com.cloudofficeprint.Main
    +
    Main() - Constructor for class com.cloudofficeprint.Main
     
    -
    makeCollectionFromJson(String, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    makeCollectionFromJson(String, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
    Parses a JsonArray to an elementcollection.
    -
    MarkDownContent - Class in com.cloudofficeprint.RenderElements
    +
    MarkDownContent - Class in com.cloudofficeprint.RenderElements
    Only supported in Word.
    -
    MarkDownContent(String, String) - Constructor for class com.cloudofficeprint.RenderElements.MarkDownContent
    +
    MarkDownContent(String, String) - Constructor for class com.cloudofficeprint.RenderElements.MarkDownContent
    Represents an object that indicates to put a break in the template or not.
    -
    MECardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    MECardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate a MeCard QR-code element
    -
    MECardQRCode(String, String, String, String, String, String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    MECardQRCode(String, String, String, String, String, String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    This object represents a VCF or vCard QR Code.
    -
    Mimetype - Class in com.cloudofficeprint
    +
    Mimetype - Class in com.cloudofficeprint
    Own mimetype class (org.apache.tike gives warnings for logging)
    -
    Mimetype() - Constructor for class com.cloudofficeprint.Mimetype
    +
    Mimetype() - Constructor for class com.cloudofficeprint.Mimetype
     
    -
    MultipleRequestMergeExample - Class in com.cloudofficeprint.Examples.MultipleRequestMerge
    +
    MultipleRequestMergeExample - Class in com.cloudofficeprint.Examples.MultipleRequestMerge
     
    -
    MultipleRequestMergeExample() - Constructor for class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    +
    MultipleRequestMergeExample() - Constructor for class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
     
    - - - -

    O

    -
    -
    OAuth2Token - Class in com.cloudofficeprint.Output.CloudAcessToken
    +

    O

    +
    +
    OAuth2Token - Class in com.cloudofficeprint.Output.CloudAcessToken
    Class to use for OAuth 2 tokens.
    -
    OAuth2Token(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
    OAuth2Token(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    Constructor for an OAuth2Token object.
    -
    OrderConfirmationExample - Class in com.cloudofficeprint.Examples.OrderConfirmation
    +
    OrderConfirmationExample - Class in com.cloudofficeprint.Examples.OrderConfirmation
     
    -
    OrderConfirmationExample() - Constructor for class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    +
    OrderConfirmationExample() - Constructor for class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
     
    -
    Output - Class in com.cloudofficeprint.Output
    +
    Output - Class in com.cloudofficeprint.Output
    Class representing the output configuration of a request.
    -
    Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions) - Constructor for class com.cloudofficeprint.Output.Output
    +
    Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions) - Constructor for class com.cloudofficeprint.Output.Output
    Constructor to create a populated output object.
    - - - -

    P

    -
    -
    PageBreak - Class in com.cloudofficeprint.RenderElements
    +

    P

    +
    +
    PageBreak - Class in com.cloudofficeprint.RenderElements
    Only supported in Word and Excel.
    -
    PageBreak(String, String) - Constructor for class com.cloudofficeprint.RenderElements.PageBreak
    +
    PageBreak(String, String) - Constructor for class com.cloudofficeprint.RenderElements.PageBreak
    Represents an object that indicates to put a break in the template or not.
    -
    PDFFormData - Class in com.cloudofficeprint.RenderElements.PDF
    +
    PDFFormData - Class in com.cloudofficeprint.RenderElements.PDF
    It is possible to fill in the forms using Cloud Office Print.
    -
    PDFFormData(HashMap<String, String>) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
    PDFFormData(HashMap<String, String>) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    It is possible to fill in the forms using Cloud Office Print.
    -
    PDFImage - Class in com.cloudofficeprint.RenderElements.PDF
    +
    PDFImage - Class in com.cloudofficeprint.RenderElements.PDF
     
    -
    PDFImage(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    PDFImage(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    Represents an image to insert in a PDF.
    -
    PDFImage(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    PDFImage(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    Represents an image to insert in a PDF.
    -
    PDFImages - Class in com.cloudofficeprint.RenderElements.PDF
    +
    PDFImages - Class in com.cloudofficeprint.RenderElements.PDF
    Group of different PDF images as one RenderElement.
    -
    PDFImages(PDFImage[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImages
    +
    PDFImages(PDFImage[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImages
     
    -
    PDFInsertObject - Class in com.cloudofficeprint.RenderElements.PDF
    +
    PDFInsertObject - Class in com.cloudofficeprint.RenderElements.PDF
    Abstract base class for PDF's insertable objects.
    -
    PDFInsertObject(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    PDFInsertObject(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    Represents an object to insert in a PDF.
    -
    PDFOptions - Class in com.cloudofficeprint.Output
    +
    PDFOptions - Class in com.cloudofficeprint.Output
    Class for all the optional PDF output options.
    -
    PDFOptions() - Constructor for class com.cloudofficeprint.Output.PDFOptions
    +
    PDFOptions() - Constructor for class com.cloudofficeprint.Output.PDFOptions
    Constructor for the PDFOptions object.
    -
    PDFSignatureExample - Class in com.cloudofficeprint.Examples.PDFSignature
    +
    PDFSignatureExample - Class in com.cloudofficeprint.Examples.PDFSignature
     
    -
    PDFSignatureExample() - Constructor for class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    +
    PDFSignatureExample() - Constructor for class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
     
    -
    PDFText - Class in com.cloudofficeprint.RenderElements.PDF
    +
    PDFText - Class in com.cloudofficeprint.RenderElements.PDF
     
    -
    PDFText(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    PDFText(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFText
    Represents text to insert in a PDF.
    -
    PDFTexts - Class in com.cloudofficeprint.RenderElements.PDF
    +
    PDFTexts - Class in com.cloudofficeprint.RenderElements.PDF
    Group of different PDF texts as one RenderElement.
    -
    PDFTexts(PDFText[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
    PDFTexts(PDFText[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFTexts
     
    -
    Pie3DChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    Pie3DChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a 3D pie chart.
    -
    Pie3DChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
    Pie3DChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    Represents a 3D pie chart.
    -
    PieChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    PieChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a pie chart.
    -
    PieChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
    PieChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    Represents a pie chart.
    -
    PieSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    PieSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    This class represents series for pie charts.
    -
    PieSeries(String, String[], String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
    PieSeries(String, String[], String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    This object represents series for a pie chart.
    -
    prependAppendSubTemplatesExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    prependAppendSubTemplatesExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    This example shows you how to prepend/append files and how to use subtemplates in a template.
    -
    Printer - Class in com.cloudofficeprint.Server
    +
    Printer - Class in com.cloudofficeprint.Server
    Cloud Office Print supports to print directly to an IP Printer.
    -
    Printer(String, String, String, String) - Constructor for class com.cloudofficeprint.Server.Printer
    +
    Printer(String, String, String, String, boolean) - Constructor for class com.cloudofficeprint.Server.Printer
    Cloud Office Print supports to print directly to an IP Printer.
    -
    PrintJob - Class in com.cloudofficeprint
    +
    PrintJob - Class in com.cloudofficeprint
    A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server.
    -
    PrintJob(ExternalResource, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    +
    PrintJob(ExternalResource, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server.
    -
    PrintJob(Hashtable<String, RenderElement>, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    +
    PrintJob(Hashtable<String, RenderElement>, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    A print job for the Cloud Office Print server containing all the necessary information to generate the adequate JSON for the Cloud Office Print server.
    -
    Property - Class in com.cloudofficeprint.RenderElements
    +
    Property - Class in com.cloudofficeprint.RenderElements
    The most basic RenderElement.
    -
    Property(String, int) - Constructor for class com.cloudofficeprint.RenderElements.Property
    +
    Property(String, int) - Constructor for class com.cloudofficeprint.RenderElements.Property
    The most basic RenderElement.
    -
    Property(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Property
    +
    Property(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Property
    The most basic RenderElement.
    - - - -

    Q

    -
    -
    QRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +

    Q

    +
    +
    QRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of Code and serves as a superclass for the different types of QR-codes.
    -
    QRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    QRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.QRCode
    This class is a subclass of Code and serves as a superclass for the different types of QR-codes.
    -
    qrCodeExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    qrCodeExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    This example show how to work with Codes (QR code and barcode).
    - - - -

    R

    -
    -
    RadarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +

    R

    +
    +
    RadarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a radar chart.
    -
    RadarChart(String, ChartOptions, RadarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
    RadarChart(String, ChartOptions, RadarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    Represents a radar chart.
    -
    RadarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    RadarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for radar charts.
    -
    RadarSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries
    +
    RadarSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries
    This object represents series for a radar chart.
    -
    Raw - Class in com.cloudofficeprint.RenderElements
    +
    Raw - Class in com.cloudofficeprint.RenderElements
    Only available for HTML and Markdown templates.
    -
    Raw(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Raw
    +
    Raw(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Raw
     
    -
    RawJsonArray - Class in com.cloudofficeprint.RenderElements
    +
    RawJsonArray - Class in com.cloudofficeprint.RenderElements
    Represents a raw JsonArray to include in the data.
    -
    RawJsonArray(String, JsonArray) - Constructor for class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    RawJsonArray(String, JsonArray) - Constructor for class com.cloudofficeprint.RenderElements.RawJsonArray
    Element to insert a footnote in a template.
    -
    readJson(String) - Method in class com.cloudofficeprint.Server.Server
    +
    readJson(String) - Method in class com.cloudofficeprint.Server.Server
    Function to read a local JSON file.
    -
    removeDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    removeDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Turns the datalabels of.
    -
    removeElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    removeElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    removeElementByName(String) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    removeElementByName(String) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    removeLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    removeLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Turns the legend of.
    -
    RenderElement - Class in com.cloudofficeprint.RenderElements
    +
    RenderElement - Class in com.cloudofficeprint.RenderElements
    Abstract class for renderElements.
    -
    RenderElement() - Constructor for class com.cloudofficeprint.RenderElements.RenderElement
    +
    RenderElement() - Constructor for class com.cloudofficeprint.RenderElements.RenderElement
     
    -
    replaceKeyRecursive(JsonObject, String, String) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    replaceKeyRecursive(JsonObject, String, String) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    Replaces all the occurrences of oldKey in the json with the newKey.
    -
    Resource - Class in com.cloudofficeprint.Resources
    +
    Resource - Class in com.cloudofficeprint.Resources
    Resource is an abstract class for all the different resource types for the templates and "secondary files" : subtemplates, files to prepend, files to append and files to insert (in the template).
    -
    Resource() - Constructor for class com.cloudofficeprint.Resources.Resource
    +
    Resource() - Constructor for class com.cloudofficeprint.Resources.Resource
     
    -
    Response - Class in com.cloudofficeprint
    +
    Response - Class in com.cloudofficeprint
    Class for dealing with the Cloud Office Print server's response to a printjob request.
    -
    Response(String, String, byte[]) - Constructor for class com.cloudofficeprint.Response
    +
    Response(String, String, byte[]) - Constructor for class com.cloudofficeprint.Response
     
    -
    RESTResource - Class in com.cloudofficeprint.Resources
    +
    RESTResource - Class in com.cloudofficeprint.Resources
    Class for working with a REST endpoint as Resource.
    -
    RESTResource(String, String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.RESTResource
    +
    RESTResource(String, String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.RESTResource
    Resource from an REST endpoint.
    -
    RightToLeft - Class in com.cloudofficeprint.RenderElements
    +
    RightToLeft - Class in com.cloudofficeprint.RenderElements
    Only supported in Word templates, might work in other templates but behaviour is not predictable.
    -
    RightToLeft(String, String) - Constructor for class com.cloudofficeprint.RenderElements.RightToLeft
    +
    RightToLeft(String, String) - Constructor for class com.cloudofficeprint.RenderElements.RightToLeft
    When substituting the content in a language written in right to left, like Arabic, this object can be used to properly format the language.
    -
    run() - Method in class com.cloudofficeprint.PrintJob
    +
    run() - Method in class com.cloudofficeprint.PrintJob
    Asynchronous version of execute().
    - - - -

    S

    -
    -
    ScatterChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +

    S

    +
    +
    ScatterChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a scatter chart.
    -
    ScatterChart(String, ChartOptions, ScatterSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
    ScatterChart(String, ChartOptions, ScatterSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    Represents an area chart.
    -
    ScatterSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    ScatterSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    Represents series for scatter charts.
    -
    ScatterSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries
    +
    ScatterSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries
    This object represents series for a scatter charts.
    -
    sendGETRequest(String) - Method in class com.cloudofficeprint.Server.Server
    +
    sendGETRequest(String) - Method in class com.cloudofficeprint.Server.Server
    Sends a GET request to the url.
    -
    sendPOSTRequest(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    +
    sendPOSTRequest(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    Sends a POST request with the given json file as body.
    -
    Server - Class in com.cloudofficeprint.Server
    +
    Server - Class in com.cloudofficeprint.Server
    Class representing the Cloud Office Print server to interact with.
    -
    Server(String) - Constructor for class com.cloudofficeprint.Server.Server
    +
    Server(String) - Constructor for class com.cloudofficeprint.Server.Server
    Most basic constructor of the server.
    -
    Server(String, String, Printer, Commands, JsonObject, String, Integer) - Constructor for class com.cloudofficeprint.Server.Server
    +
    Server(String, String, Printer, Commands, JsonObject, String, Integer) - Constructor for class com.cloudofficeprint.Server.Server
    Use default values if you don't want to specify an argument.
    -
    ServerResource - Class in com.cloudofficeprint.Resources
    +
    ServerResource - Class in com.cloudofficeprint.Resources
    Child class of Resource.
    -
    ServerResource(String, String) - Constructor for class com.cloudofficeprint.Resources.ServerResource
    +
    ServerResource(String, String) - Constructor for class com.cloudofficeprint.Resources.ServerResource
    Creates a resource with given path.
    -
    setAccessToken(CloudAccessToken) - Method in class com.cloudofficeprint.Output.Output
    +
    setAccessToken(CloudAccessToken) - Method in class com.cloudofficeprint.Output.Output
    Sets the access token object of the output, if you want to store the output on a cloud based service.
    -
    setAltitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    +
    setAltitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
     
    -
    setAltText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setAltText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setAPIKey(String) - Method in class com.cloudofficeprint.Server.Server
    +
    setAPIKey(String) - Method in class com.cloudofficeprint.Server.Server
    Only applicable for service users.
    -
    setAppendFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
    +
    setAppendFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
     
    -
    setArgs(JsonObject) - Method in class com.cloudofficeprint.Server.Command
    +
    setArgs(JsonObject) - Method in class com.cloudofficeprint.Server.Command
     
    -
    setAuth(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    setAuth(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    setAutoColor(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setAutoColor(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setAutoColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setAutoColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setAutoColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setAutoColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
     
    -
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Note: displaying rounded corners is not supported by LibreOffice.
    -
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    setBackGroundImage(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setBackGroundImage(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setBackgroundImageAlpha(Double) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setBackgroundImageAlpha(Double) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setBackGroundImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setBackGroundImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    Sets the background image of the QR code to the given image from the path.
    -
    setBackgroundOpacity(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setBackgroundOpacity(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Note: backgroundOpacity is ignored if backgroundColor is not specified or if backgroundColor is specified in a color space which includes an alpha channel (e.g.
    -
    setBarSeries(ArrayList<BarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    +
    setBarSeries(ArrayList<BarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
     
    -
    setBarStackedPercentSeries(ArrayList<BarStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    +
    setBarStackedPercentSeries(ArrayList<BarStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
     
    -
    setBarStackedSeries(ArrayList<BarStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    +
    setBarStackedSeries(ArrayList<BarStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
     
    -
    setBcc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    setBcc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    setBirthday(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setBirthday(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setBody(byte[]) - Method in class com.cloudofficeprint.Response
    +
    setBody(byte[]) - Method in class com.cloudofficeprint.Response
     
    -
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
     
    -
    setBody(String) - Method in class com.cloudofficeprint.Resources.RESTResource
    +
    setBody(String) - Method in class com.cloudofficeprint.Resources.RESTResource
     
    -
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setBorder(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setBooleanValue(boolean) - Method in class com.cloudofficeprint.RenderElements.Freeze
     
    -
    setBorderBottom(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorder(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setBorderBottomColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderBottom(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderDiagonal(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderBottomColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderDiagonalColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderDiagonal(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderDiagonalDirection(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderDiagonalColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderLeft(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderDiagonalDirection(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderLeftColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderLeft(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderRight(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderLeftColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderRightColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderRight(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderTop(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderRightColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setBorderTopColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setBorderTop(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setCc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    setBorderTopColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setCellBackground(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setCc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    setCellHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setCellBackground(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setCellLocked(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setCellHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setCellStyle(CellStyle) - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
    setCellLocked(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setCharacterSet(Integer) - Method in class com.cloudofficeprint.Output.CsvOptions
    +
    setCellStyle(CellStyle) - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
     
    -
    setCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    setCharacterSet(Integer) - Method in class com.cloudofficeprint.Output.CsvOptions
     
    -
    setClose(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    setCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
     
    -
    setCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    setClose(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    setCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
     
    +
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    Default :"silver".
    -
    setColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setColors(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    +
    setColors(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    Note : If no colors are specified, the document's theme is used.
    -
    setColumns(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    setColumnSeries(ArrayList<ColumnSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    +
    setColumns(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
     
    -
    setColumnStackedPercentageSeries(ArrayList<ColumnStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    +
    setColumnSeries(ArrayList<ColumnSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
     
    -
    setCommand(String) - Method in class com.cloudofficeprint.Server.Command
    +
    setColumnStackedPercentageSeries(ArrayList<ColumnStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
     
    -
    setCommands(Commands) - Method in class com.cloudofficeprint.Server.Server
    +
    setCommand(String) - Method in class com.cloudofficeprint.Server.Command
     
    -
    setContactPrimary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setCommands(Commands) - Method in class com.cloudofficeprint.Server.Server
     
    -
    setContactSecondary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setContactPrimary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setContactTertiary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setContactSecondary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setConverter(String) - Method in class com.cloudofficeprint.Output.Output
    +
    setContactTertiary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setCopChartDateOptions(COPChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setConverter(String) - Method in class com.cloudofficeprint.Output.Output
     
    -
    setCopies(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setCopChartDateOptions(COPChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    setCopRemoteDebug(Boolean) - Method in class com.cloudofficeprint.PrintJob
    +
    setCopies(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the Number of times the output will be repeated.
    +
    +
    setCopRemoteDebug(Boolean) - Method in class com.cloudofficeprint.PrintJob
     
    -
    setCsvOptions(CsvOptions) - Method in class com.cloudofficeprint.Output.Output
    +
    setCsvOptions(CsvOptions) - Method in class com.cloudofficeprint.Output.Output
     
    -
    setData(String) - Method in class com.cloudofficeprint.RenderElements.D3Code
    +
    setData(String) - Method in class com.cloudofficeprint.RenderElements.D3Code
     
    -
    setData(Hashtable<String, RenderElement>) - Method in class com.cloudofficeprint.PrintJob
    +
    setData(Hashtable<String, RenderElement>) - Method in class com.cloudofficeprint.PrintJob
    Renderelements will replace their corresponding tag in the template.
    -
    setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Turn the data labels on.
    -
    setDataSource(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    setDataSource(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    setDateOptions(ChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setDateOptions(ChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setDepth(int) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
    setDepth(int) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
     
    -
    setDotScale(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setDotScale(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    +
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    +
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
     
    -
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    setEncoding(String) - Method in class com.cloudofficeprint.Output.Output
    +
    setEncoding(String) - Method in class com.cloudofficeprint.Output.Output
     
    -
    setEncryption(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    setEncryption(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
     
    -
    setEndDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
    setEndDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
     
    -
    setEndpoint(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    setEndpoint(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    setEvenPage(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    setExt(String) - Method in class com.cloudofficeprint.Response
    +
    setEvenPage(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets whether the output will have even pages.(blank page added if uneven amount of pages).
    +
    +
    setExt(String) - Method in class com.cloudofficeprint.Response
     
    -
    setExternalResource(ExternalResource) - Method in class com.cloudofficeprint.PrintJob
    +
    setExternalResource(ExternalResource) - Method in class com.cloudofficeprint.PrintJob
     
    -
    setExtraOptions(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setExtraOptions(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    If you want to include extra options like including barcode text on the botto The options should be space separated and should be followed by a "=" and their value.
    -
    setFieldSeparator(String) - Method in class com.cloudofficeprint.Output.CsvOptions
    +
    setFieldSeparator(String) - Method in class com.cloudofficeprint.Output.CsvOptions
     
    -
    setFileBase64(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
    setFileBase64(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    Sets the data of the resource to the given parameter.
    -
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Images.ImageBase64
    +
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Images.ImageBase64
    Reads all bytes of the file, converts them to base64 and stores them in this.value.
    -
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    +
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    Sets the filetype of this resource to the extension of the file, sets the mimetype as well.
    -
    setFileName(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    setFileName(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    setFiletype(String) - Method in class com.cloudofficeprint.Resources.Resource
    +
    setFiletype(String) - Method in class com.cloudofficeprint.Resources.Resource
    Sets the filetype (extension) of the resource to the given filetype.
    -
    setFirstName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    setFirstName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    Default : Calibri.
    -
    setFontBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    setFontItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    setFontSize(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setFontSize(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setFontStrike(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontStrike(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFontSubscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontSubscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFontSuperscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontSuperscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFontUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setFontUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
     
    -
    setFormatCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setFormatCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setFormData(HashMap<String, String>) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    +
    setFormData(HashMap<String, String>) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
     
    -
    setGrid(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setGrid(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setHeaders(JsonArray) - Method in class com.cloudofficeprint.Resources.ExternalResource
    +
    setHeaders(JsonArray) - Method in class com.cloudofficeprint.Resources.ExternalResource
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    Default : automatically determined by Cloud Office Print.
    -
    setHeightLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setHeightLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setHigh(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    setHigh(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    setHighlightColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setHighlightColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setHost(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    setHost(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    setIdentifyFormFields(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    setImage(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    setIdentifyFormFields(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets whether to get identityFormFields.
    +
    +
    setImage(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    setImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    setImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    Sets the image to the image on the filepath.
    -
    setImages(PDFImage[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    -
     
    -
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    +
    setImages(PDFImage[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
     
    -
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
     
    -
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    setJobName(String) - Method in class com.cloudofficeprint.Server.Printer
    +
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setJsonArray(JsonArray) - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    setJobName(String) - Method in class com.cloudofficeprint.Server.Printer
     
    -
    setKeyID(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
    setJsonArray(JsonArray) - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    +
    +
    to set Json array
    +
    +
    setKeyID(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
     
    -
    setLandscape(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setLandscape(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    Only supported when converting HTML to PDF.
    +
    Sets whether to output PDF will have landscape orientation or not.
    -
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    setLegend(String, ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setLegend(String, ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    Turns the legend on.
    -
    setLineseries(ArrayList<LineSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    -
     
    -
    setLineStyle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    setLineseries(ArrayList<LineSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
     
    -
    setLineThickness(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    setLineStyle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    setLinkUrl(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setLineThickness(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    setLocation(String) - Method in class com.cloudofficeprint.Server.Printer
    +
    setLinkUrl(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    setLockForm(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setLocation(String) - Method in class com.cloudofficeprint.Server.Printer
     
    -
    setLoggingInfo(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    +
    setLockForm(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets if the output PDF will be locked/flattened.
    +
    +
    setLoggingInfo(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    When the Cloud Office Print server is started with --enable_printlog, it will create a file on the server called server_printjob.log.
    -
    setLogo(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setLogo(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setLogoBackGroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setLogoBackGroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setLogoFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setLogoFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    Sets the logo to the given image from the path.
    -
    setLongitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    -
     
    -
    setLow(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    setLongitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
     
    -
    setMajorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setLow(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    setMajorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setMajorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setMax(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setMajorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setMaxHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setMax(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setMaxHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setMerge(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    setMergeMakingEven(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    setMethod(String) - Method in class com.cloudofficeprint.Resources.RESTResource
    +
    setMerge(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets whether to return a zip file of multiple output.
    +
    +
    setMergeMakingEven(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets whether Cloud Office Print is going to merge all the append/prepend and + template files, making sure the output is even-paged (adding a blank page if the output is uneven-paged).
    +
    +
    setMethod(String) - Method in class com.cloudofficeprint.Resources.RESTResource
     
    -
    setMimetype(String) - Method in class com.cloudofficeprint.Response
    +
    setMimetype(String) - Method in class com.cloudofficeprint.Response
     
    -
    setMimeType(String) - Method in class com.cloudofficeprint.Resources.Resource
    +
    setMimeType(String) - Method in class com.cloudofficeprint.Resources.Resource
    Sets the mimetype of the resource to the given mimetype.
    -
    setMin(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setMinorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setMin(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setMinorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setMinorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setModifyPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setMinorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setName(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    setModifyPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the value of password needed to modify the PDF.
    +
    +
    setName(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    setName(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
    setName(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
     
    -
    setNickname(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setNickname(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setNotes(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setNotes(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    +
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    Note: Decimal value between 0 and 1.
    -
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Watermark
    Default: 1.
    -
    setOpen(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    setOpen(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    setOptions(ChartOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    +
    setOptions(ChartOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
     
    -
    setOrientation(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setOrientation(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setOutput(Output) - Method in class com.cloudofficeprint.PrintJob
    +
    setOutput(Output) - Method in class com.cloudofficeprint.PrintJob
     
    -
    setPaddingHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setPaddingHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    setPaddingWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setPaddingWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    setPageFormat(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setPageFormat(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    Only supported when converting HTML to PDF.
    +
    Sets the output(PDF) page format.
    -
    setPageHeight(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setPageHeight(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    Only supported when converting HTML to PDF.
    +
    Sets the pageHeight.
    -
    setPageMargin(int) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setPageMargin(int) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    Only supported when converting HTML to PDF.
    +
    Sets same pageMargin for top, bottom, left and right.
    -
    setPageMargin(int[]) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setPageMargin(int[]) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    Only supported when converting HTML to PDF.
    +
    Sets top bottom left right margin in pixels.
    -
    setPageNumber(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    setPageNumber(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    setPageWidth(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setPageWidth(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    Only supported when converting HTML to PDF.
    +
    Sets the pageWidth.
    -
    setPassword(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    setPassword(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    setPassword(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    setPassword(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
     
    -
    setPassword(String) - Method in class com.cloudofficeprint.Server.Server
    +
    setPassword(String) - Method in class com.cloudofficeprint.Server.Server
     
    -
    setPasswordProtectionFlag(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setPasswordProtectionFlag(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    More info on the flag bits on - https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
    +
    Sets the protection flag for the PDF.
    -
    setPath(String) - Method in class com.cloudofficeprint.Resources.ServerResource
    +
    setPath(String) - Method in class com.cloudofficeprint.Resources.ServerResource
    Sets the path of the resource.
    -
    setPDFOptions(PDFOptions) - Method in class com.cloudofficeprint.Output.Output
    +
    setPDFOptions(PDFOptions) - Method in class com.cloudofficeprint.Output.Output
     
    -
    setPiBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPiBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPiColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPiColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    +
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
     
    -
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    +
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
     
    -
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    +
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
     
    -
    setPiTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPiTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPiTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPiTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPoBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPoBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPoColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPoColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPort(int) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    setPort(int) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    setPostConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
    setPostConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
     
    -
    setPostMerge(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
    setPostMerge(Command) - Method in class com.cloudofficeprint.Server.Commands
     
    -
    setPostProcess(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
    setPostProcess(Command) - Method in class com.cloudofficeprint.Server.Commands
     
    -
    setPostProcessDeleteDelay(int) - Method in class com.cloudofficeprint.Server.Commands
    +
    setPostProcessDeleteDelay(int) - Method in class com.cloudofficeprint.Server.Commands
    Cloud Office Print deletes the file provided to the command directly after executing it.
    -
    setPostProcessReturn(Boolean) - Method in class com.cloudofficeprint.Server.Commands
    +
    setPostProcessReturn(Boolean) - Method in class com.cloudofficeprint.Server.Commands
     
    -
    setPoTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPoTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPoTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setPoTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setPreConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
    +
    setPreConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
     
    -
    setPrependFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
    +
    setPrependFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
     
    -
    setPrinter(Printer) - Method in class com.cloudofficeprint.Server.Server
    +
    setPrinter(Printer) - Method in class com.cloudofficeprint.Server.Server
    Cloud Office Print supports to print directly to an IP Printer.
    -
    setProxyIP(String) - Method in class com.cloudofficeprint.Server.Server
    +
    setProxyIP(String) - Method in class com.cloudofficeprint.Server.Server
     
    -
    setProxyPort(Integer) - Method in class com.cloudofficeprint.Server.Server
    +
    setProxyPort(Integer) - Method in class com.cloudofficeprint.Server.Server
     
    -
    setQrErrorCorrectionLevel(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setQrErrorCorrectionLevel(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    Only for QR codes.
    -
    setQuery(String) - Method in class com.cloudofficeprint.Resources.GraphQLResource
    -
     
    -
    setQuietZone(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setQuery(String) - Method in class com.cloudofficeprint.Resources.GraphQLResource
     
    -
    setQuietZoneColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setQuietZone(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setReadPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setQuietZoneColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setRequester(String) - Method in class com.cloudofficeprint.Server.Printer
    +
    setReadPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the password for reading the output.
    +
    +
    setRemoveLastPage(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets whether to remove last page from output.
    +
    +
    setRequester(String) - Method in class com.cloudofficeprint.Server.Printer
     
    -
    setResponse(Response) - Method in class com.cloudofficeprint.PrintJob
    +
    setResponse(Response) - Method in class com.cloudofficeprint.PrintJob
    For setting to response after asynchronous execution.
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setReturnOutput(boolean) - Method in class com.cloudofficeprint.Server.Printer
    +
    +
    You can specify to whether to return output from server
    +
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Watermark
    Default : calculated to lie along the bottom-left to top-right diagonal.
    -
    setRoundedCorners(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setRoundedCorners(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setRows(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
    +
    setRows(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
     
    -
    setSecondaryCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    +
    setSecondaryCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
     
    -
    setSecretKey(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    +
    setSecretKey(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
     
    -
    setSeries(ArrayList<AreaSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    +
    setSeries(ArrayList<AreaSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
     
    -
    setSeries(ArrayList<BubbleSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    +
    setSeries(ArrayList<BubbleSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
     
    -
    setSeries(ArrayList<RadarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    +
    setSeries(ArrayList<RadarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
     
    -
    setSeries(ArrayList<ScatterSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    +
    setSeries(ArrayList<ScatterSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
     
    -
    setSeries(ArrayList<StockSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
    setSeries(ArrayList<StockSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
     
    -
    setServer(Server) - Method in class com.cloudofficeprint.PrintJob
    +
    setServer(Server) - Method in class com.cloudofficeprint.PrintJob
     
    -
    setServerDirectory(String) - Method in class com.cloudofficeprint.Output.Output
    +
    setServerDirectory(String) - Method in class com.cloudofficeprint.Output.Output
     
    -
    setService(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    +
    setService(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
     
    -
    setSheetNames(ArrayList<String>) - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    setSheetNames(ArrayList<String>) - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
     
    -
    setSignCertificate(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    setSignCertificate(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    It is possible to sign the output PDF if the output pdf has a signature +
    Sets the signature value of output PDF if the output pdf has a signature field.
    -
    setSizes(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    +
    setSignCertificatePassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the password for certificate.
    +
    +
    setSizes(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
     
    -
    setSmooth(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    setSmooth(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
    -
    setSplit(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    setStackedColumnSeries(ArrayList<ColumnStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    +
    setSplit(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets whether to split or not.
    +
    +
    setStackedColumnSeries(ArrayList<ColumnStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
     
    -
    setStartDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    +
    setStartDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
     
    -
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
     
    -
    setStrikethrough(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setStrikethrough(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setSubject(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    +
    setSubject(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
     
    -
    setSubTemplates(Hashtable<String, Resource>) - Method in class com.cloudofficeprint.PrintJob
    +
    setSubTemplates(Hashtable<String, Resource>) - Method in class com.cloudofficeprint.PrintJob
    Subtemplates are only accessible (in docx).
    -
    setSymbol(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    setSymbol(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    setSymbolSize(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    +
    setSymbolSize(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
     
    -
    setTabLeader(String) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    +
    setTabLeader(String) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
     
    -
    setTargetUrl(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setTargetUrl(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setTemplate(Resource) - Method in class com.cloudofficeprint.PrintJob
    +
    setTemplate(Resource) - Method in class com.cloudofficeprint.PrintJob
     
    -
    setText(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    +
    setText(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
     
    -
    setTextDelimiter(String) - Method in class com.cloudofficeprint.Output.CsvOptions
    +
    setTextDelimiter(String) - Method in class com.cloudofficeprint.Output.CsvOptions
     
    -
    setTextHAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setTextHAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setTextRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setTextRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setTexts(PDFText[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    +
    setTexts(PDFText[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
     
    -
    setTextVAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    +
    setTextVAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
     
    -
    setTimingColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setTimingColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setTimingHColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setTimingHColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setTimingVColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setTimingVColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    setTitleRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setTitleRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setToken(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    +
    setToken(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
     
    -
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    setType(String) - Method in class com.cloudofficeprint.Output.Output
    +
    setType(String) - Method in class com.cloudofficeprint.Output.Output
    Sets the file type (extension) of the output to type.
    -
    setType(String) - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    +
    setType(String) - Method in class com.cloudofficeprint.RenderElements.Codes.Code
     
    -
    setUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    +
    setUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
     
    -
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    +
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
     
    -
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    +
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
     
    -
    setUrl(String) - Method in class com.cloudofficeprint.RenderElements.HyperLink
    +
    setUrl(String) - Method in class com.cloudofficeprint.RenderElements.HyperLink
    Note : In Excel you can hyperlink to a cell.
    -
    setUrl(String) - Method in class com.cloudofficeprint.Server.Server
    +
    setUrl(String) - Method in class com.cloudofficeprint.Server.Server
     
    -
    setURL(String) - Method in class com.cloudofficeprint.Resources.URLResource
    +
    setURL(String) - Method in class com.cloudofficeprint.Resources.URLResource
    Sets the URL of the resource to given URL.
    -
    setUsername(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    +
    setUsername(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
     
    -
    setUsername(String) - Method in class com.cloudofficeprint.Server.Server
    +
    setUsername(String) - Method in class com.cloudofficeprint.Server.Server
     
    -
    setValue(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
    +
    setValue(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
     
    -
    setValues(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setValues(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setValuesStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    +
    setValuesStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
     
    -
    setVerbose(boolean) - Method in class com.cloudofficeprint.Server.Server
    +
    setVerbose(boolean) - Method in class com.cloudofficeprint.Server.Server
     
    -
    setVersion(String) - Method in class com.cloudofficeprint.Server.Printer
    +
    setVersion(String) - Method in class com.cloudofficeprint.Server.Printer
     
    -
    setVolume(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    setVolume(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
     
    -
    setWatermark(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    +
    setWatermark(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the watermark which is shown diagonally on every page in output file.
    +
    +
    setWatermarkColor(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the color of your watermark.
    +
    +
    setWatermarkFont(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the font to your watermark.
    +
    +
    setWatermarkFontSize(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets the font size of your watermark.
    +
    +
    setWatermarkOpacity(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    +
    +
    Sets opacity of your watermark in percentage (ex 60).
    +
    +
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
     
    -
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    +
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
     
    -
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    +
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    The width manipulation is available from Cloud Office Print 20.2.
    -
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    +
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
     
    -
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    +
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    Default : automatically determined by Cloud Office Print.
    -
    setWidthLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    +
    setWidthLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
     
    -
    setWifiHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    setWifiHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
     
    -
    setWrapText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    +
    setWrapText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    Note : only supports 5 of the Microsoft Word Text Wrapping options.
    -
    setX(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    setX(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    setX(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    setX(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    setX2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setX2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    setXAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setXAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setXData(JsonArray) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setXData(JsonArray) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    setXTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setXTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    setY(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    +
    setY(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
     
    -
    setY(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    setY(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -
    setY2AxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setY2AxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setY2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setY2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    setYAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    +
    setYAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
     
    -
    setYData(HashMap<String, JsonArray>) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setYData(HashMap<String, JsonArray>) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    setYTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    +
    setYTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
     
    -
    SheetLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    SheetLoop - Class in com.cloudofficeprint.RenderElements.Loops
    Loop where a sheet will be repeated for each element of the loop.
    -
    SheetLoop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    SheetLoop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    To repeat a sheet for each element of elements.
    -
    SheetLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    SheetLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    To repeat a sheet for each element of elements.
    -
    SheetLoop(String, HashMap<String, RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    +
    SheetLoop(String, HashMap<String, RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    To repeat a sheet for each element of elements.
    -
    shortenDescription(String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    +
    shortenDescription(String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
     
    -
    signPDF(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    signPDF(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    This example show you how to sign a PDF file.
    -
    SlideLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    SlideLoop - Class in com.cloudofficeprint.RenderElements.Loops
    Loop where a slide will be repeated for each element of the loop.
    -
    SlideLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SlideLoop
    +
    SlideLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SlideLoop
    To repeat a slide for each element of elements.
    -
    SMSQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    SMSQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate an SMS QR-code element.
    -
    SMSQRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    +
    SMSQRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    This object represents a SMS QR-code.
    -
    SolarSystemExample - Class in com.cloudofficeprint.Examples.SolarSystem
    +
    SolarSystemExample - Class in com.cloudofficeprint.Examples.SolarSystem
     
    -
    SolarSystemExample() - Constructor for class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    +
    SolarSystemExample() - Constructor for class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
     
    -
    SpaceXExample - Class in com.cloudofficeprint.Examples.SpaceX
    +
    SpaceXExample - Class in com.cloudofficeprint.Examples.SpaceX
    This example is fully explained in the spacex_example.md file.
    -
    SpaceXExample() - Constructor for class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    +
    SpaceXExample() - Constructor for class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
     
    -
    StockChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    +
    StockChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    Represents a stock chart.
    -
    StockChart(String, ChartOptions, StockSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    +
    StockChart(String, ChartOptions, StockSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    Represents a stock chart.
    -
    StockSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +
    StockSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    This class represents series for stock charts.
    -
    StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    +
    StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    This object represents series for a stock chart.
    -
    StyledProperty - Class in com.cloudofficeprint.RenderElements
    +
    StyledProperty - Class in com.cloudofficeprint.RenderElements
    Only supported in Word and Powerpoint templates.
    -
    StyledProperty(String, String) - Constructor for class com.cloudofficeprint.RenderElements.StyledProperty
    +
    StyledProperty(String, String) - Constructor for class com.cloudofficeprint.RenderElements.StyledProperty
    Represents styled text.
    - - - -

    T

    -
    -
    TableCell - Class in com.cloudofficeprint.RenderElements.Cells
    +

    T

    +
    +
    TableCell - Class in com.cloudofficeprint.RenderElements.Cells
    Only supported in Word, Excel, Powerpoint templates (they all have tables with cells).
    -
    TableCell(String, String, CellStyle) - Constructor for class com.cloudofficeprint.RenderElements.Cells.TableCell
    +
    TableCell(String, String, CellStyle) - Constructor for class com.cloudofficeprint.RenderElements.Cells.TableCell
    Represents a cell element.
    -
    TableOfContents - Class in com.cloudofficeprint.RenderElements
    +
    TableOfContents - Class in com.cloudofficeprint.RenderElements
    Only supported in Word templates.
    -
    TableOfContents(String, String, int, String) - Constructor for class com.cloudofficeprint.RenderElements.TableOfContents
    +
    TableOfContents(String, String, int, String) - Constructor for class com.cloudofficeprint.RenderElements.TableOfContents
    The most basic RenderElement.
    -
    TableRowLoop - Class in com.cloudofficeprint.RenderElements.Loops
    +
    TableRowLoop - Class in com.cloudofficeprint.RenderElements.Loops
    Only supported in PowerPoint templates.
    -
    TableRowLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
    +
    TableRowLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
    Only supported in PowerPoint templates.
    -
    TelephoneNumberQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    TelephoneNumberQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate a telephone number QR-code element.
    -
    TelephoneNumberQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
    +
    TelephoneNumberQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
    This object represents a telephone number QR-code.
    -
    TextBox - Class in com.cloudofficeprint.RenderElements
    +
    TextBox - Class in com.cloudofficeprint.RenderElements
    This tag will allow you to insert a text box starting in the cell containing the tag in Excel.
    -
    TextBox(String, String) - Constructor for class com.cloudofficeprint.RenderElements.TextBox
    +
    TextBox(String, String) - Constructor for class com.cloudofficeprint.RenderElements.TextBox
    This object represents a text box starting in the cell containing the tag in Excel.
    -
    toString() - Method in exception com.cloudofficeprint.COPException
    +
    toString() - Method in exception com.cloudofficeprint.COPException
     
    - - - -

    U

    -
    -
    updateJson1WithJson2(JsonObject, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
    +

    U

    +
    +
    updateJson1WithJson2(JsonObject, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
     
    -
    URLQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    URLQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate an URL QR-code element.
    -
    URLQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.URLQRCode
    +
    URLQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.URLQRCode
    This object represents a URL QR-code.
    -
    URLResource - Class in com.cloudofficeprint.Resources
    +
    URLResource - Class in com.cloudofficeprint.Resources
    Child class of Resource.
    -
    URLResource(String, String, String) - Constructor for class com.cloudofficeprint.Resources.URLResource
    +
    URLResource(String, String, String) - Constructor for class com.cloudofficeprint.Resources.URLResource
    Constructor for this class.
    - - - -

    V

    -
    -
    VCardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +

    V

    +
    +
    VCardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate a vCard QR-code element
    -
    VCardQRCode(String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    +
    VCardQRCode(String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    This object represents a VCF or vCard QR Code.
    - - - -

    W

    -
    -
    Watermark - Class in com.cloudofficeprint.RenderElements
    -
     
    -
    Watermark(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Watermark
    +

    W

    +
    +
    Watermark - Class in com.cloudofficeprint.RenderElements
    +
    +
    It is possible to use your own Watermark with font, size, opacity, color, width, height and rotation.
    +
    +
    Watermark(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Watermark
    Represents a watermark.
    -
    waterMarkAndStyledProperty(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    waterMarkAndStyledProperty(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    Example for a styled property and a watermark.
    -
    WifiQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    +
    WifiQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    This class is a subclass of QRCode and is used to generate a WiFi QR-code element.
    -
    WifiQRCode(String, String, String, String, Boolean) - Constructor for class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    +
    WifiQRCode(String, String, String, String, Boolean) - Constructor for class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    This class is a subclass of QRCode and is used to generate a WiFi QR-code element.
    -
    withoutTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    +
    withoutTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    Example without template.
    - - - -

    X

    -
    -
    XYSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    +

    X

    +
    +
    XYSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
     
    -
    XYSeries() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    +
    XYSeries() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
     
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes All Packages
    -
    +A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages +
    +
    diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-1.html b/cloudofficeprint/build/docs/javadoc/index-files/index-1.html deleted file mode 100644 index 1a842fa5..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-1.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - -A-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    A

    -
    -
    addAllRenderElements(ElementCollection) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
    -
    Adds all the elements from the elementcollection to the elements of this - collection.
    -
    -
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    addElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    -
     
    -
    addFromDict(Hashtable<String, String>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
    -
    Adds the list of properties from a mapping.
    -
    -
    AreaChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents an area chart.
    -
    -
    AreaChart(String, ChartOptions, AreaSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    -
    -
    Represents an area chart.
    -
    -
    AreaSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    This class represents series for an area chart.
    -
    -
    AreaSeries(String, String[], String[], String, Float) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    -
    -
    This object represents series for a pie chart.
    -
    -
    asString() - Method in class com.cloudofficeprint.Response
    -
    -
    Return the string representation of this Response.
    -
    -
    AWSToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    -
    -
    Class to use for AWS tokens to store output on AWS.
    -
    -
    AWSToken(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    -
    -
    Constructor for an AWSToken object.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-10.html b/cloudofficeprint/build/docs/javadoc/index-files/index-10.html deleted file mode 100644 index cddf2970..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-10.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - -L-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    L

    -
    -
    Labels - Class in com.cloudofficeprint.RenderElements.Loops
    -
    -
    Cloud Office Print also provides a way to print labels Word documents.
    -
    -
    Labels(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Labels
    -
    -
    Cloud Office Print also provides a way to print labels Word documents.
    -
    -
    LineChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    This class represents line charts.
    -
    -
    LineChart(String, ChartOptions, LineSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    -
    -
    Represents a line chart.
    -
    -
    LineSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for a chart where the data-points are connected with lines.
    -
    -
    LineSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
    -
    This object represents series for a line chart (where data-points are - connected with lines).
    -
    -
    localJson(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    Example where the local test.json is read and send to the server.
    -
    -
    localTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    Example with templateTest.docx as template, a list of properties and an image - as data.
    -
    -
    localTemplateAsync(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    Asynchronous version of the above example.
    -
    -
    Loop - Class in com.cloudofficeprint.RenderElements.Loops
    -
    -
    Represents elements to be included in loops in templates.
    -
    -
    Loop(String) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    -
    -
    Loop elements for a template.
    -
    -
    Loop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    -
    -
    Loop elements for a template.
    -
    -
    Loop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.Loop
    -
    -
    Loop elements for a template.
    -
    -
    loopExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    In this example 2 nested loops are given in the template.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-11.html b/cloudofficeprint/build/docs/javadoc/index-files/index-11.html deleted file mode 100644 index 9f8fd32d..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-11.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - - -M-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    M

    -
    -
    main(String) - Method in class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    -
    -
    This is an example of how you can merge the output files generated from a - single template using multiple requests.
    -
    -
    main(String) - Method in class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    -
     
    -
    main(String) - Method in class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    -
     
    -
    main(String[]) - Static method in class com.cloudofficeprint.Main
    -
     
    -
    main(String, String) - Method in class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    -
     
    -
    main(String, String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    -
     
    -
    Main - Class in com.cloudofficeprint
    -
     
    -
    Main() - Constructor for class com.cloudofficeprint.Main
    -
     
    -
    makeCollectionFromJson(String, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
    -
    Parses a JsonArray to an elementcollection.
    -
    -
    MarkDownContent - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Word.
    -
    -
    MarkDownContent(String, String) - Constructor for class com.cloudofficeprint.RenderElements.MarkDownContent
    -
    -
    Represents an object that indicates to put a break in the template or not.
    -
    -
    MECardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate a MeCard QR-code - element
    -
    -
    MECardQRCode(String, String, String, String, String, String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
    -
    This object represents a VCF or vCard QR Code.
    -
    -
    Mimetype - Class in com.cloudofficeprint
    -
    -
    Own mimetype class (org.apache.tike gives warnings for logging)
    -
    -
    Mimetype() - Constructor for class com.cloudofficeprint.Mimetype
    -
     
    -
    MultipleRequestMergeExample - Class in com.cloudofficeprint.Examples.MultipleRequestMerge
    -
     
    -
    MultipleRequestMergeExample() - Constructor for class com.cloudofficeprint.Examples.MultipleRequestMerge.MultipleRequestMergeExample
    -
     
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-12.html b/cloudofficeprint/build/docs/javadoc/index-files/index-12.html deleted file mode 100644 index 0f0409cb..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-12.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - -O-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    O

    -
    -
    OAuth2Token - Class in com.cloudofficeprint.Output.CloudAcessToken
    -
    -
    Class to use for OAuth 2 tokens.
    -
    -
    OAuth2Token(String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    -
    -
    Constructor for an OAuth2Token object.
    -
    -
    OrderConfirmationExample - Class in com.cloudofficeprint.Examples.OrderConfirmation
    -
     
    -
    OrderConfirmationExample() - Constructor for class com.cloudofficeprint.Examples.OrderConfirmation.OrderConfirmationExample
    -
     
    -
    Output - Class in com.cloudofficeprint.Output
    -
    -
    Class representing the output configuration of a request.
    -
    -
    Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions) - Constructor for class com.cloudofficeprint.Output.Output
    -
    -
    Constructor to create a populated output object.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-13.html b/cloudofficeprint/build/docs/javadoc/index-files/index-13.html deleted file mode 100644 index ec38de18..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-13.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - -P-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    P

    -
    -
    PageBreak - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Word and Excel.
    -
    -
    PageBreak(String, String) - Constructor for class com.cloudofficeprint.RenderElements.PageBreak
    -
    -
    Represents an object that indicates to put a break in the template or not.
    -
    -
    PDFFormData - Class in com.cloudofficeprint.RenderElements.PDF
    -
    -
    It is possible to fill in the forms using Cloud Office Print.
    -
    -
    PDFFormData(HashMap<String, String>) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    -
    -
    It is possible to fill in the forms using Cloud Office Print.
    -
    -
    PDFImage - Class in com.cloudofficeprint.RenderElements.PDF
    -
     
    -
    PDFImage(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
    -
    Represents an image to insert in a PDF.
    -
    -
    PDFImage(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
    -
    Represents an image to insert in a PDF.
    -
    -
    PDFImages - Class in com.cloudofficeprint.RenderElements.PDF
    -
    -
    Group of different PDF images as one RenderElement.
    -
    -
    PDFImages(PDFImage[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFImages
    -
     
    -
    PDFInsertObject - Class in com.cloudofficeprint.RenderElements.PDF
    -
    -
    Abstract base class for PDF's insertable objects.
    -
    -
    PDFInsertObject(Integer, Integer, Integer) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
    -
    Represents an object to insert in a PDF.
    -
    -
    PDFOptions - Class in com.cloudofficeprint.Output
    -
    -
    Class for all the optional PDF output options.
    -
    -
    PDFOptions() - Constructor for class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Constructor for the PDFOptions object.
    -
    -
    PDFSignatureExample - Class in com.cloudofficeprint.Examples.PDFSignature
    -
     
    -
    PDFSignatureExample() - Constructor for class com.cloudofficeprint.Examples.PDFSignature.PDFSignatureExample
    -
     
    -
    PDFText - Class in com.cloudofficeprint.RenderElements.PDF
    -
     
    -
    PDFText(Integer, Integer, Integer, String) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
    -
    Represents text to insert in a PDF.
    -
    -
    PDFTexts - Class in com.cloudofficeprint.RenderElements.PDF
    -
    -
    Group of different PDF texts as one RenderElement.
    -
    -
    PDFTexts(PDFText[]) - Constructor for class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    -
     
    -
    Pie3DChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a 3D pie chart.
    -
    -
    Pie3DChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    -
    -
    Represents a 3D pie chart.
    -
    -
    PieChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a pie chart.
    -
    -
    PieChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    -
    -
    Represents a pie chart.
    -
    -
    PieSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    This class represents series for pie charts.
    -
    -
    PieSeries(String, String[], String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    -
    -
    This object represents series for a pie chart.
    -
    -
    prependAppendSubTemplatesExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    This example shows you how to prepend/append files and how to use - subtemplates in a template.
    -
    -
    Printer - Class in com.cloudofficeprint.Server
    -
    -
    Cloud Office Print supports to print directly to an IP Printer.
    -
    -
    Printer(String, String, String, String, boolean) - Constructor for class com.cloudofficeprint.Server.Printer
    -
    -
    Cloud Office Print supports to print directly to an IP Printer.
    -
    -
    PrintJob - Class in com.cloudofficeprint
    -
    -
    A print job for the Cloud Office Print server containing all the necessary - information to generate the adequate JSON for the Cloud Office Print server.
    -
    -
    PrintJob(ExternalResource, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    -
    -
    A print job for the Cloud Office Print server containing all the necessary - information to generate the adequate JSON for the Cloud Office Print server.
    -
    -
    PrintJob(Hashtable<String, RenderElement>, Server, Output, Resource, Hashtable<String, Resource>, Resource[], Resource[], Boolean) - Constructor for class com.cloudofficeprint.PrintJob
    -
    -
    A print job for the Cloud Office Print server containing all the necessary - information to generate the adequate JSON for the Cloud Office Print server.
    -
    -
    Property - Class in com.cloudofficeprint.RenderElements
    -
    -
    The most basic RenderElement.
    -
    -
    Property(String, int) - Constructor for class com.cloudofficeprint.RenderElements.Property
    -
    -
    The most basic RenderElement.
    -
    -
    Property(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Property
    -
    -
    The most basic RenderElement.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-14.html b/cloudofficeprint/build/docs/javadoc/index-files/index-14.html deleted file mode 100644 index 76d5f750..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-14.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - -Q-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    Q

    -
    -
    QRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of Code and serves as a superclass for the different - types of QR-codes.
    -
    -
    QRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
    -
    This class is a subclass of Code and serves as a superclass for the different - types of QR-codes.
    -
    -
    qrCodeExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    This example show how to work with Codes (QR code and barcode).
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-15.html b/cloudofficeprint/build/docs/javadoc/index-files/index-15.html deleted file mode 100644 index 20cab018..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-15.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - -R-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    R

    -
    -
    RadarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a radar chart.
    -
    -
    RadarChart(String, ChartOptions, RadarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    -
    -
    Represents a radar chart.
    -
    -
    RadarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for radar charts.
    -
    -
    RadarSeries(String, String[], String[], String, Boolean, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries
    -
    -
    This object represents series for a radar chart.
    -
    -
    Raw - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only available for HTML and Markdown templates.
    -
    -
    Raw(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Raw
    -
     
    -
    RawJsonArray - Class in com.cloudofficeprint.RenderElements
    -
    -
    Represents a raw JsonArray to include in the data.
    -
    -
    RawJsonArray(String, JsonArray) - Constructor for class com.cloudofficeprint.RenderElements.RawJsonArray
    -
    -
    Element to insert a footnote in a template.
    -
    -
    readJson(String) - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Function to read a local JSON file.
    -
    -
    removeDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Turns the datalabels of.
    -
    -
    removeElement(RenderElement) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    removeElementByName(String) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    removeLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Turns the legend of.
    -
    -
    RenderElement - Class in com.cloudofficeprint.RenderElements
    -
    -
    Abstract class for renderElements.
    -
    -
    RenderElement() - Constructor for class com.cloudofficeprint.RenderElements.RenderElement
    -
     
    -
    replaceKeyRecursive(JsonObject, String, String) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
    -
    Replaces all the occurrences of oldKey in the json with the newKey.
    -
    -
    Resource - Class in com.cloudofficeprint.Resources
    -
    -
    Resource is an abstract class for all the different resource types for the - templates and "secondary files" : subtemplates, files to prepend, files to - append and files to insert (in the template).
    -
    -
    Resource() - Constructor for class com.cloudofficeprint.Resources.Resource
    -
     
    -
    Response - Class in com.cloudofficeprint
    -
    -
    Class for dealing with the Cloud Office Print server's response to a printjob - request.
    -
    -
    Response(String, String, byte[]) - Constructor for class com.cloudofficeprint.Response
    -
     
    -
    RESTResource - Class in com.cloudofficeprint.Resources
    -
    -
    Class for working with a REST endpoint as Resource.
    -
    -
    RESTResource(String, String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.RESTResource
    -
    -
    Resource from an REST endpoint.
    -
    -
    RightToLeft - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Word templates, might work in other templates but behaviour - is not predictable.
    -
    -
    RightToLeft(String, String) - Constructor for class com.cloudofficeprint.RenderElements.RightToLeft
    -
    -
    When substituting the content in a language written in right to left, like - Arabic, this object can be used to properly format the language.
    -
    -
    run() - Method in class com.cloudofficeprint.PrintJob
    -
    -
    Asynchronous version of execute().
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-16.html b/cloudofficeprint/build/docs/javadoc/index-files/index-16.html deleted file mode 100644 index a64631b6..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-16.html +++ /dev/null @@ -1,994 +0,0 @@ - - - - - -S-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    S

    -
    -
    ScatterChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a scatter chart.
    -
    -
    ScatterChart(String, ChartOptions, ScatterSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    -
    -
    Represents an area chart.
    -
    -
    ScatterSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for scatter charts.
    -
    -
    ScatterSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries
    -
    -
    This object represents series for a scatter charts.
    -
    -
    sendGETRequest(String) - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to the url.
    -
    -
    sendPOSTRequest(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a POST request with the given json file as body.
    -
    -
    Server - Class in com.cloudofficeprint.Server
    -
    -
    Class representing the Cloud Office Print server to interact with.
    -
    -
    Server(String) - Constructor for class com.cloudofficeprint.Server.Server
    -
    -
    Most basic constructor of the server.
    -
    -
    Server(String, String, Printer, Commands, JsonObject, String, Integer) - Constructor for class com.cloudofficeprint.Server.Server
    -
    -
    Use default values if you don't want to specify an argument.
    -
    -
    ServerResource - Class in com.cloudofficeprint.Resources
    -
    -
    Child class of Resource.
    -
    -
    ServerResource(String, String) - Constructor for class com.cloudofficeprint.Resources.ServerResource
    -
    -
    Creates a resource with given path.
    -
    -
    setAccessToken(CloudAccessToken) - Method in class com.cloudofficeprint.Output.Output
    -
    -
    Sets the access token object of the output, if you want to store the output - on a cloud based service.
    -
    -
    setAltitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    -
     
    -
    setAltText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setAPIKey(String) - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Only applicable for service users.
    -
    -
    setAppendFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    setArgs(JsonObject) - Method in class com.cloudofficeprint.Server.Command
    -
     
    -
    setAuth(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    setAutoColor(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setAutoColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setAutoColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    -
     
    -
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Note: displaying rounded corners is not supported by LibreOffice.
    -
    -
    setBackgroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    setBackGroundImage(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setBackgroundImageAlpha(Double) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setBackGroundImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
    -
    Sets the background image of the QR code to the given image from the path.
    -
    -
    setBackgroundOpacity(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Note: backgroundOpacity is ignored if backgroundColor is not specified or if - backgroundColor is specified in a color space which includes an alpha channel - (e.g.
    -
    -
    setBarSeries(ArrayList<BarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    -
     
    -
    setBarStackedPercentSeries(ArrayList<BarStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    -
     
    -
    setBarStackedSeries(ArrayList<BarStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    -
     
    -
    setBcc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    setBirthday(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setBody(byte[]) - Method in class com.cloudofficeprint.Response
    -
     
    -
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    setBody(String) - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    -
     
    -
    setBody(String) - Method in class com.cloudofficeprint.Resources.RESTResource
    -
     
    -
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    setBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setBooleanValue(boolean) - Method in class com.cloudofficeprint.RenderElements.Freeze
    -
     
    -
    setBorder(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setBorderBottom(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderBottomColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderDiagonal(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderDiagonalColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderDiagonalDirection(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderLeft(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderLeftColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderRight(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderRightColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderTop(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setBorderTopColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setCc(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    setCellBackground(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setCellHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setCellLocked(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setCellStyle(CellStyle) - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    -
     
    -
    setCharacterSet(Integer) - Method in class com.cloudofficeprint.Output.CsvOptions
    -
     
    -
    setCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
     
    -
    setClose(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    setCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    -
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    setColor(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
    -
    Default :"silver".
    -
    -
    setColorDark(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setColorLight(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setColors(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    -
    -
    Note : If no colors are specified, the document's theme is used.
    -
    -
    setColumns(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    setColumnSeries(ArrayList<ColumnSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    -
     
    -
    setColumnStackedPercentageSeries(ArrayList<ColumnStackedPercentSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    -
     
    -
    setCommand(String) - Method in class com.cloudofficeprint.Server.Command
    -
     
    -
    setCommands(Commands) - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    setContactPrimary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setContactSecondary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setContactTertiary(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setConverter(String) - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    setCopChartDateOptions(COPChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    setCopies(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the Number of times the output will be repeated.
    -
    -
    setCopRemoteDebug(Boolean) - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    setCsvOptions(CsvOptions) - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    setData(String) - Method in class com.cloudofficeprint.RenderElements.D3Code
    -
     
    -
    setData(Hashtable<String, RenderElement>) - Method in class com.cloudofficeprint.PrintJob
    -
    -
    Renderelements will replace their corresponding tag in the template.
    -
    -
    setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Turn the data labels on.
    -
    -
    setDataSource(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    setDateOptions(ChartDateOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setDepth(int) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    -
     
    -
    setDotScale(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    setElements(ArrayList<RenderElement>) - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    -
     
    -
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setEmail(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    setEncoding(String) - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    setEncryption(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
     
    -
    setEndDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    -
     
    -
    setEndpoint(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    setEvenPage(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets whether the output will have even pages.(blank page added if uneven amount of pages).
    -
    -
    setExt(String) - Method in class com.cloudofficeprint.Response
    -
     
    -
    setExternalResource(ExternalResource) - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    setExtraOptions(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
    -
    If you want to include extra options like including barcode text on the botto - The options should be space separated and should be followed by a "=" and - their value.
    -
    -
    setFieldSeparator(String) - Method in class com.cloudofficeprint.Output.CsvOptions
    -
     
    -
    setFileBase64(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    -
    -
    Sets the data of the resource to the given parameter.
    -
    -
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Images.ImageBase64
    -
    -
    Reads all bytes of the file, converts them to base64 and stores them in - this.value.
    -
    -
    setFileFromLocalFile(String) - Method in class com.cloudofficeprint.Resources.Base64Resource
    -
    -
    Sets the filetype of this resource to the extension of the file, sets the - mimetype as well.
    -
    -
    setFileName(String) - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    setFiletype(String) - Method in class com.cloudofficeprint.Resources.Resource
    -
    -
    Sets the filetype (extension) of the resource to the given filetype.
    -
    -
    setFirstName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    setFont(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
    -
    Default : Calibri.
    -
    -
    setFontBold(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setFontColor(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    setFontItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    setFontSize(Integer) - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    setFontSize(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setFontStrike(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFontSubscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFontSuperscript(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFontUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    setFormat(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
     
    -
    setFormatCode(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setFormData(HashMap<String, String>) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    -
     
    -
    setGrid(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setHeaders(JsonArray) - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    setHeight(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
    -
    Default : automatically determined by Cloud Office Print.
    -
    -
    setHeightLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setHigh(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    setHighlightColor(String) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setHost(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    setIdentifyFormFields(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets whether to get identityFormFields.
    -
    -
    setImage(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    setImageFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
    -
    Sets the image to the image on the filepath.
    -
    -
    setImages(PDFImage[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    -
     
    -
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    setItalic(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setJobName(String) - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    setJsonArray(JsonArray) - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    -
    -
    to set Json array
    -
    -
    setKeyID(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    -
     
    -
    setLandscape(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets whether to output PDF will have landscape orientation or not.
    -
    -
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setLastName(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    setLegend(String, ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Turns the legend on.
    -
    -
    setLineseries(ArrayList<LineSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    -
     
    -
    setLineStyle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    setLineThickness(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    setLinkUrl(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    setLocation(String) - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    setLockForm(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets if the output PDF will be locked/flattened.
    -
    -
    setLoggingInfo(JsonObject) - Method in class com.cloudofficeprint.Server.Server
    -
    -
    When the Cloud Office Print server is started with --enable_printlog, it will - create a file on the server called server_printjob.log.
    -
    -
    setLogo(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setLogoBackGroundColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setLogoFromLocalFile(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
    -
    Sets the logo to the given image from the path.
    -
    -
    setLongitude(String) - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    -
     
    -
    setLow(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    setMajorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setMajorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setMax(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setMaxHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setMaxWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    setMerge(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets whether to return a zip file of multiple output.
    -
    -
    setMergeMakingEven(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets whether Cloud Office Print is going to merge all the append/prepend and - template files, making sure the output is even-paged (adding a blank page if the output is uneven-paged).
    -
    -
    setMethod(String) - Method in class com.cloudofficeprint.Resources.RESTResource
    -
     
    -
    setMimetype(String) - Method in class com.cloudofficeprint.Response
    -
     
    -
    setMimeType(String) - Method in class com.cloudofficeprint.Resources.Resource
    -
    -
    Sets the mimetype of the resource to the given mimetype.
    -
    -
    setMin(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setMinorGridLines(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setMinorUnit(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setModifyPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the value of password needed to modify the PDF.
    -
    -
    setName(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    setName(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
    -
     
    -
    setNickname(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setNotes(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    -
    -
    Note: Decimal value between 0 and 1.
    -
    -
    setOpacity(Float) - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
    -
    Default: 1.
    -
    -
    setOpen(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    setOptions(ChartOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    -
     
    -
    setOrientation(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setOutput(Output) - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    setPaddingHeight(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    setPaddingWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    setPageFormat(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the output(PDF) page format.
    -
    -
    setPageHeight(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the pageHeight.
    -
    -
    setPageMargin(int) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets same pageMargin for top, bottom, left and right.
    -
    -
    setPageMargin(int[]) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets top bottom left right margin in pixels.
    -
    -
    setPageNumber(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    setPageWidth(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the pageWidth.
    -
    -
    setPassword(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    setPassword(String) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
     
    -
    setPassword(String) - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    setPasswordProtectionFlag(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the protection flag for the PDF.
    -
    -
    setPath(String) - Method in class com.cloudofficeprint.Resources.ServerResource
    -
    -
    Sets the path of the resource.
    -
    -
    setPDFOptions(PDFOptions) - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    setPiBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPiColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    -
     
    -
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    -
     
    -
    setPieSeries(ArrayList<PieSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    -
     
    -
    setPiTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPiTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPoBLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPoColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPort(int) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    setPostConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    setPostMerge(Command) - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    setPostProcess(Command) - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    setPostProcessDeleteDelay(int) - Method in class com.cloudofficeprint.Server.Commands
    -
    -
    Cloud Office Print deletes the file provided to the command directly after - executing it.
    -
    -
    setPostProcessReturn(Boolean) - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    setPoTLColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPoTRColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setPreConversion(Command) - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    setPrependFiles(Resource[]) - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    setPrinter(Printer) - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Cloud Office Print supports to print directly to an IP Printer.
    -
    -
    setProxyIP(String) - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    setProxyPort(Integer) - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    setQrErrorCorrectionLevel(String) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
    -
    Only for QR codes.
    -
    -
    setQuery(String) - Method in class com.cloudofficeprint.Resources.GraphQLResource
    -
     
    -
    setQuietZone(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setQuietZoneColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setReadPassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the password for reading the output.
    -
    -
    setRemoveLastPage(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets whether to remove last page from output.
    -
    -
    setRequester(String) - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    setResponse(Response) - Method in class com.cloudofficeprint.PrintJob
    -
    -
    For setting to response after asynchronous execution.
    -
    -
    setReturnOutput(boolean) - Method in class com.cloudofficeprint.Server.Printer
    -
    -
    You can specify to whether to return output from server
    -
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    setRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
    -
    Default : calculated to lie along the bottom-left to top-right diagonal.
    -
    -
    setRoundedCorners(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setRows(int) - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    setSecondaryCharts(ArrayList<Chart>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
     
    -
    setSecretKey(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    -
     
    -
    setSeries(ArrayList<AreaSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    -
     
    -
    setSeries(ArrayList<BubbleSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    -
     
    -
    setSeries(ArrayList<RadarSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    -
     
    -
    setSeries(ArrayList<ScatterSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    -
     
    -
    setSeries(ArrayList<StockSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    -
     
    -
    setServer(Server) - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    setServerDirectory(String) - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    setService(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    -
     
    -
    setSheetNames(ArrayList<String>) - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    -
     
    -
    setSignCertificate(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the signature value of output PDF if the output pdf has a signature - field.
    -
    -
    setSignCertificatePassword(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the password for certificate.
    -
    -
    setSizes(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    -
     
    -
    setSmooth(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
    -
    -
    -
    -
    setSplit(Boolean) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets whether to split or not.
    -
    -
    setStackedColumnSeries(ArrayList<ColumnStackedSeries>) - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    -
     
    -
    setStartDate(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    -
     
    -
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    setStep(Integer) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
     
    -
    setStrikethrough(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setSubject(String) - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    setSubTemplates(Hashtable<String, Resource>) - Method in class com.cloudofficeprint.PrintJob
    -
    -
    Subtemplates are only accessible (in docx).
    -
    -
    setSymbol(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    setSymbolSize(String) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    setTabLeader(String) - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    -
     
    -
    setTargetUrl(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setTemplate(Resource) - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    setText(String) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    setTextDelimiter(String) - Method in class com.cloudofficeprint.Output.CsvOptions
    -
     
    -
    setTextHAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setTextRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setTexts(PDFText[]) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    -
     
    -
    setTextVAlignment(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    setTimingColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setTimingHColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setTimingVColor(String) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    setTitleRotation(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setTitleStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setToken(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    -
     
    -
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setTransparency(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    setType(String) - Method in class com.cloudofficeprint.Output.Output
    -
    -
    Sets the file type (extension) of the output to type.
    -
    -
    setType(String) - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    -
     
    -
    setUnderline(Boolean) - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    setUnit(String) - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
     
    -
    setUrl(String) - Method in class com.cloudofficeprint.RenderElements.HyperLink
    -
    -
    Note : In Excel you can hyperlink to a cell.
    -
    -
    setUrl(String) - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    setURL(String) - Method in class com.cloudofficeprint.Resources.URLResource
    -
    -
    Sets the URL of the resource to given URL.
    -
    -
    setUsername(String) - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    setUsername(String) - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    setValue(String) - Method in class com.cloudofficeprint.RenderElements.RenderElement
    -
     
    -
    setValues(Boolean) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setValuesStyle(ChartTextStyle) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    setVerbose(boolean) - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    setVersion(String) - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    setVolume(Integer[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    setWatermark(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the watermark which is shown diagonally on every page in output file.
    -
    -
    setWatermarkColor(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the color of your watermark.
    -
    -
    setWatermarkFont(String) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the font to your watermark.
    -
    -
    setWatermarkFontSize(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets the font size of your watermark.
    -
    -
    setWatermarkOpacity(Integer) - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Sets opacity of your watermark in percentage (ex 60).
    -
    -
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    setWebsite(String) - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    setWidth(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    -
    -
    The width manipulation is available from Cloud Office Print 20.2.
    -
    -
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    setWidth(String) - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
    -
    Default : automatically determined by Cloud Office Print.
    -
    -
    setWidthLogo(Integer) - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    setWifiHidden(Boolean) - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
     
    -
    setWrapText(String) - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
    -
    Note : only supports 5 of the Microsoft Word Text Wrapping options.
    -
    -
    setX(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    setX(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    setX2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    setXAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setXData(JsonArray) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    setXTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    setY(Integer) - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    setY(String[]) - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    setY2AxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setY2Title(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    setYAxisOptions(ChartAxisOptions) - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    setYData(HashMap<String, JsonArray>) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    setYTitle(String) - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    SheetLoop - Class in com.cloudofficeprint.RenderElements.Loops
    -
    -
    Loop where a sheet will be repeated for each element of the loop.
    -
    -
    SheetLoop(String, RenderElement[]) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    -
    -
    To repeat a sheet for each element of elements.
    -
    -
    SheetLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    -
    -
    To repeat a sheet for each element of elements.
    -
    -
    SheetLoop(String, HashMap<String, RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    -
    -
    To repeat a sheet for each element of elements.
    -
    -
    shortenDescription(String) - Method in class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    -
     
    -
    signPDF(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    This example show you how to sign a PDF file.
    -
    -
    SlideLoop - Class in com.cloudofficeprint.RenderElements.Loops
    -
    -
    Loop where a slide will be repeated for each element of the loop.
    -
    -
    SlideLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.SlideLoop
    -
    -
    To repeat a slide for each element of elements.
    -
    -
    SMSQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate an SMS QR-code - element.
    -
    -
    SMSQRCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    -
    -
    This object represents a SMS QR-code.
    -
    -
    SolarSystemExample - Class in com.cloudofficeprint.Examples.SolarSystem
    -
     
    -
    SolarSystemExample() - Constructor for class com.cloudofficeprint.Examples.SolarSystem.SolarSystemExample
    -
     
    -
    SpaceXExample - Class in com.cloudofficeprint.Examples.SpaceX
    -
    -
    This example is fully explained in the spacex_example.md file.
    -
    -
    SpaceXExample() - Constructor for class com.cloudofficeprint.Examples.SpaceX.SpaceXExample
    -
     
    -
    StockChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a stock chart.
    -
    -
    StockChart(String, ChartOptions, StockSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    -
    -
    Represents a stock chart.
    -
    -
    StockSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    This class represents series for stock charts.
    -
    -
    StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
    -
    This object represents series for a stock chart.
    -
    -
    StyledProperty - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Word and Powerpoint templates.
    -
    -
    StyledProperty(String, String) - Constructor for class com.cloudofficeprint.RenderElements.StyledProperty
    -
    -
    Represents styled text.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-17.html b/cloudofficeprint/build/docs/javadoc/index-files/index-17.html deleted file mode 100644 index b1f79b19..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-17.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - -T-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    T

    -
    -
    TableCell - Class in com.cloudofficeprint.RenderElements.Cells
    -
    -
    Only supported in Word, Excel, Powerpoint templates (they all have tables - with cells).
    -
    -
    TableCell(String, String, CellStyle) - Constructor for class com.cloudofficeprint.RenderElements.Cells.TableCell
    -
    -
    Represents a cell element.
    -
    -
    TableOfContents - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Word templates.
    -
    -
    TableOfContents(String, String, int, String) - Constructor for class com.cloudofficeprint.RenderElements.TableOfContents
    -
    -
    The most basic RenderElement.
    -
    -
    TableRowLoop - Class in com.cloudofficeprint.RenderElements.Loops
    -
    -
    Only supported in PowerPoint templates.
    -
    -
    TableRowLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
    -
    -
    Only supported in PowerPoint templates.
    -
    -
    TelephoneNumberQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate a telephone number - QR-code element.
    -
    -
    TelephoneNumberQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
    -
    -
    This object represents a telephone number QR-code.
    -
    -
    TextBox - Class in com.cloudofficeprint.RenderElements
    -
    -
    This tag will allow you to insert a text box starting in the cell containing - the tag in Excel.
    -
    -
    TextBox(String, String) - Constructor for class com.cloudofficeprint.RenderElements.TextBox
    -
    -
    This object represents a text box starting in the cell containing the tag in - Excel.
    -
    -
    toString() - Method in exception com.cloudofficeprint.COPException
    -
     
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-18.html b/cloudofficeprint/build/docs/javadoc/index-files/index-18.html deleted file mode 100644 index 00cb433c..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-18.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - -U-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    U

    -
    -
    updateJson1WithJson2(JsonObject, JsonObject) - Static method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    URLQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate an URL QR-code - element.
    -
    -
    URLQRCode(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.URLQRCode
    -
    -
    This object represents a URL QR-code.
    -
    -
    URLResource - Class in com.cloudofficeprint.Resources
    -
    -
    Child class of Resource.
    -
    -
    URLResource(String, String, String) - Constructor for class com.cloudofficeprint.Resources.URLResource
    -
    -
    Constructor for this class.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-19.html b/cloudofficeprint/build/docs/javadoc/index-files/index-19.html deleted file mode 100644 index aee363d2..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-19.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - -V-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    V

    -
    -
    VCardQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate a vCard QR-code - element
    -
    -
    VCardQRCode(String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
    -
    This object represents a VCF or vCard QR Code.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-2.html b/cloudofficeprint/build/docs/javadoc/index-files/index-2.html deleted file mode 100644 index 45e07866..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-2.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - -B-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    B

    -
    -
    BarChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a bar chart.
    -
    -
    BarChart(String, ChartOptions, BarSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    -
    -
    Represents a bar chart.
    -
    -
    BarCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class represents a barcode or a QR code (created using the data of the - key) for a template.
    -
    -
    BarCode(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
    -
    This class represents a barcode (created using the data of the key) for a - template.
    -
    -
    BarSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for bar charts.
    -
    -
    BarSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarSeries
    -
    -
    This object represents series for a bar chart.
    -
    -
    BarStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a stacked bar chart.
    -
    -
    BarStackedChart(String, ChartOptions, BarStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    -
    -
    Represents a stacked bar chart.
    -
    -
    BarStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a stacked bar chart where the x-axis is expressed in percentage.
    -
    -
    BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    -
    -
    Represents a stacked bar chart.
    -
    -
    BarStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for stacked bar charts where the x-axis is expressed in - percentage.
    -
    -
    BarStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries
    -
    -
    This object represents series for a stacked bar chart where the x-axis is - expressed in percentage.
    -
    -
    BarStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for stacked bar charts.
    -
    -
    BarStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries
    -
    -
    This object series for represents a stacked bar chart.
    -
    -
    Base64Resource - Class in com.cloudofficeprint.Resources
    -
    -
    Child class of Resource.
    -
    -
    Base64Resource() - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    -
    -
    Constructor for creating an uninitialised object of this class.
    -
    -
    Base64Resource(String, String) - Constructor for class com.cloudofficeprint.Resources.Base64Resource
    -
    -
    Constructor for creating an object of this class where the database64 can be - supplied as a string.
    -
    -
    BubbleChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a bubble chart.
    -
    -
    BubbleChart(String, ChartOptions, BubbleSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    -
    -
    Represents a bubble chart.
    -
    -
    BubbleSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for a bubble chart.
    -
    -
    BubbleSeries(String, String[], String[], Integer[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    -
    -
    This object represents series for a bubble chart.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-20.html b/cloudofficeprint/build/docs/javadoc/index-files/index-20.html deleted file mode 100644 index 2ee27a2d..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-20.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - -W-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    W

    -
    -
    Watermark - Class in com.cloudofficeprint.RenderElements
    -
    -
    It is possible to use your own Watermark with font, size, opacity, color, width, height and rotation.
    -
    -
    Watermark(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Watermark
    -
    -
    Represents a watermark.
    -
    -
    waterMarkAndStyledProperty(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    Example for a styled property and a watermark.
    -
    -
    WifiQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate a WiFi QR-code - element.
    -
    -
    WifiQRCode(String, String, String, String, Boolean) - Constructor for class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
    -
    This class is a subclass of QRCode and is used to generate a WiFi QR-code - element.
    -
    -
    withoutTemplate(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    Example without template.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-21.html b/cloudofficeprint/build/docs/javadoc/index-files/index-21.html deleted file mode 100644 index 8c6294d9..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-21.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - -X-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    X

    -
    -
    XYSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
     
    -
    XYSeries() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-3.html b/cloudofficeprint/build/docs/javadoc/index-files/index-3.html deleted file mode 100644 index c1233685..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-3.html +++ /dev/null @@ -1,325 +0,0 @@ - - - - - -C-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    C

    -
    -
    CellSpan - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only available for Excel and HTML templates.
    -
    -
    CellSpan(String, String, int, int) - Constructor for class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    CellStyle - Class in com.cloudofficeprint.RenderElements.Cells
    -
    -
    Abstract class for cellstyles.
    -
    -
    CellStyle() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyle
    -
     
    -
    CellStyleDocxPpt - Class in com.cloudofficeprint.RenderElements.Cells
    -
    -
    Represent the style of Word and PowerPoint cells.
    -
    -
    CellStyleDocxPpt(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    -
    -
    Represents the style of a Word/PowerPoint cell element.
    -
    -
    CellStyleXlsx - Class in com.cloudofficeprint.RenderElements.Cells
    -
    -
    Represents the style of Excel cells.
    -
    -
    CellStyleXlsx() - Constructor for class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
    -
    Represents the style of an Excell cell element.
    -
    -
    Chart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    It would be more optimal to make this class generic.
    -
    -
    Chart() - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    -
     
    -
    ChartAxisOptions - Class in com.cloudofficeprint.RenderElements.Charts
    -
     
    -
    ChartAxisOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
    -
    Represents the options for an axis of a chart.
    -
    -
    ChartDateOptions - Class in com.cloudofficeprint.RenderElements.Charts
    -
    -
    This class represents date options, only applicable for stock charts.
    -
    -
    ChartDateOptions(String, String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
    -
    This object represents the date options for a chart.
    -
    -
    chartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    This example show how to build a line chart.
    -
    -
    ChartOptions - Class in com.cloudofficeprint.RenderElements.Charts
    -
    -
    This class represents the chart options.
    -
    -
    ChartOptions() - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    This object represents the options for a chart.
    -
    -
    ChartTextStyle - Class in com.cloudofficeprint.RenderElements.Charts
    -
    -
    This class represent chart styling.
    -
    -
    ChartTextStyle(Boolean, Boolean, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
    -
    Contains the styling options for the text of the chart.
    -
    -
    CloudAccessToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    -
    -
    CloudAccessToken is an abstract class for all the different cloud access - tokens : OAuth tokens, AWS tokens,FTP/SFTP tokens
    -
    -
    CloudAccessToken() - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    -
     
    -
    Code - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    Superclass for QR and BarCodes.
    -
    -
    Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.Code
    -
    -
    This class represents codes (barcode or QR codes) (created using the data of - the key) for a template.
    -
    -
    ColumnChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a column chart.
    -
    -
    ColumnChart(String, ChartOptions, ColumnSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    -
    -
    Represents a column chart.
    -
    -
    ColumnSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for column charts.
    -
    -
    ColumnSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries
    -
    -
    This object represents series for a column chart.
    -
    -
    ColumnStackedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a stacked column chart.
    -
    -
    ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    -
    -
    Represents a stacked column chart.
    -
    -
    ColumnStackedPercentChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a stacked column chart.
    -
    -
    ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    -
    -
    Represents a stacked column chart where the y-axis is expressed in - percentage.
    -
    -
    ColumnStackedPercentSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for stacked column charts where the y-axis is expressed in - percentage.
    -
    -
    ColumnStackedPercentSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries
    -
    -
    This object represents series for a stacked column chart where the y-axis is - expressed in percentage.
    -
    -
    ColumnStackedSeries - Class in com.cloudofficeprint.RenderElements.Charts.Series
    -
    -
    Represents series for stacked column charts.
    -
    -
    ColumnStackedSeries(String, String[], String[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries
    -
    -
    This object represents series for a stacked column chart.
    -
    -
    com.cloudofficeprint - package com.cloudofficeprint
    -
     
    -
    com.cloudofficeprint.Examples.GeneralExamples - package com.cloudofficeprint.Examples.GeneralExamples
    -
     
    -
    com.cloudofficeprint.Examples.MultipleRequestMerge - package com.cloudofficeprint.Examples.MultipleRequestMerge
    -
     
    -
    com.cloudofficeprint.Examples.OrderConfirmation - package com.cloudofficeprint.Examples.OrderConfirmation
    -
     
    -
    com.cloudofficeprint.Examples.PDFSignature - package com.cloudofficeprint.Examples.PDFSignature
    -
     
    -
    com.cloudofficeprint.Examples.SolarSystem - package com.cloudofficeprint.Examples.SolarSystem
    -
     
    -
    com.cloudofficeprint.Examples.SpaceX - package com.cloudofficeprint.Examples.SpaceX
    -
     
    -
    com.cloudofficeprint.Output - package com.cloudofficeprint.Output
    -
     
    -
    com.cloudofficeprint.Output.CloudAcessToken - package com.cloudofficeprint.Output.CloudAcessToken
    -
     
    -
    com.cloudofficeprint.RenderElements - package com.cloudofficeprint.RenderElements
    -
     
    -
    com.cloudofficeprint.RenderElements.Cells - package com.cloudofficeprint.RenderElements.Cells
    -
     
    -
    com.cloudofficeprint.RenderElements.Charts - package com.cloudofficeprint.RenderElements.Charts
    -
     
    -
    com.cloudofficeprint.RenderElements.Charts.Charts - package com.cloudofficeprint.RenderElements.Charts.Charts
    -
     
    -
    com.cloudofficeprint.RenderElements.Charts.Series - package com.cloudofficeprint.RenderElements.Charts.Series
    -
     
    -
    com.cloudofficeprint.RenderElements.Codes - package com.cloudofficeprint.RenderElements.Codes
    -
     
    -
    com.cloudofficeprint.RenderElements.Images - package com.cloudofficeprint.RenderElements.Images
    -
     
    -
    com.cloudofficeprint.RenderElements.Loops - package com.cloudofficeprint.RenderElements.Loops
    -
     
    -
    com.cloudofficeprint.RenderElements.PDF - package com.cloudofficeprint.RenderElements.PDF
    -
     
    -
    com.cloudofficeprint.Resources - package com.cloudofficeprint.Resources
    -
     
    -
    com.cloudofficeprint.Server - package com.cloudofficeprint.Server
    -
     
    -
    CombinedChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a combined chart.
    -
    -
    CombinedChart(String, ChartOptions, Chart[], Chart[]) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
    -
    Represents a combined chart.
    -
    -
    combinedChartExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    This example show how to build a combined chart.
    -
    -
    Command - Class in com.cloudofficeprint.Server
    -
    -
    Command object with a single command for the Cloud Office Print server.
    -
    -
    Command(String, JsonObject) - Constructor for class com.cloudofficeprint.Server.Command
    -
    -
    -
    -
    -
    Commands - Class in com.cloudofficeprint.Server
    -
    -
    Commands object with commands for the Cloud Office Print server to run before - or after the post processing.
    -
    -
    Commands() - Constructor for class com.cloudofficeprint.Server.Commands
    -
     
    -
    COPChart - Class in com.cloudofficeprint.RenderElements
    -
    -
    Supported in Word, Excel and Powerpoint templates.
    -
    -
    COPChart(String, JsonArray, HashMap<String, JsonArray>, String, String, String, String, String, COPChartDateOptions) - Constructor for class com.cloudofficeprint.RenderElements.COPChart
    -
    -
    Represent a Cloud Office Print chart (including data and style).
    -
    -
    COPChartDateOptions - Class in com.cloudofficeprint.RenderElements
    -
    -
    Date options for an COPChart (different from ChartDateOptions for the other - Charts).
    -
    -
    COPChartDateOptions(String, String, Integer) - Constructor for class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
    -
    This object represents the date options for a chart.
    -
    -
    COPException - Exception in com.cloudofficeprint
    -
    -
    Class for handling a HTTP response of the Cloud Office Print server when the - responseCode is /= 200.
    -
    -
    COPException(int, String) - Constructor for exception com.cloudofficeprint.COPException
    -
    -
    Sets this.responseCode to responseCode.
    -
    -
    COPPDFTextAndImageExample(String) - Method in class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
    -
    This example shows you how to add text and images on pages of a template - without tag.
    -
    -
    CsvOptions - Class in com.cloudofficeprint.Output
    -
    -
    Class for all the optional PDF output options.
    -
    -
    CsvOptions() - Constructor for class com.cloudofficeprint.Output.CsvOptions
    -
    -
    Constructor for the CsvOptions object.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-4.html b/cloudofficeprint/build/docs/javadoc/index-files/index-4.html deleted file mode 100644 index ca6886d9..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-4.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - -D-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    D

    -
    -
    D3Code - Class in com.cloudofficeprint.RenderElements
    -
    -
    With Word/Excel/PowerPoint documents, it's possible to let Cloud Office Print - execute some JavaScript code to generate a D3 image (Data Driven Documents).
    -
    -
    D3Code(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.D3Code
    -
    -
    Represents an D3 image.
    -
    -
    DoughnutChart - Class in com.cloudofficeprint.RenderElements.Charts.Charts
    -
    -
    Represents a doughnut chart.
    -
    -
    DoughnutChart(String, ChartOptions, PieSeries...) - Constructor for class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    -
    -
    Represents a doughnut chart.
    -
    -
    downloadLocally(String) - Method in class com.cloudofficeprint.Response
    -
    -
    Downloads the file locally to the given path, filename needs to be specified - at the end of the path, not the extension.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-5.html b/cloudofficeprint/build/docs/javadoc/index-files/index-5.html deleted file mode 100644 index 5dc2431b..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-5.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - -E-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    E

    -
    -
    ElementCollection - Class in com.cloudofficeprint.RenderElements
    -
    -
    A collection used to group multiple RenderElements together.
    -
    -
    ElementCollection(String) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    -
    -
    A collection used to group multiple RenderElements together.
    -
    -
    ElementCollection(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.ElementCollection
    -
    -
    A collection used to group multiple RenderElements together.
    -
    -
    EmailQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate an email QR-code - element
    -
    -
    EmailQRCode(String, String, String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
    -
    This object represents a mail QR-code.
    -
    -
    EventQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate an event QR-code - element
    -
    -
    EventQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    -
    -
    This object represents a Event QR Code.
    -
    -
    Examples - Class in com.cloudofficeprint.Examples.GeneralExamples
    -
     
    -
    Examples() - Constructor for class com.cloudofficeprint.Examples.GeneralExamples.Examples
    -
     
    -
    execute() - Method in class com.cloudofficeprint.PrintJob
    -
    -
    Creates the adequate JSON and sends it to the Cloud Office Print server.
    -
    -
    ExternalResource - Class in com.cloudofficeprint.Resources
    -
    -
    Abstract base class for external resources.
    -
    -
    ExternalResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.ExternalResource
    -
    -
    Abstract base class for external resources.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-6.html b/cloudofficeprint/build/docs/javadoc/index-files/index-6.html deleted file mode 100644 index b454af4f..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-6.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - -F-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    F

    -
    -
    FootNote - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Word and Excel templates.
    -
    -
    FootNote(String, String) - Constructor for class com.cloudofficeprint.RenderElements.FootNote
    -
    -
    Element to insert a footnote in a template.
    -
    -
    Formula - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Excel.
    -
    -
    Formula(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Formula
    -
    -
    Represents an Excel formula.
    -
    -
    Freeze - Class in com.cloudofficeprint.RenderElements
    -
    -
    This tag will allow you to utilize freeze pane property of the Excel.Three options are available.
    -
    -
    Freeze(String, boolean) - Constructor for class com.cloudofficeprint.RenderElements.Freeze
    -
    -
    This tag will allow you to use freeze pane property of Excel.
    -
    -
    Freeze(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Freeze
    -
    -
    This tag will allow you to use freeze pane property of Excel.
    -
    -
    FTPToken - Class in com.cloudofficeprint.Output.CloudAcessToken
    -
    -
    Class to use for FTP/SFTP tokens to store output on a FTP/SFTP server.
    -
    -
    FTPToken(String, Boolean, int, String, String) - Constructor for class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
    -
    Constructor for an FTPToken object.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-7.html b/cloudofficeprint/build/docs/javadoc/index-files/index-7.html deleted file mode 100644 index 46ae0262..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-7.html +++ /dev/null @@ -1,1174 +0,0 @@ - - - - - -G-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    G

    -
    -
    GeolocationQRCode - Class in com.cloudofficeprint.RenderElements.Codes
    -
    -
    This class is a subclass of QRCode and is used to generate a geolocation - QR-code element
    -
    -
    GeolocationQRCode(String, String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    -
    -
    This object represents a VCF or vCard QR Code.
    -
    -
    getAccessToken() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getAltitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    -
     
    -
    getAltText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getAPIKey() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Only applicable for service users.
    -
    -
    getAppendFiles() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getArgs() - Method in class com.cloudofficeprint.Server.Command
    -
     
    -
    getAuth() - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    getAutoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getAutoColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getAutoColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    -
     
    -
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Note: displaying rounded corners is not supported by LibreOffice.
    -
    -
    getBackgroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getBackGroundImage() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getBackgroundImageAlpha() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getBackgroundOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Note: backgroundOpacity is ignored if backgroundColor is not specified or if - backgroundColor is specified in a color space which includes an alpha channel - (e.g.
    -
    -
    getBarSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    -
     
    -
    getBarStackedPercentSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    -
     
    -
    getBarStackedSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    -
     
    -
    getBcc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    getBirthday() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    getBody() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    -
     
    -
    getBody() - Method in class com.cloudofficeprint.Resources.RESTResource
    -
     
    -
    getBody() - Method in class com.cloudofficeprint.Response
    -
     
    -
    getBold() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    getBold() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getBold() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getBooleanValue() - Method in class com.cloudofficeprint.RenderElements.Freeze
    -
     
    -
    getBorder() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getBorderBottom() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderBottomColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderDiagonal() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderDiagonalColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderDiagonalDirection() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderLeft() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderLeftColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderRight() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderRightColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderTop() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getBorderTopColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getCc() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    getCellBackground() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getCellHidden() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getCellLocked() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getCellStyle() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    -
     
    -
    getCharacterSet() - Method in class com.cloudofficeprint.Output.CsvOptions
    -
     
    -
    getCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
     
    -
    getClose() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    getCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    -
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    getColor() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getColorDark() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getColorLight() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getColors() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    -
    -
    Note : If no colors are specified, the document's theme is used.
    -
    -
    getColumns() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    getColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    -
     
    -
    getColumnStackedPercentageSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    -
     
    -
    getCommand() - Method in class com.cloudofficeprint.Server.Command
    -
     
    -
    getCommands() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    getContactPrimary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getContactSecondary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getContactTertiary() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getConverter() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getCopChartDateOptions() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getCopies() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Useful when user need multiple number of output copies
    -
    -
    getCopRemoteDebug() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getCOPVersionOnServer() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to server-url/version.
    -
    -
    getCsvOptions() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getData() - Method in class com.cloudofficeprint.PrintJob
    -
    -
    Renderelements will replace their corresponding tag in the template.
    -
    -
    getData() - Method in class com.cloudofficeprint.RenderElements.D3Code
    -
     
    -
    getDataSource() - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    getDate() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getDepth() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    -
     
    -
    getDotScale() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getElements() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    getElements() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    -
     
    -
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getEmail() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    getEncoding() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getEncryption() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
     
    -
    getEndDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    -
     
    -
    getEndpoint() - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    getEvenPage() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getExt() - Method in class com.cloudofficeprint.Response
    -
     
    -
    getExtension(String) - Static method in class com.cloudofficeprint.Mimetype
    -
    -
    Return the extension given the mimetype of a file.
    -
    -
    getExtension(String) - Method in class com.cloudofficeprint.Resources.Resource
    -
     
    -
    getExternalResource() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getExtraOptions() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
    -
    If you want to include extra options like including barcode text on the botto - The options should be space separated and should be followed by a "=" and - their value.
    -
    -
    getFieldSeparator() - Method in class com.cloudofficeprint.Output.CsvOptions
    -
     
    -
    getFileBase64() - Method in class com.cloudofficeprint.Resources.Base64Resource
    -
     
    -
    getFileName() - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    getFiletype() - Method in class com.cloudofficeprint.Resources.Resource
    -
     
    -
    getFirstName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getFont() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getFontBold() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getFontColor() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getFontItalic() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getFontSize() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getFontStrike() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFontSubscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFontSuperscript() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFontUnderline() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getFormat() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    getFormat() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
     
    -
    getFormatCode() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getFormData() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    -
     
    -
    getGrid() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getHeaders() - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getHeight() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getHeightLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getHigh() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    getHighlightColor() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getHost() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    getHTML() - Method in class com.cloudofficeprint.Resources.HTMLResource
    -
     
    -
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    getIdentifier() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getIdentifyFormFields() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getImage() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    getImages() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    -
     
    -
    getItalic() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    getItalic() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getItalic() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getJobName() - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    getJson() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.CsvOptions
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyle
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BarStackedPercentChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedPercentChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartTextStyle
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
    -
    No color needed for stockseries.
    -
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.SMSQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.TelephoneNumberQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.URLQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.D3Code
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.FootNote
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Formula
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Freeze
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HTML
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PageBreak
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Property
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Raw
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    -
    -
    Don't use.
    -
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Resources.ExternalResource
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Resources.RESTResource
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Command
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    getJSON() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    getJsonArray() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    -
    -
    To get raw json array.
    -
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    -
     
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.PieSeries
    -
     
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    getJSONData() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    getJSONForPost() - Method in class com.cloudofficeprint.Server.Command
    -
     
    -
    getJSONForPre() - Method in class com.cloudofficeprint.Server.Command
    -
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Base64Resource
    -
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.HTMLResource
    -
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.Resource
    -
    -
    Needs to be used to get the JSON of a resource for a secondary file (file to - prepend, to append, to insert or subtemplate), because their JSON has a - different format then for a template.
    -
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.ServerResource
    -
     
    -
    getJSONForSecondaryFile() - Method in class com.cloudofficeprint.Resources.URLResource
    -
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Base64Resource
    -
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.HTMLResource
    -
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.Resource
    -
    -
    Needs to be called to get the JSON of a resource for a template.
    -
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.ServerResource
    -
     
    -
    getJSONForTemplate() - Method in class com.cloudofficeprint.Resources.URLResource
    -
     
    -
    getKeyID() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    -
     
    -
    getLandscape() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Returns whether to output PDF will have landscape orientation or not.
    -
    -
    getLandscape() - Method in class com.cloudofficeprint.Resources.HTMLResource
    -
     
    -
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getLastName() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    getLegendPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getLegendStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getLineseries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.LineChart
    -
     
    -
    getLineStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    getLineThickness() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    getLinkUrl() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getLocation() - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    getLockForm() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getLoggingInfo() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    When the Cloud Office Print server is started with --enable_printlog, it will - create a file on the server called server_printjob.log.
    -
    -
    getLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getLogoBackGroundColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getLongitude() - Method in class com.cloudofficeprint.RenderElements.Codes.GeolocationQRCode
    -
     
    -
    getLow() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    getMajorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getMajorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getMax() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getMaxHeight() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getMaxWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    getMerge() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getMergeMakingEven() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getMessageForSupport() - Method in exception com.cloudofficeprint.COPException
    -
     
    -
    getMethod() - Method in class com.cloudofficeprint.Resources.RESTResource
    -
     
    -
    getMimetype() - Method in class com.cloudofficeprint.Response
    -
     
    -
    getMimeType() - Method in class com.cloudofficeprint.Resources.Resource
    -
     
    -
    getMimeType(String) - Static method in class com.cloudofficeprint.Mimetype
    -
    -
    Return the mimetype given the extension of a file.
    -
    -
    getMimetypeFromContentType(String) - Static method in class com.cloudofficeprint.Mimetype
    -
    -
    Extract the mimetype from the Content-Type argument in an HTTP reponse.
    -
    -
    getMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to server-url/supported_template_mimetypes.
    -
    -
    getMin() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getMinorGridLines() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getMinorUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getModifiedChartDicts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
     
    -
    getModifyPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getName() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    getName() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    -
     
    -
    getNickname() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getNotes() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getOfficeToPdfVersion() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to server-url/officetopdf.
    -
    -
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries
    -
    -
    Note: Decimal value between 0 and 1.
    -
    -
    getOpacity() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getOpen() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    getOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    -
     
    -
    getOrientation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getOutput() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getOutputMimeTypesSupported(String) - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to - server-url/supported_output_mimetypes?template=extension.
    -
    -
    getPaddingHeight() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getPaddingWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getPageFormat() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getPageHeight() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Only supported when converting HTML to PDF.
    -
    -
    getPageMargin() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Only supported when converting HTML to PDF.
    -
    -
    getPageNumber() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    getPageWidth() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Only supported when converting HTML to PDF.
    -
    -
    getPassword() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    getPassword() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
     
    -
    getPassword() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    getPasswordProtectionFlag() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    More info on the flag bits on - https://pdfhummus.com/post/147451287581/hummus-1058-and-pdf-writer-updates-encryption.
    -
    -
    getPath() - Method in class com.cloudofficeprint.Resources.ServerResource
    -
     
    -
    getPDFOptions() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getPiBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPiColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.DoughnutChart
    -
     
    -
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Pie3DChart
    -
     
    -
    getPieSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.PieChart
    -
     
    -
    getPiTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPiTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPoBLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPoColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPort() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    getPosition() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Note that not all options might be available for specific charts.
    -
    -
    getPostConversion() - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    getPostMerge() - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    getPostProcess() - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    getPostProcessDeleteDelay() - Method in class com.cloudofficeprint.Server.Commands
    -
    -
    Cloud Office Print deletes the file provided to the command directly after - executing it.
    -
    -
    getPostProcessReturn() - Method in class com.cloudofficeprint.Server.Commands
    -
    -
    If you are already doing something with the file and don't want it to be - returned in the response set this to true.
    -
    -
    getPoTLColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPoTRColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getPreConversion() - Method in class com.cloudofficeprint.Server.Commands
    -
     
    -
    getPrependFiles() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getPrependMimeTypesSupported() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to server-url/supported_prepend_mimetypes.
    -
    -
    getPrinter() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Cloud Office Print supports to print directly to an IP Printer.
    -
    -
    getProxyIP() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    getProxyPort() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    getQrErrorCorrectionLevel() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
    -
    Only for QR codes.
    -
    -
    getQuery() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    -
     
    -
    getQuietZone() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getQuietZoneColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getReadPassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getRemoveLastPage() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Returns whether to remove last page from output.
    -
    -
    getRequester() - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    getResponse() - Method in class com.cloudofficeprint.PrintJob
    -
    -
    For getting to response after asynchronous execution.
    -
    -
    getResponseCode() - Method in exception com.cloudofficeprint.COPException
    -
     
    -
    getReturnOutput() - Method in class com.cloudofficeprint.Server.Printer
    -
    -
    You can specify to whether to return output from server
    -
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getRotation() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getRoundedCorners() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getRows() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    getSecondaryCharts() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.CombinedChart
    -
     
    -
    getSecretKey() - Method in class com.cloudofficeprint.Output.CloudAcessToken.AWSToken
    -
     
    -
    getSeparator() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.AreaChart
    -
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.BubbleChart
    -
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.RadarChart
    -
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ScatterChart
    -
     
    -
    getSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.StockChart
    -
     
    -
    getServer() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getServerDirectory() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getService() - Method in class com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken
    -
     
    -
    getSheetNames() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    -
     
    -
    getShowCategoryName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getShowDataLabels() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
    -
    Default true for pie/pie3d and doughnut.
    -
    -
    getShowLegend() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getShowLegendKey() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getShowPercentage() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getShowSeriesName() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getShowValue() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getSignCertificate() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getSignCertificatePassword() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getSizes() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries
    -
     
    -
    getSmooth() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    getSofficeVersionServer() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to server-url/soffice.
    -
    -
    getSplit() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Returns whether to split or not.
    -
    -
    getStackedColumnSeries() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.ColumnStackedChart
    -
     
    -
    getStartDate() - Method in class com.cloudofficeprint.RenderElements.Codes.EventQRCode
    -
     
    -
    getStep() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    getStep() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
     
    -
    getStrikethrough() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getSubject() - Method in class com.cloudofficeprint.RenderElements.Codes.EmailQRCode
    -
     
    -
    getSubTemplates() - Method in class com.cloudofficeprint.PrintJob
    -
    -
    Subtemplates are only accessible (in docx).
    -
    -
    getSymbol() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    getSymbolSize() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
    -
     
    -
    getTabLeader() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    -
     
    -
    getTargetUrl() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getTemplate() - Method in class com.cloudofficeprint.PrintJob
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Cells.TableCell
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.CellSpan
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Charts.Charts.Chart
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.D3Code
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.ElementCollection
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.FootNote
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Formula
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Freeze
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HTML
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Labels
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.SlideLoop
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.TableRowLoop
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.MarkDownContent
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PageBreak
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFFormData
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImages
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Property
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Raw
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RawJsonArray
    -
    -
    Don't use.
    -
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.RightToLeft
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TableOfContents
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.GraphQLResource
    -
    -
    Cannot be used for a resource.
    -
    -
    getTemplateTags() - Method in class com.cloudofficeprint.Resources.RESTResource
    -
    -
    Cannot be used for a resource.
    -
    -
    getText() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFText
    -
     
    -
    getTextDelimiter() - Method in class com.cloudofficeprint.Output.CsvOptions
    -
     
    -
    getTextHAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getTextRotation() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getTexts() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFTexts
    -
     
    -
    getTextVAlignment() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleXlsx
    -
     
    -
    getTimingColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getTimingHColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getTimingVColor() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getTitle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getTitleRotation() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getTitleStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getToken() - Method in class com.cloudofficeprint.Output.CloudAcessToken.OAuth2Token
    -
     
    -
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getTransparency() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getType() - Method in class com.cloudofficeprint.Output.Output
    -
     
    -
    getType() - Method in class com.cloudofficeprint.RenderElements.Codes.Code
    -
     
    -
    getUnderline() - Method in class com.cloudofficeprint.RenderElements.StyledProperty
    -
     
    -
    getUnit() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartDateOptions
    -
     
    -
    getUnit() - Method in class com.cloudofficeprint.RenderElements.COPChartDateOptions
    -
     
    -
    getURID() - Method in exception com.cloudofficeprint.COPException
    -
     
    -
    getUrl() - Method in class com.cloudofficeprint.RenderElements.HyperLink
    -
    -
    Note : In Excel you can hyperlink to a cell.
    -
    -
    getUrl() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    getURL() - Method in class com.cloudofficeprint.Resources.URLResource
    -
     
    -
    getUserMessage() - Method in exception com.cloudofficeprint.COPException
    -
     
    -
    getUsername() - Method in class com.cloudofficeprint.Output.CloudAcessToken.FTPToken
    -
     
    -
    getUsername() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    getValue() - Method in class com.cloudofficeprint.RenderElements.RenderElement
    -
     
    -
    getValues() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getValuesStyle() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions
    -
     
    -
    getVersion() - Method in class com.cloudofficeprint.Server.Printer
    -
     
    -
    getVolume() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.StockSeries
    -
     
    -
    getWatermark() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getWatermarkColor() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
    -
    Returns the color of your watermark.
    -
    -
    getWatermarkFont() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getWatermarkFontSize() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getWatermarkOpacity() - Method in class com.cloudofficeprint.Output.PDFOptions
    -
     
    -
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.MECardQRCode
    -
     
    -
    getWebsite() - Method in class com.cloudofficeprint.RenderElements.Codes.VCardQRCode
    -
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Cells.CellStyleDocxPpt
    -
    -
    The width manipulation is available from Cloud Office Print 20.2.
    -
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Codes.BarCode
    -
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFImage
    -
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.TextBox
    -
     
    -
    getWidth() - Method in class com.cloudofficeprint.RenderElements.Watermark
    -
     
    -
    getWidthLogo() - Method in class com.cloudofficeprint.RenderElements.Codes.QRCode
    -
     
    -
    getWifiHidden() - Method in class com.cloudofficeprint.RenderElements.Codes.WifiQRCode
    -
     
    -
    getWrapText() - Method in class com.cloudofficeprint.RenderElements.Images.Image
    -
    -
    Note : only supports 5 of the Microsoft Word Text Wrapping options.
    -
    -
    getX() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    getX() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    getX2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getXAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getXData() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getXTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getY() - Method in class com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
    -
     
    -
    getY() - Method in class com.cloudofficeprint.RenderElements.PDF.PDFInsertObject
    -
     
    -
    getY2AxisOptions() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getY2Title() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getYAxis() - Method in class com.cloudofficeprint.RenderElements.Charts.ChartOptions
    -
     
    -
    getYData() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    getYTitle() - Method in class com.cloudofficeprint.RenderElements.COPChart
    -
     
    -
    GraphQLResource - Class in com.cloudofficeprint.Resources
    -
    -
    Class for working with a GraphQL endpoint as Resource.
    -
    -
    GraphQLResource(String, String, String, JsonArray, String) - Constructor for class com.cloudofficeprint.Resources.GraphQLResource
    -
    -
    Resource from a GraphQL endpoint.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-8.html b/cloudofficeprint/build/docs/javadoc/index-files/index-8.html deleted file mode 100644 index 7d313797..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-8.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - -H-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    H

    -
    -
    HTML - Class in com.cloudofficeprint.RenderElements
    -
    -
    Only supported in Word, Excel, HTML and Md templates.
    -
    -
    HTML(String, String) - Constructor for class com.cloudofficeprint.RenderElements.HTML
    -
    -
    HTML text can be rendered and put in templates.
    -
    -
    HTMLResource - Class in com.cloudofficeprint.Resources
    -
    -
    Child class of Resource.
    -
    -
    HTMLResource(String, Boolean) - Constructor for class com.cloudofficeprint.Resources.HTMLResource
    -
    -
    Constructor for this class.
    -
    -
    HyperLink - Class in com.cloudofficeprint.RenderElements
    -
    -
    Class representing a hyperlink for templates.
    -
    -
    HyperLink(String, String, String) - Constructor for class com.cloudofficeprint.RenderElements.HyperLink
    -
    -
    Element to insert a footnote in a template.
    -
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index-files/index-9.html b/cloudofficeprint/build/docs/javadoc/index-files/index-9.html deleted file mode 100644 index a90abb69..00000000 --- a/cloudofficeprint/build/docs/javadoc/index-files/index-9.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - -I-Index - - - - - - - - - - - - - - -
    - -
    -
    -
    -

    Index

    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages -

    I

    -
    -
    Image - Class in com.cloudofficeprint.RenderElements.Images
    -
     
    -
    Image() - Constructor for class com.cloudofficeprint.RenderElements.Images.Image
    -
     
    -
    ImageBase64 - Class in com.cloudofficeprint.RenderElements.Images
    -
    -
    Represents an image to insert in a template with a base64-encoded string as - source.
    -
    -
    ImageBase64(String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    -
    -
    This object represent an image to insert in the template.
    -
    -
    ImageBase64(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageBase64
    -
    -
    This object represent an image to insert in the template.
    -
    -
    ImageUrl - Class in com.cloudofficeprint.RenderElements.Images
    -
    -
    Represents an image to insert in a template with a URL string as source.
    -
    -
    ImageUrl(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Images.ImageUrl
    -
    -
    This object represent an image to insert in the template.
    -
    -
    InlineDataLoop - Class in com.cloudofficeprint.RenderElements.Loops
    -
    -
    Horizontal table looping for Word, Excel and CSV templates.
    -
    -
    InlineDataLoop(String, ArrayList<RenderElement>) - Constructor for class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
    -
    -
    Horizontal table looping for Word, Excel and CSV templates.
    -
    -
    isIppPrinterReachable() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a Get request to check the status of ipp-printer provided with location and version of url.
    -
    -
    isReachable() - Method in class com.cloudofficeprint.Server.Server
    -
    -
    Sends a GET request to server-url/marco and checks if the answer is polo.
    -
    -
    isVerbose() - Method in class com.cloudofficeprint.Server.Server
    -
     
    -
    -A B C D E F G H I L M O P Q R S T U V W X 
    All Classes|All Packages
    - -
    -
    - - diff --git a/cloudofficeprint/build/docs/javadoc/index.html b/cloudofficeprint/build/docs/javadoc/index.html index eb7f4ef2..126ab533 100644 --- a/cloudofficeprint/build/docs/javadoc/index.html +++ b/cloudofficeprint/build/docs/javadoc/index.html @@ -2,10 +2,9 @@ - -Overview + +Overview (cloudofficeprint 21.2.1 API) - @@ -33,7 +32,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • @@ -50,6 +49,9 @@
    +
    +

    cloudofficeprint 21.2.1 API

    +
    @@ -155,7 +157,7 @@
  • Class
  • Tree
  • Deprecated
  • -
  • Index
  • +
  • Index
  • Help
  • diff --git a/cloudofficeprint/build/docs/javadoc/jquery/external/jquery/jquery.js b/cloudofficeprint/build/docs/javadoc/jquery/external/jquery/jquery.js deleted file mode 100644 index 50937333..00000000 --- a/cloudofficeprint/build/docs/javadoc/jquery/external/jquery/jquery.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "
    Packages
    ", "
    " ], - col: [ 2, "", "
    " ], - tr: [ 2, "", "
    " ], - td: [ 3, "", "
    " ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( "\r\n"; - -// inject VBScript -document.write(IEBinaryToArray_ByteStr_Script); - -global.JSZipUtils._getBinaryFromXHR = function (xhr) { - var binary = xhr.responseBody; - var byteMapping = {}; - for ( var i = 0; i < 256; i++ ) { - for ( var j = 0; j < 256; j++ ) { - byteMapping[ String.fromCharCode( i + (j << 8) ) ] = - String.fromCharCode(i) + String.fromCharCode(j); - } - } - var rawBytes = IEBinaryToArray_ByteStr(binary); - var lastChr = IEBinaryToArray_ByteStr_Last(binary); - return rawBytes.replace(/[\s\S]/g, function( match ) { - return byteMapping[match]; - }) + lastChr; -}; - -// enforcing Stuk's coding style -// vim: set shiftwidth=4 softtabstop=4: - -},{}]},{},[1]) -; diff --git a/cloudofficeprint/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js b/cloudofficeprint/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js deleted file mode 100644 index 93d8bc8e..00000000 --- a/cloudofficeprint/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils-ie.min.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! - -JSZipUtils - A collection of cross-browser utilities to go along with JSZip. - - -(c) 2014 Stuart Knightley, David Duponchel -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. - -*/ -!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]); diff --git a/cloudofficeprint/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js b/cloudofficeprint/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js deleted file mode 100644 index 775895ec..00000000 --- a/cloudofficeprint/build/docs/javadoc/jquery/jszip-utils/dist/jszip-utils.js +++ /dev/null @@ -1,118 +0,0 @@ -/*! - -JSZipUtils - A collection of cross-browser utilities to go along with JSZip. - - -(c) 2014 Stuart Knightley, David Duponchel -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. - -*/ -!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o - -(c) 2014 Stuart Knightley, David Duponchel -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown. - -*/ -!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g - -(c) 2009-2016 Stuart Knightley -Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown. - -JSZip uses the library pako released under the MIT license : -https://github.com/nodeca/pako/blob/master/LICENSE -*/ - -(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o> 2; - enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); - enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64; - enc4 = remainingBytes > 2 ? (chr3 & 63) : 64; - - output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4)); - - } - - return output.join(""); -}; - -// public method for decoding -exports.decode = function(input) { - var chr1, chr2, chr3; - var enc1, enc2, enc3, enc4; - var i = 0, resultIndex = 0; - - var dataUrlPrefix = "data:"; - - if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) { - // This is a common error: people give a data url - // (data:image/png;base64,iVBOR...) with a {base64: true} and - // wonders why things don't work. - // We can detect that the string input looks like a data url but we - // *can't* be sure it is one: removing everything up to the comma would - // be too dangerous. - throw new Error("Invalid base64 input, it looks like a data url."); - } - - input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); - - var totalLength = input.length * 3 / 4; - if(input.charAt(input.length - 1) === _keyStr.charAt(64)) { - totalLength--; - } - if(input.charAt(input.length - 2) === _keyStr.charAt(64)) { - totalLength--; - } - if (totalLength % 1 !== 0) { - // totalLength is not an integer, the length does not match a valid - // base64 content. That can happen if: - // - the input is not a base64 content - // - the input is *almost* a base64 content, with a extra chars at the - // beginning or at the end - // - the input uses a base64 variant (base64url for example) - throw new Error("Invalid base64 input, bad content length."); - } - var output; - if (support.uint8array) { - output = new Uint8Array(totalLength|0); - } else { - output = new Array(totalLength|0); - } - - while (i < input.length) { - - enc1 = _keyStr.indexOf(input.charAt(i++)); - enc2 = _keyStr.indexOf(input.charAt(i++)); - enc3 = _keyStr.indexOf(input.charAt(i++)); - enc4 = _keyStr.indexOf(input.charAt(i++)); - - chr1 = (enc1 << 2) | (enc2 >> 4); - chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); - chr3 = ((enc3 & 3) << 6) | enc4; - - output[resultIndex++] = chr1; - - if (enc3 !== 64) { - output[resultIndex++] = chr2; - } - if (enc4 !== 64) { - output[resultIndex++] = chr3; - } - - } - - return output; -}; - -},{"./support":30,"./utils":32}],2:[function(require,module,exports){ -'use strict'; - -var external = require("./external"); -var DataWorker = require('./stream/DataWorker'); -var DataLengthProbe = require('./stream/DataLengthProbe'); -var Crc32Probe = require('./stream/Crc32Probe'); -var DataLengthProbe = require('./stream/DataLengthProbe'); - -/** - * Represent a compressed object, with everything needed to decompress it. - * @constructor - * @param {number} compressedSize the size of the data compressed. - * @param {number} uncompressedSize the size of the data after decompression. - * @param {number} crc32 the crc32 of the decompressed file. - * @param {object} compression the type of compression, see lib/compressions.js. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data. - */ -function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) { - this.compressedSize = compressedSize; - this.uncompressedSize = uncompressedSize; - this.crc32 = crc32; - this.compression = compression; - this.compressedContent = data; -} - -CompressedObject.prototype = { - /** - * Create a worker to get the uncompressed content. - * @return {GenericWorker} the worker. - */ - getContentWorker : function () { - var worker = new DataWorker(external.Promise.resolve(this.compressedContent)) - .pipe(this.compression.uncompressWorker()) - .pipe(new DataLengthProbe("data_length")); - - var that = this; - worker.on("end", function () { - if(this.streamInfo['data_length'] !== that.uncompressedSize) { - throw new Error("Bug : uncompressed data size mismatch"); - } - }); - return worker; - }, - /** - * Create a worker to get the compressed content. - * @return {GenericWorker} the worker. - */ - getCompressedWorker : function () { - return new DataWorker(external.Promise.resolve(this.compressedContent)) - .withStreamInfo("compressedSize", this.compressedSize) - .withStreamInfo("uncompressedSize", this.uncompressedSize) - .withStreamInfo("crc32", this.crc32) - .withStreamInfo("compression", this.compression) - ; - } -}; - -/** - * Chain the given worker with other workers to compress the content with the - * given compresion. - * @param {GenericWorker} uncompressedWorker the worker to pipe. - * @param {Object} compression the compression object. - * @param {Object} compressionOptions the options to use when compressing. - * @return {GenericWorker} the new worker compressing the content. - */ -CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) { - return uncompressedWorker - .pipe(new Crc32Probe()) - .pipe(new DataLengthProbe("uncompressedSize")) - .pipe(compression.compressWorker(compressionOptions)) - .pipe(new DataLengthProbe("compressedSize")) - .withStreamInfo("compression", compression); -}; - -module.exports = CompressedObject; - -},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){ -'use strict'; - -var GenericWorker = require("./stream/GenericWorker"); - -exports.STORE = { - magic: "\x00\x00", - compressWorker : function (compressionOptions) { - return new GenericWorker("STORE compression"); - }, - uncompressWorker : function () { - return new GenericWorker("STORE decompression"); - } -}; -exports.DEFLATE = require('./flate'); - -},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){ -'use strict'; - -var utils = require('./utils'); - -/** - * The following functions come from pako, from pako/lib/zlib/crc32.js - * released under the MIT license, see pako https://github.com/nodeca/pako/ - */ - -// Use ordinary array, since untyped makes no boost here -function makeTable() { - var c, table = []; - - for(var n =0; n < 256; n++){ - c = n; - for(var k =0; k < 8; k++){ - c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); - } - table[n] = c; - } - - return table; -} - -// Create table on load. Just 255 signed longs. Not a problem. -var crcTable = makeTable(); - - -function crc32(crc, buf, len, pos) { - var t = crcTable, end = pos + len; - - crc = crc ^ (-1); - - for (var i = pos; i < end; i++ ) { - crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; - } - - return (crc ^ (-1)); // >>> 0; -} - -// That's all for the pako functions. - -/** - * Compute the crc32 of a string. - * This is almost the same as the function crc32, but for strings. Using the - * same function for the two use cases leads to horrible performances. - * @param {Number} crc the starting value of the crc. - * @param {String} str the string to use. - * @param {Number} len the length of the string. - * @param {Number} pos the starting position for the crc32 computation. - * @return {Number} the computed crc32. - */ -function crc32str(crc, str, len, pos) { - var t = crcTable, end = pos + len; - - crc = crc ^ (-1); - - for (var i = pos; i < end; i++ ) { - crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF]; - } - - return (crc ^ (-1)); // >>> 0; -} - -module.exports = function crc32wrapper(input, crc) { - if (typeof input === "undefined" || !input.length) { - return 0; - } - - var isArray = utils.getTypeOf(input) !== "string"; - - if(isArray) { - return crc32(crc|0, input, input.length, 0); - } else { - return crc32str(crc|0, input, input.length, 0); - } -}; - -},{"./utils":32}],5:[function(require,module,exports){ -'use strict'; -exports.base64 = false; -exports.binary = false; -exports.dir = false; -exports.createFolders = true; -exports.date = null; -exports.compression = null; -exports.compressionOptions = null; -exports.comment = null; -exports.unixPermissions = null; -exports.dosPermissions = null; - -},{}],6:[function(require,module,exports){ -/* global Promise */ -'use strict'; - -// load the global object first: -// - it should be better integrated in the system (unhandledRejection in node) -// - the environment may have a custom Promise implementation (see zone.js) -var ES6Promise = null; -if (typeof Promise !== "undefined") { - ES6Promise = Promise; -} else { - ES6Promise = require("lie"); -} - -/** - * Let the user use/change some implementations. - */ -module.exports = { - Promise: ES6Promise -}; - -},{"lie":37}],7:[function(require,module,exports){ -'use strict'; -var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined'); - -var pako = require("pako"); -var utils = require("./utils"); -var GenericWorker = require("./stream/GenericWorker"); - -var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array"; - -exports.magic = "\x08\x00"; - -/** - * Create a worker that uses pako to inflate/deflate. - * @constructor - * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate". - * @param {Object} options the options to use when (de)compressing. - */ -function FlateWorker(action, options) { - GenericWorker.call(this, "FlateWorker/" + action); - - this._pako = null; - this._pakoAction = action; - this._pakoOptions = options; - // the `meta` object from the last chunk received - // this allow this worker to pass around metadata - this.meta = {}; -} - -utils.inherits(FlateWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -FlateWorker.prototype.processChunk = function (chunk) { - this.meta = chunk.meta; - if (this._pako === null) { - this._createPako(); - } - this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false); -}; - -/** - * @see GenericWorker.flush - */ -FlateWorker.prototype.flush = function () { - GenericWorker.prototype.flush.call(this); - if (this._pako === null) { - this._createPako(); - } - this._pako.push([], true); -}; -/** - * @see GenericWorker.cleanUp - */ -FlateWorker.prototype.cleanUp = function () { - GenericWorker.prototype.cleanUp.call(this); - this._pako = null; -}; - -/** - * Create the _pako object. - * TODO: lazy-loading this object isn't the best solution but it's the - * quickest. The best solution is to lazy-load the worker list. See also the - * issue #446. - */ -FlateWorker.prototype._createPako = function () { - this._pako = new pako[this._pakoAction]({ - raw: true, - level: this._pakoOptions.level || -1 // default compression - }); - var self = this; - this._pako.onData = function(data) { - self.push({ - data : data, - meta : self.meta - }); - }; -}; - -exports.compressWorker = function (compressionOptions) { - return new FlateWorker("Deflate", compressionOptions); -}; -exports.uncompressWorker = function () { - return new FlateWorker("Inflate", {}); -}; - -},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var GenericWorker = require('../stream/GenericWorker'); -var utf8 = require('../utf8'); -var crc32 = require('../crc32'); -var signature = require('../signature'); - -/** - * Transform an integer into a string in hexadecimal. - * @private - * @param {number} dec the number to convert. - * @param {number} bytes the number of bytes to generate. - * @returns {string} the result. - */ -var decToHex = function(dec, bytes) { - var hex = "", i; - for (i = 0; i < bytes; i++) { - hex += String.fromCharCode(dec & 0xff); - dec = dec >>> 8; - } - return hex; -}; - -/** - * Generate the UNIX part of the external file attributes. - * @param {Object} unixPermissions the unix permissions or null. - * @param {Boolean} isDir true if the entry is a directory, false otherwise. - * @return {Number} a 32 bit integer. - * - * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute : - * - * TTTTsstrwxrwxrwx0000000000ADVSHR - * ^^^^____________________________ file type, see zipinfo.c (UNX_*) - * ^^^_________________________ setuid, setgid, sticky - * ^^^^^^^^^________________ permissions - * ^^^^^^^^^^______ not used ? - * ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only - */ -var generateUnixExternalFileAttr = function (unixPermissions, isDir) { - - var result = unixPermissions; - if (!unixPermissions) { - // I can't use octal values in strict mode, hence the hexa. - // 040775 => 0x41fd - // 0100664 => 0x81b4 - result = isDir ? 0x41fd : 0x81b4; - } - return (result & 0xFFFF) << 16; -}; - -/** - * Generate the DOS part of the external file attributes. - * @param {Object} dosPermissions the dos permissions or null. - * @param {Boolean} isDir true if the entry is a directory, false otherwise. - * @return {Number} a 32 bit integer. - * - * Bit 0 Read-Only - * Bit 1 Hidden - * Bit 2 System - * Bit 3 Volume Label - * Bit 4 Directory - * Bit 5 Archive - */ -var generateDosExternalFileAttr = function (dosPermissions, isDir) { - - // the dir flag is already set for compatibility - return (dosPermissions || 0) & 0x3F; -}; - -/** - * Generate the various parts used in the construction of the final zip file. - * @param {Object} streamInfo the hash with informations about the compressed file. - * @param {Boolean} streamedContent is the content streamed ? - * @param {Boolean} streamingEnded is the stream finished ? - * @param {number} offset the current offset from the start of the zip file. - * @param {String} platform let's pretend we are this platform (change platform dependents fields) - * @param {Function} encodeFileName the function to encode the file name / comment. - * @return {Object} the zip parts. - */ -var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) { - var file = streamInfo['file'], - compression = streamInfo['compression'], - useCustomEncoding = encodeFileName !== utf8.utf8encode, - encodedFileName = utils.transformTo("string", encodeFileName(file.name)), - utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)), - comment = file.comment, - encodedComment = utils.transformTo("string", encodeFileName(comment)), - utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)), - useUTF8ForFileName = utfEncodedFileName.length !== file.name.length, - useUTF8ForComment = utfEncodedComment.length !== comment.length, - dosTime, - dosDate, - extraFields = "", - unicodePathExtraField = "", - unicodeCommentExtraField = "", - dir = file.dir, - date = file.date; - - - var dataInfo = { - crc32 : 0, - compressedSize : 0, - uncompressedSize : 0 - }; - - // if the content is streamed, the sizes/crc32 are only available AFTER - // the end of the stream. - if (!streamedContent || streamingEnded) { - dataInfo.crc32 = streamInfo['crc32']; - dataInfo.compressedSize = streamInfo['compressedSize']; - dataInfo.uncompressedSize = streamInfo['uncompressedSize']; - } - - var bitflag = 0; - if (streamedContent) { - // Bit 3: the sizes/crc32 are set to zero in the local header. - // The correct values are put in the data descriptor immediately - // following the compressed data. - bitflag |= 0x0008; - } - if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) { - // Bit 11: Language encoding flag (EFS). - bitflag |= 0x0800; - } - - - var extFileAttr = 0; - var versionMadeBy = 0; - if (dir) { - // dos or unix, we set the dos dir flag - extFileAttr |= 0x00010; - } - if(platform === "UNIX") { - versionMadeBy = 0x031E; // UNIX, version 3.0 - extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir); - } else { // DOS or other, fallback to DOS - versionMadeBy = 0x0014; // DOS, version 2.0 - extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir); - } - - // date - // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html - // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html - // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html - - dosTime = date.getUTCHours(); - dosTime = dosTime << 6; - dosTime = dosTime | date.getUTCMinutes(); - dosTime = dosTime << 5; - dosTime = dosTime | date.getUTCSeconds() / 2; - - dosDate = date.getUTCFullYear() - 1980; - dosDate = dosDate << 4; - dosDate = dosDate | (date.getUTCMonth() + 1); - dosDate = dosDate << 5; - dosDate = dosDate | date.getUTCDate(); - - if (useUTF8ForFileName) { - // set the unicode path extra field. unzip needs at least one extra - // field to correctly handle unicode path, so using the path is as good - // as any other information. This could improve the situation with - // other archive managers too. - // This field is usually used without the utf8 flag, with a non - // unicode path in the header (winrar, winzip). This helps (a bit) - // with the messy Windows' default compressed folders feature but - // breaks on p7zip which doesn't seek the unicode path extra field. - // So for now, UTF-8 everywhere ! - unicodePathExtraField = - // Version - decToHex(1, 1) + - // NameCRC32 - decToHex(crc32(encodedFileName), 4) + - // UnicodeName - utfEncodedFileName; - - extraFields += - // Info-ZIP Unicode Path Extra Field - "\x75\x70" + - // size - decToHex(unicodePathExtraField.length, 2) + - // content - unicodePathExtraField; - } - - if(useUTF8ForComment) { - - unicodeCommentExtraField = - // Version - decToHex(1, 1) + - // CommentCRC32 - decToHex(crc32(encodedComment), 4) + - // UnicodeName - utfEncodedComment; - - extraFields += - // Info-ZIP Unicode Path Extra Field - "\x75\x63" + - // size - decToHex(unicodeCommentExtraField.length, 2) + - // content - unicodeCommentExtraField; - } - - var header = ""; - - // version needed to extract - header += "\x0A\x00"; - // general purpose bit flag - header += decToHex(bitflag, 2); - // compression method - header += compression.magic; - // last mod file time - header += decToHex(dosTime, 2); - // last mod file date - header += decToHex(dosDate, 2); - // crc-32 - header += decToHex(dataInfo.crc32, 4); - // compressed size - header += decToHex(dataInfo.compressedSize, 4); - // uncompressed size - header += decToHex(dataInfo.uncompressedSize, 4); - // file name length - header += decToHex(encodedFileName.length, 2); - // extra field length - header += decToHex(extraFields.length, 2); - - - var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields; - - var dirRecord = signature.CENTRAL_FILE_HEADER + - // version made by (00: DOS) - decToHex(versionMadeBy, 2) + - // file header (common to file and central directory) - header + - // file comment length - decToHex(encodedComment.length, 2) + - // disk number start - "\x00\x00" + - // internal file attributes TODO - "\x00\x00" + - // external file attributes - decToHex(extFileAttr, 4) + - // relative offset of local header - decToHex(offset, 4) + - // file name - encodedFileName + - // extra field - extraFields + - // file comment - encodedComment; - - return { - fileRecord: fileRecord, - dirRecord: dirRecord - }; -}; - -/** - * Generate the EOCD record. - * @param {Number} entriesCount the number of entries in the zip file. - * @param {Number} centralDirLength the length (in bytes) of the central dir. - * @param {Number} localDirLength the length (in bytes) of the local dir. - * @param {String} comment the zip file comment as a binary string. - * @param {Function} encodeFileName the function to encode the comment. - * @return {String} the EOCD record. - */ -var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) { - var dirEnd = ""; - var encodedComment = utils.transformTo("string", encodeFileName(comment)); - - // end of central dir signature - dirEnd = signature.CENTRAL_DIRECTORY_END + - // number of this disk - "\x00\x00" + - // number of the disk with the start of the central directory - "\x00\x00" + - // total number of entries in the central directory on this disk - decToHex(entriesCount, 2) + - // total number of entries in the central directory - decToHex(entriesCount, 2) + - // size of the central directory 4 bytes - decToHex(centralDirLength, 4) + - // offset of start of central directory with respect to the starting disk number - decToHex(localDirLength, 4) + - // .ZIP file comment length - decToHex(encodedComment.length, 2) + - // .ZIP file comment - encodedComment; - - return dirEnd; -}; - -/** - * Generate data descriptors for a file entry. - * @param {Object} streamInfo the hash generated by a worker, containing informations - * on the file entry. - * @return {String} the data descriptors. - */ -var generateDataDescriptors = function (streamInfo) { - var descriptor = ""; - descriptor = signature.DATA_DESCRIPTOR + - // crc-32 4 bytes - decToHex(streamInfo['crc32'], 4) + - // compressed size 4 bytes - decToHex(streamInfo['compressedSize'], 4) + - // uncompressed size 4 bytes - decToHex(streamInfo['uncompressedSize'], 4); - - return descriptor; -}; - - -/** - * A worker to concatenate other workers to create a zip file. - * @param {Boolean} streamFiles `true` to stream the content of the files, - * `false` to accumulate it. - * @param {String} comment the comment to use. - * @param {String} platform the platform to use, "UNIX" or "DOS". - * @param {Function} encodeFileName the function to encode file names and comments. - */ -function ZipFileWorker(streamFiles, comment, platform, encodeFileName) { - GenericWorker.call(this, "ZipFileWorker"); - // The number of bytes written so far. This doesn't count accumulated chunks. - this.bytesWritten = 0; - // The comment of the zip file - this.zipComment = comment; - // The platform "generating" the zip file. - this.zipPlatform = platform; - // the function to encode file names and comments. - this.encodeFileName = encodeFileName; - // Should we stream the content of the files ? - this.streamFiles = streamFiles; - // If `streamFiles` is false, we will need to accumulate the content of the - // files to calculate sizes / crc32 (and write them *before* the content). - // This boolean indicates if we are accumulating chunks (it will change a lot - // during the lifetime of this worker). - this.accumulate = false; - // The buffer receiving chunks when accumulating content. - this.contentBuffer = []; - // The list of generated directory records. - this.dirRecords = []; - // The offset (in bytes) from the beginning of the zip file for the current source. - this.currentSourceOffset = 0; - // The total number of entries in this zip file. - this.entriesCount = 0; - // the name of the file currently being added, null when handling the end of the zip file. - // Used for the emited metadata. - this.currentFile = null; - - - - this._sources = []; -} -utils.inherits(ZipFileWorker, GenericWorker); - -/** - * @see GenericWorker.push - */ -ZipFileWorker.prototype.push = function (chunk) { - - var currentFilePercent = chunk.meta.percent || 0; - var entriesCount = this.entriesCount; - var remainingFiles = this._sources.length; - - if(this.accumulate) { - this.contentBuffer.push(chunk); - } else { - this.bytesWritten += chunk.data.length; - - GenericWorker.prototype.push.call(this, { - data : chunk.data, - meta : { - currentFile : this.currentFile, - percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100 - } - }); - } -}; - -/** - * The worker started a new source (an other worker). - * @param {Object} streamInfo the streamInfo object from the new source. - */ -ZipFileWorker.prototype.openedSource = function (streamInfo) { - this.currentSourceOffset = this.bytesWritten; - this.currentFile = streamInfo['file'].name; - - var streamedContent = this.streamFiles && !streamInfo['file'].dir; - - // don't stream folders (because they don't have any content) - if(streamedContent) { - var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); - this.push({ - data : record.fileRecord, - meta : {percent:0} - }); - } else { - // we need to wait for the whole file before pushing anything - this.accumulate = true; - } -}; - -/** - * The worker finished a source (an other worker). - * @param {Object} streamInfo the streamInfo object from the finished source. - */ -ZipFileWorker.prototype.closedSource = function (streamInfo) { - this.accumulate = false; - var streamedContent = this.streamFiles && !streamInfo['file'].dir; - var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName); - - this.dirRecords.push(record.dirRecord); - if(streamedContent) { - // after the streamed file, we put data descriptors - this.push({ - data : generateDataDescriptors(streamInfo), - meta : {percent:100} - }); - } else { - // the content wasn't streamed, we need to push everything now - // first the file record, then the content - this.push({ - data : record.fileRecord, - meta : {percent:0} - }); - while(this.contentBuffer.length) { - this.push(this.contentBuffer.shift()); - } - } - this.currentFile = null; -}; - -/** - * @see GenericWorker.flush - */ -ZipFileWorker.prototype.flush = function () { - - var localDirLength = this.bytesWritten; - for(var i = 0; i < this.dirRecords.length; i++) { - this.push({ - data : this.dirRecords[i], - meta : {percent:100} - }); - } - var centralDirLength = this.bytesWritten - localDirLength; - - var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName); - - this.push({ - data : dirEnd, - meta : {percent:100} - }); -}; - -/** - * Prepare the next source to be read. - */ -ZipFileWorker.prototype.prepareNextSource = function () { - this.previous = this._sources.shift(); - this.openedSource(this.previous.streamInfo); - if (this.isPaused) { - this.previous.pause(); - } else { - this.previous.resume(); - } -}; - -/** - * @see GenericWorker.registerPrevious - */ -ZipFileWorker.prototype.registerPrevious = function (previous) { - this._sources.push(previous); - var self = this; - - previous.on('data', function (chunk) { - self.processChunk(chunk); - }); - previous.on('end', function () { - self.closedSource(self.previous.streamInfo); - if(self._sources.length) { - self.prepareNextSource(); - } else { - self.end(); - } - }); - previous.on('error', function (e) { - self.error(e); - }); - return this; -}; - -/** - * @see GenericWorker.resume - */ -ZipFileWorker.prototype.resume = function () { - if(!GenericWorker.prototype.resume.call(this)) { - return false; - } - - if (!this.previous && this._sources.length) { - this.prepareNextSource(); - return true; - } - if (!this.previous && !this._sources.length && !this.generatedError) { - this.end(); - return true; - } -}; - -/** - * @see GenericWorker.error - */ -ZipFileWorker.prototype.error = function (e) { - var sources = this._sources; - if(!GenericWorker.prototype.error.call(this, e)) { - return false; - } - for(var i = 0; i < sources.length; i++) { - try { - sources[i].error(e); - } catch(e) { - // the `error` exploded, nothing to do - } - } - return true; -}; - -/** - * @see GenericWorker.lock - */ -ZipFileWorker.prototype.lock = function () { - GenericWorker.prototype.lock.call(this); - var sources = this._sources; - for(var i = 0; i < sources.length; i++) { - sources[i].lock(); - } -}; - -module.exports = ZipFileWorker; - -},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){ -'use strict'; - -var compressions = require('../compressions'); -var ZipFileWorker = require('./ZipFileWorker'); - -/** - * Find the compression to use. - * @param {String} fileCompression the compression defined at the file level, if any. - * @param {String} zipCompression the compression defined at the load() level. - * @return {Object} the compression object to use. - */ -var getCompression = function (fileCompression, zipCompression) { - - var compressionName = fileCompression || zipCompression; - var compression = compressions[compressionName]; - if (!compression) { - throw new Error(compressionName + " is not a valid compression method !"); - } - return compression; -}; - -/** - * Create a worker to generate a zip file. - * @param {JSZip} zip the JSZip instance at the right root level. - * @param {Object} options to generate the zip file. - * @param {String} comment the comment to use. - */ -exports.generateWorker = function (zip, options, comment) { - - var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName); - var entriesCount = 0; - try { - - zip.forEach(function (relativePath, file) { - entriesCount++; - var compression = getCompression(file.options.compression, options.compression); - var compressionOptions = file.options.compressionOptions || options.compressionOptions || {}; - var dir = file.dir, date = file.date; - - file._compressWorker(compression, compressionOptions) - .withStreamInfo("file", { - name : relativePath, - dir : dir, - date : date, - comment : file.comment || "", - unixPermissions : file.unixPermissions, - dosPermissions : file.dosPermissions - }) - .pipe(zipFileWorker); - }); - zipFileWorker.entriesCount = entriesCount; - } catch (e) { - zipFileWorker.error(e); - } - - return zipFileWorker; -}; - -},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){ -'use strict'; - -/** - * Representation a of zip file in js - * @constructor - */ -function JSZip() { - // if this constructor is used without `new`, it adds `new` before itself: - if(!(this instanceof JSZip)) { - return new JSZip(); - } - - if(arguments.length) { - throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide."); - } - - // object containing the files : - // { - // "folder/" : {...}, - // "folder/data.txt" : {...} - // } - this.files = {}; - - this.comment = null; - - // Where we are in the hierarchy - this.root = ""; - this.clone = function() { - var newObj = new JSZip(); - for (var i in this) { - if (typeof this[i] !== "function") { - newObj[i] = this[i]; - } - } - return newObj; - }; -} -JSZip.prototype = require('./object'); -JSZip.prototype.loadAsync = require('./load'); -JSZip.support = require('./support'); -JSZip.defaults = require('./defaults'); - -// TODO find a better way to handle this version, -// a require('package.json').version doesn't work with webpack, see #327 -JSZip.version = "3.2.0"; - -JSZip.loadAsync = function (content, options) { - return new JSZip().loadAsync(content, options); -}; - -JSZip.external = require("./external"); -module.exports = JSZip; - -},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){ -'use strict'; -var utils = require('./utils'); -var external = require("./external"); -var utf8 = require('./utf8'); -var utils = require('./utils'); -var ZipEntries = require('./zipEntries'); -var Crc32Probe = require('./stream/Crc32Probe'); -var nodejsUtils = require("./nodejsUtils"); - -/** - * Check the CRC32 of an entry. - * @param {ZipEntry} zipEntry the zip entry to check. - * @return {Promise} the result. - */ -function checkEntryCRC32(zipEntry) { - return new external.Promise(function (resolve, reject) { - var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe()); - worker.on("error", function (e) { - reject(e); - }) - .on("end", function () { - if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) { - reject(new Error("Corrupted zip : CRC32 mismatch")); - } else { - resolve(); - } - }) - .resume(); - }); -} - -module.exports = function(data, options) { - var zip = this; - options = utils.extend(options || {}, { - base64: false, - checkCRC32: false, - optimizedBinaryString: false, - createFolders: false, - decodeFileName: utf8.utf8decode - }); - - if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { - return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")); - } - - return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64) - .then(function(data) { - var zipEntries = new ZipEntries(options); - zipEntries.load(data); - return zipEntries; - }).then(function checkCRC32(zipEntries) { - var promises = [external.Promise.resolve(zipEntries)]; - var files = zipEntries.files; - if (options.checkCRC32) { - for (var i = 0; i < files.length; i++) { - promises.push(checkEntryCRC32(files[i])); - } - } - return external.Promise.all(promises); - }).then(function addFiles(results) { - var zipEntries = results.shift(); - var files = zipEntries.files; - for (var i = 0; i < files.length; i++) { - var input = files[i]; - zip.file(input.fileNameStr, input.decompressed, { - binary: true, - optimizedBinaryString: true, - date: input.date, - dir: input.dir, - comment : input.fileCommentStr.length ? input.fileCommentStr : null, - unixPermissions : input.unixPermissions, - dosPermissions : input.dosPermissions, - createFolders: options.createFolders - }); - } - if (zipEntries.zipComment.length) { - zip.comment = zipEntries.zipComment; - } - - return zip; - }); -}; - -},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){ -"use strict"; - -var utils = require('../utils'); -var GenericWorker = require('../stream/GenericWorker'); - -/** - * A worker that use a nodejs stream as source. - * @constructor - * @param {String} filename the name of the file entry for this stream. - * @param {Readable} stream the nodejs stream. - */ -function NodejsStreamInputAdapter(filename, stream) { - GenericWorker.call(this, "Nodejs stream input adapter for " + filename); - this._upstreamEnded = false; - this._bindStream(stream); -} - -utils.inherits(NodejsStreamInputAdapter, GenericWorker); - -/** - * Prepare the stream and bind the callbacks on it. - * Do this ASAP on node 0.10 ! A lazy binding doesn't always work. - * @param {Stream} stream the nodejs stream to use. - */ -NodejsStreamInputAdapter.prototype._bindStream = function (stream) { - var self = this; - this._stream = stream; - stream.pause(); - stream - .on("data", function (chunk) { - self.push({ - data: chunk, - meta : { - percent : 0 - } - }); - }) - .on("error", function (e) { - if(self.isPaused) { - this.generatedError = e; - } else { - self.error(e); - } - }) - .on("end", function () { - if(self.isPaused) { - self._upstreamEnded = true; - } else { - self.end(); - } - }); -}; -NodejsStreamInputAdapter.prototype.pause = function () { - if(!GenericWorker.prototype.pause.call(this)) { - return false; - } - this._stream.pause(); - return true; -}; -NodejsStreamInputAdapter.prototype.resume = function () { - if(!GenericWorker.prototype.resume.call(this)) { - return false; - } - - if(this._upstreamEnded) { - this.end(); - } else { - this._stream.resume(); - } - - return true; -}; - -module.exports = NodejsStreamInputAdapter; - -},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){ -'use strict'; - -var Readable = require('readable-stream').Readable; - -var utils = require('../utils'); -utils.inherits(NodejsStreamOutputAdapter, Readable); - -/** -* A nodejs stream using a worker as source. -* @see the SourceWrapper in http://nodejs.org/api/stream.html -* @constructor -* @param {StreamHelper} helper the helper wrapping the worker -* @param {Object} options the nodejs stream options -* @param {Function} updateCb the update callback. -*/ -function NodejsStreamOutputAdapter(helper, options, updateCb) { - Readable.call(this, options); - this._helper = helper; - - var self = this; - helper.on("data", function (data, meta) { - if (!self.push(data)) { - self._helper.pause(); - } - if(updateCb) { - updateCb(meta); - } - }) - .on("error", function(e) { - self.emit('error', e); - }) - .on("end", function () { - self.push(null); - }); -} - - -NodejsStreamOutputAdapter.prototype._read = function() { - this._helper.resume(); -}; - -module.exports = NodejsStreamOutputAdapter; - -},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){ -'use strict'; - -module.exports = { - /** - * True if this is running in Nodejs, will be undefined in a browser. - * In a browser, browserify won't include this file and the whole module - * will be resolved an empty object. - */ - isNode : typeof Buffer !== "undefined", - /** - * Create a new nodejs Buffer from an existing content. - * @param {Object} data the data to pass to the constructor. - * @param {String} encoding the encoding to use. - * @return {Buffer} a new Buffer. - */ - newBufferFrom: function(data, encoding) { - if (Buffer.from && Buffer.from !== Uint8Array.from) { - return Buffer.from(data, encoding); - } else { - if (typeof data === "number") { - // Safeguard for old Node.js versions. On newer versions, - // Buffer.from(number) / Buffer(number, encoding) already throw. - throw new Error("The \"data\" argument must not be a number"); - } - return new Buffer(data, encoding); - } - }, - /** - * Create a new nodejs Buffer with the specified size. - * @param {Integer} size the size of the buffer. - * @return {Buffer} a new Buffer. - */ - allocBuffer: function (size) { - if (Buffer.alloc) { - return Buffer.alloc(size); - } else { - var buf = new Buffer(size); - buf.fill(0); - return buf; - } - }, - /** - * Find out if an object is a Buffer. - * @param {Object} b the object to test. - * @return {Boolean} true if the object is a Buffer, false otherwise. - */ - isBuffer : function(b){ - return Buffer.isBuffer(b); - }, - - isStream : function (obj) { - return obj && - typeof obj.on === "function" && - typeof obj.pause === "function" && - typeof obj.resume === "function"; - } -}; - -},{}],15:[function(require,module,exports){ -'use strict'; -var utf8 = require('./utf8'); -var utils = require('./utils'); -var GenericWorker = require('./stream/GenericWorker'); -var StreamHelper = require('./stream/StreamHelper'); -var defaults = require('./defaults'); -var CompressedObject = require('./compressedObject'); -var ZipObject = require('./zipObject'); -var generate = require("./generate"); -var nodejsUtils = require("./nodejsUtils"); -var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter"); - - -/** - * Add a file in the current folder. - * @private - * @param {string} name the name of the file - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file - * @param {Object} originalOptions the options of the file - * @return {Object} the new file. - */ -var fileAdd = function(name, data, originalOptions) { - // be sure sub folders exist - var dataType = utils.getTypeOf(data), - parent; - - - /* - * Correct options. - */ - - var o = utils.extend(originalOptions || {}, defaults); - o.date = o.date || new Date(); - if (o.compression !== null) { - o.compression = o.compression.toUpperCase(); - } - - if (typeof o.unixPermissions === "string") { - o.unixPermissions = parseInt(o.unixPermissions, 8); - } - - // UNX_IFDIR 0040000 see zipinfo.c - if (o.unixPermissions && (o.unixPermissions & 0x4000)) { - o.dir = true; - } - // Bit 4 Directory - if (o.dosPermissions && (o.dosPermissions & 0x0010)) { - o.dir = true; - } - - if (o.dir) { - name = forceTrailingSlash(name); - } - if (o.createFolders && (parent = parentFolder(name))) { - folderAdd.call(this, parent, true); - } - - var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false; - if (!originalOptions || typeof originalOptions.binary === "undefined") { - o.binary = !isUnicodeString; - } - - - var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0; - - if (isCompressedEmpty || o.dir || !data || data.length === 0) { - o.base64 = false; - o.binary = true; - data = ""; - o.compression = "STORE"; - dataType = "string"; - } - - /* - * Convert content to fit. - */ - - var zipObjectContent = null; - if (data instanceof CompressedObject || data instanceof GenericWorker) { - zipObjectContent = data; - } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) { - zipObjectContent = new NodejsStreamInputAdapter(name, data); - } else { - zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64); - } - - var object = new ZipObject(name, zipObjectContent, o); - this.files[name] = object; - /* - TODO: we can't throw an exception because we have async promises - (we can have a promise of a Date() for example) but returning a - promise is useless because file(name, data) returns the JSZip - object for chaining. Should we break that to allow the user - to catch the error ? - - return external.Promise.resolve(zipObjectContent) - .then(function () { - return object; - }); - */ -}; - -/** - * Find the parent folder of the path. - * @private - * @param {string} path the path to use - * @return {string} the parent folder, or "" - */ -var parentFolder = function (path) { - if (path.slice(-1) === '/') { - path = path.substring(0, path.length - 1); - } - var lastSlash = path.lastIndexOf('/'); - return (lastSlash > 0) ? path.substring(0, lastSlash) : ""; -}; - -/** - * Returns the path with a slash at the end. - * @private - * @param {String} path the path to check. - * @return {String} the path with a trailing slash. - */ -var forceTrailingSlash = function(path) { - // Check the name ends with a / - if (path.slice(-1) !== "/") { - path += "/"; // IE doesn't like substr(-1) - } - return path; -}; - -/** - * Add a (sub) folder in the current folder. - * @private - * @param {string} name the folder's name - * @param {boolean=} [createFolders] If true, automatically create sub - * folders. Defaults to false. - * @return {Object} the new folder. - */ -var folderAdd = function(name, createFolders) { - createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders; - - name = forceTrailingSlash(name); - - // Does this folder already exist? - if (!this.files[name]) { - fileAdd.call(this, name, null, { - dir: true, - createFolders: createFolders - }); - } - return this.files[name]; -}; - -/** -* Cross-window, cross-Node-context regular expression detection -* @param {Object} object Anything -* @return {Boolean} true if the object is a regular expression, -* false otherwise -*/ -function isRegExp(object) { - return Object.prototype.toString.call(object) === "[object RegExp]"; -} - -// return the actual prototype of JSZip -var out = { - /** - * @see loadAsync - */ - load: function() { - throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); - }, - - - /** - * Call a callback function for each entry at this folder level. - * @param {Function} cb the callback function: - * function (relativePath, file) {...} - * It takes 2 arguments : the relative path and the file. - */ - forEach: function(cb) { - var filename, relativePath, file; - for (filename in this.files) { - if (!this.files.hasOwnProperty(filename)) { - continue; - } - file = this.files[filename]; - relativePath = filename.slice(this.root.length, filename.length); - if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root - cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn... - } - } - }, - - /** - * Filter nested files/folders with the specified function. - * @param {Function} search the predicate to use : - * function (relativePath, file) {...} - * It takes 2 arguments : the relative path and the file. - * @return {Array} An array of matching elements. - */ - filter: function(search) { - var result = []; - this.forEach(function (relativePath, entry) { - if (search(relativePath, entry)) { // the file matches the function - result.push(entry); - } - - }); - return result; - }, - - /** - * Add a file to the zip file, or search a file. - * @param {string|RegExp} name The name of the file to add (if data is defined), - * the name of the file to find (if no data) or a regex to match files. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data The file data, either raw or base64 encoded - * @param {Object} o File options - * @return {JSZip|Object|Array} this JSZip object (when adding a file), - * a file (when searching by string) or an array of files (when searching by regex). - */ - file: function(name, data, o) { - if (arguments.length === 1) { - if (isRegExp(name)) { - var regexp = name; - return this.filter(function(relativePath, file) { - return !file.dir && regexp.test(relativePath); - }); - } - else { // text - var obj = this.files[this.root + name]; - if (obj && !obj.dir) { - return obj; - } else { - return null; - } - } - } - else { // more than one argument : we have data ! - name = this.root + name; - fileAdd.call(this, name, data, o); - } - return this; - }, - - /** - * Add a directory to the zip file, or search. - * @param {String|RegExp} arg The name of the directory to add, or a regex to search folders. - * @return {JSZip} an object with the new directory as the root, or an array containing matching folders. - */ - folder: function(arg) { - if (!arg) { - return this; - } - - if (isRegExp(arg)) { - return this.filter(function(relativePath, file) { - return file.dir && arg.test(relativePath); - }); - } - - // else, name is a new folder - var name = this.root + arg; - var newFolder = folderAdd.call(this, name); - - // Allow chaining by returning a new object with this folder as the root - var ret = this.clone(); - ret.root = newFolder.name; - return ret; - }, - - /** - * Delete a file, or a directory and all sub-files, from the zip - * @param {string} name the name of the file to delete - * @return {JSZip} this JSZip object - */ - remove: function(name) { - name = this.root + name; - var file = this.files[name]; - if (!file) { - // Look for any folders - if (name.slice(-1) !== "/") { - name += "/"; - } - file = this.files[name]; - } - - if (file && !file.dir) { - // file - delete this.files[name]; - } else { - // maybe a folder, delete recursively - var kids = this.filter(function(relativePath, file) { - return file.name.slice(0, name.length) === name; - }); - for (var i = 0; i < kids.length; i++) { - delete this.files[kids[i].name]; - } - } - - return this; - }, - - /** - * Generate the complete zip file - * @param {Object} options the options to generate the zip file : - * - compression, "STORE" by default. - * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. - * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file - */ - generate: function(options) { - throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); - }, - - /** - * Generate the complete zip file as an internal stream. - * @param {Object} options the options to generate the zip file : - * - compression, "STORE" by default. - * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob. - * @return {StreamHelper} the streamed zip file. - */ - generateInternalStream: function(options) { - var worker, opts = {}; - try { - opts = utils.extend(options || {}, { - streamFiles: false, - compression: "STORE", - compressionOptions : null, - type: "", - platform: "DOS", - comment: null, - mimeType: 'application/zip', - encodeFileName: utf8.utf8encode - }); - - opts.type = opts.type.toLowerCase(); - opts.compression = opts.compression.toUpperCase(); - - // "binarystring" is prefered but the internals use "string". - if(opts.type === "binarystring") { - opts.type = "string"; - } - - if (!opts.type) { - throw new Error("No output type specified."); - } - - utils.checkSupport(opts.type); - - // accept nodejs `process.platform` - if( - opts.platform === 'darwin' || - opts.platform === 'freebsd' || - opts.platform === 'linux' || - opts.platform === 'sunos' - ) { - opts.platform = "UNIX"; - } - if (opts.platform === 'win32') { - opts.platform = "DOS"; - } - - var comment = opts.comment || this.comment || ""; - worker = generate.generateWorker(this, opts, comment); - } catch (e) { - worker = new GenericWorker("error"); - worker.error(e); - } - return new StreamHelper(worker, opts.type || "string", opts.mimeType); - }, - /** - * Generate the complete zip file asynchronously. - * @see generateInternalStream - */ - generateAsync: function(options, onUpdate) { - return this.generateInternalStream(options).accumulate(onUpdate); - }, - /** - * Generate the complete zip file asynchronously. - * @see generateInternalStream - */ - generateNodeStream: function(options, onUpdate) { - options = options || {}; - if (!options.type) { - options.type = "nodebuffer"; - } - return this.generateInternalStream(options).toNodejsStream(onUpdate); - } -}; -module.exports = out; - -},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){ -/* - * This file is used by module bundlers (browserify/webpack/etc) when - * including a stream implementation. We use "readable-stream" to get a - * consistent behavior between nodejs versions but bundlers often have a shim - * for "stream". Using this shim greatly improve the compatibility and greatly - * reduce the final size of the bundle (only one stream implementation, not - * two). - */ -module.exports = require("stream"); - -},{"stream":undefined}],17:[function(require,module,exports){ -'use strict'; -var DataReader = require('./DataReader'); -var utils = require('../utils'); - -function ArrayReader(data) { - DataReader.call(this, data); - for(var i = 0; i < this.data.length; i++) { - data[i] = data[i] & 0xFF; - } -} -utils.inherits(ArrayReader, DataReader); -/** - * @see DataReader.byteAt - */ -ArrayReader.prototype.byteAt = function(i) { - return this.data[this.zero + i]; -}; -/** - * @see DataReader.lastIndexOfSignature - */ -ArrayReader.prototype.lastIndexOfSignature = function(sig) { - var sig0 = sig.charCodeAt(0), - sig1 = sig.charCodeAt(1), - sig2 = sig.charCodeAt(2), - sig3 = sig.charCodeAt(3); - for (var i = this.length - 4; i >= 0; --i) { - if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) { - return i - this.zero; - } - } - - return -1; -}; -/** - * @see DataReader.readAndCheckSignature - */ -ArrayReader.prototype.readAndCheckSignature = function (sig) { - var sig0 = sig.charCodeAt(0), - sig1 = sig.charCodeAt(1), - sig2 = sig.charCodeAt(2), - sig3 = sig.charCodeAt(3), - data = this.readData(4); - return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3]; -}; -/** - * @see DataReader.readData - */ -ArrayReader.prototype.readData = function(size) { - this.checkOffset(size); - if(size === 0) { - return []; - } - var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = ArrayReader; - -},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){ -'use strict'; -var utils = require('../utils'); - -function DataReader(data) { - this.data = data; // type : see implementation - this.length = data.length; - this.index = 0; - this.zero = 0; -} -DataReader.prototype = { - /** - * Check that the offset will not go too far. - * @param {string} offset the additional offset to check. - * @throws {Error} an Error if the offset is out of bounds. - */ - checkOffset: function(offset) { - this.checkIndex(this.index + offset); - }, - /** - * Check that the specified index will not be too far. - * @param {string} newIndex the index to check. - * @throws {Error} an Error if the index is out of bounds. - */ - checkIndex: function(newIndex) { - if (this.length < this.zero + newIndex || newIndex < 0) { - throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?"); - } - }, - /** - * Change the index. - * @param {number} newIndex The new index. - * @throws {Error} if the new index is out of the data. - */ - setIndex: function(newIndex) { - this.checkIndex(newIndex); - this.index = newIndex; - }, - /** - * Skip the next n bytes. - * @param {number} n the number of bytes to skip. - * @throws {Error} if the new index is out of the data. - */ - skip: function(n) { - this.setIndex(this.index + n); - }, - /** - * Get the byte at the specified index. - * @param {number} i the index to use. - * @return {number} a byte. - */ - byteAt: function(i) { - // see implementations - }, - /** - * Get the next number with a given byte size. - * @param {number} size the number of bytes to read. - * @return {number} the corresponding number. - */ - readInt: function(size) { - var result = 0, - i; - this.checkOffset(size); - for (i = this.index + size - 1; i >= this.index; i--) { - result = (result << 8) + this.byteAt(i); - } - this.index += size; - return result; - }, - /** - * Get the next string with a given byte size. - * @param {number} size the number of bytes to read. - * @return {string} the corresponding string. - */ - readString: function(size) { - return utils.transformTo("string", this.readData(size)); - }, - /** - * Get raw data without conversion, bytes. - * @param {number} size the number of bytes to read. - * @return {Object} the raw data, implementation specific. - */ - readData: function(size) { - // see implementations - }, - /** - * Find the last occurence of a zip signature (4 bytes). - * @param {string} sig the signature to find. - * @return {number} the index of the last occurence, -1 if not found. - */ - lastIndexOfSignature: function(sig) { - // see implementations - }, - /** - * Read the signature (4 bytes) at the current position and compare it with sig. - * @param {string} sig the expected signature - * @return {boolean} true if the signature matches, false otherwise. - */ - readAndCheckSignature: function(sig) { - // see implementations - }, - /** - * Get the next date. - * @return {Date} the date. - */ - readDate: function() { - var dostime = this.readInt(4); - return new Date(Date.UTC( - ((dostime >> 25) & 0x7f) + 1980, // year - ((dostime >> 21) & 0x0f) - 1, // month - (dostime >> 16) & 0x1f, // day - (dostime >> 11) & 0x1f, // hour - (dostime >> 5) & 0x3f, // minute - (dostime & 0x1f) << 1)); // second - } -}; -module.exports = DataReader; - -},{"../utils":32}],19:[function(require,module,exports){ -'use strict'; -var Uint8ArrayReader = require('./Uint8ArrayReader'); -var utils = require('../utils'); - -function NodeBufferReader(data) { - Uint8ArrayReader.call(this, data); -} -utils.inherits(NodeBufferReader, Uint8ArrayReader); - -/** - * @see DataReader.readData - */ -NodeBufferReader.prototype.readData = function(size) { - this.checkOffset(size); - var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = NodeBufferReader; - -},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){ -'use strict'; -var DataReader = require('./DataReader'); -var utils = require('../utils'); - -function StringReader(data) { - DataReader.call(this, data); -} -utils.inherits(StringReader, DataReader); -/** - * @see DataReader.byteAt - */ -StringReader.prototype.byteAt = function(i) { - return this.data.charCodeAt(this.zero + i); -}; -/** - * @see DataReader.lastIndexOfSignature - */ -StringReader.prototype.lastIndexOfSignature = function(sig) { - return this.data.lastIndexOf(sig) - this.zero; -}; -/** - * @see DataReader.readAndCheckSignature - */ -StringReader.prototype.readAndCheckSignature = function (sig) { - var data = this.readData(4); - return sig === data; -}; -/** - * @see DataReader.readData - */ -StringReader.prototype.readData = function(size) { - this.checkOffset(size); - // this will work because the constructor applied the "& 0xff" mask. - var result = this.data.slice(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = StringReader; - -},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){ -'use strict'; -var ArrayReader = require('./ArrayReader'); -var utils = require('../utils'); - -function Uint8ArrayReader(data) { - ArrayReader.call(this, data); -} -utils.inherits(Uint8ArrayReader, ArrayReader); -/** - * @see DataReader.readData - */ -Uint8ArrayReader.prototype.readData = function(size) { - this.checkOffset(size); - if(size === 0) { - // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of []. - return new Uint8Array(0); - } - var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size); - this.index += size; - return result; -}; -module.exports = Uint8ArrayReader; - -},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var support = require('../support'); -var ArrayReader = require('./ArrayReader'); -var StringReader = require('./StringReader'); -var NodeBufferReader = require('./NodeBufferReader'); -var Uint8ArrayReader = require('./Uint8ArrayReader'); - -/** - * Create a reader adapted to the data. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read. - * @return {DataReader} the data reader. - */ -module.exports = function (data) { - var type = utils.getTypeOf(data); - utils.checkSupport(type); - if (type === "string" && !support.uint8array) { - return new StringReader(data); - } - if (type === "nodebuffer") { - return new NodeBufferReader(data); - } - if (support.uint8array) { - return new Uint8ArrayReader(utils.transformTo("uint8array", data)); - } - return new ArrayReader(utils.transformTo("array", data)); -}; - -},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){ -'use strict'; -exports.LOCAL_FILE_HEADER = "PK\x03\x04"; -exports.CENTRAL_FILE_HEADER = "PK\x01\x02"; -exports.CENTRAL_DIRECTORY_END = "PK\x05\x06"; -exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07"; -exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06"; -exports.DATA_DESCRIPTOR = "PK\x07\x08"; - -},{}],24:[function(require,module,exports){ -'use strict'; - -var GenericWorker = require('./GenericWorker'); -var utils = require('../utils'); - -/** - * A worker which convert chunks to a specified type. - * @constructor - * @param {String} destType the destination type. - */ -function ConvertWorker(destType) { - GenericWorker.call(this, "ConvertWorker to " + destType); - this.destType = destType; -} -utils.inherits(ConvertWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -ConvertWorker.prototype.processChunk = function (chunk) { - this.push({ - data : utils.transformTo(this.destType, chunk.data), - meta : chunk.meta - }); -}; -module.exports = ConvertWorker; - -},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){ -'use strict'; - -var GenericWorker = require('./GenericWorker'); -var crc32 = require('../crc32'); -var utils = require('../utils'); - -/** - * A worker which calculate the crc32 of the data flowing through. - * @constructor - */ -function Crc32Probe() { - GenericWorker.call(this, "Crc32Probe"); - this.withStreamInfo("crc32", 0); -} -utils.inherits(Crc32Probe, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -Crc32Probe.prototype.processChunk = function (chunk) { - this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0); - this.push(chunk); -}; -module.exports = Crc32Probe; - -},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var GenericWorker = require('./GenericWorker'); - -/** - * A worker which calculate the total length of the data flowing through. - * @constructor - * @param {String} propName the name used to expose the length - */ -function DataLengthProbe(propName) { - GenericWorker.call(this, "DataLengthProbe for " + propName); - this.propName = propName; - this.withStreamInfo(propName, 0); -} -utils.inherits(DataLengthProbe, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -DataLengthProbe.prototype.processChunk = function (chunk) { - if(chunk) { - var length = this.streamInfo[this.propName] || 0; - this.streamInfo[this.propName] = length + chunk.data.length; - } - GenericWorker.prototype.processChunk.call(this, chunk); -}; -module.exports = DataLengthProbe; - - -},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var GenericWorker = require('./GenericWorker'); - -// the size of the generated chunks -// TODO expose this as a public variable -var DEFAULT_BLOCK_SIZE = 16 * 1024; - -/** - * A worker that reads a content and emits chunks. - * @constructor - * @param {Promise} dataP the promise of the data to split - */ -function DataWorker(dataP) { - GenericWorker.call(this, "DataWorker"); - var self = this; - this.dataIsReady = false; - this.index = 0; - this.max = 0; - this.data = null; - this.type = ""; - - this._tickScheduled = false; - - dataP.then(function (data) { - self.dataIsReady = true; - self.data = data; - self.max = data && data.length || 0; - self.type = utils.getTypeOf(data); - if(!self.isPaused) { - self._tickAndRepeat(); - } - }, function (e) { - self.error(e); - }); -} - -utils.inherits(DataWorker, GenericWorker); - -/** - * @see GenericWorker.cleanUp - */ -DataWorker.prototype.cleanUp = function () { - GenericWorker.prototype.cleanUp.call(this); - this.data = null; -}; - -/** - * @see GenericWorker.resume - */ -DataWorker.prototype.resume = function () { - if(!GenericWorker.prototype.resume.call(this)) { - return false; - } - - if (!this._tickScheduled && this.dataIsReady) { - this._tickScheduled = true; - utils.delay(this._tickAndRepeat, [], this); - } - return true; -}; - -/** - * Trigger a tick a schedule an other call to this function. - */ -DataWorker.prototype._tickAndRepeat = function() { - this._tickScheduled = false; - if(this.isPaused || this.isFinished) { - return; - } - this._tick(); - if(!this.isFinished) { - utils.delay(this._tickAndRepeat, [], this); - this._tickScheduled = true; - } -}; - -/** - * Read and push a chunk. - */ -DataWorker.prototype._tick = function() { - - if(this.isPaused || this.isFinished) { - return false; - } - - var size = DEFAULT_BLOCK_SIZE; - var data = null, nextIndex = Math.min(this.max, this.index + size); - if (this.index >= this.max) { - // EOF - return this.end(); - } else { - switch(this.type) { - case "string": - data = this.data.substring(this.index, nextIndex); - break; - case "uint8array": - data = this.data.subarray(this.index, nextIndex); - break; - case "array": - case "nodebuffer": - data = this.data.slice(this.index, nextIndex); - break; - } - this.index = nextIndex; - return this.push({ - data : data, - meta : { - percent : this.max ? this.index / this.max * 100 : 0 - } - }); - } -}; - -module.exports = DataWorker; - -},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){ -'use strict'; - -/** - * A worker that does nothing but passing chunks to the next one. This is like - * a nodejs stream but with some differences. On the good side : - * - it works on IE 6-9 without any issue / polyfill - * - it weights less than the full dependencies bundled with browserify - * - it forwards errors (no need to declare an error handler EVERYWHERE) - * - * A chunk is an object with 2 attributes : `meta` and `data`. The former is an - * object containing anything (`percent` for example), see each worker for more - * details. The latter is the real data (String, Uint8Array, etc). - * - * @constructor - * @param {String} name the name of the stream (mainly used for debugging purposes) - */ -function GenericWorker(name) { - // the name of the worker - this.name = name || "default"; - // an object containing metadata about the workers chain - this.streamInfo = {}; - // an error which happened when the worker was paused - this.generatedError = null; - // an object containing metadata to be merged by this worker into the general metadata - this.extraStreamInfo = {}; - // true if the stream is paused (and should not do anything), false otherwise - this.isPaused = true; - // true if the stream is finished (and should not do anything), false otherwise - this.isFinished = false; - // true if the stream is locked to prevent further structure updates (pipe), false otherwise - this.isLocked = false; - // the event listeners - this._listeners = { - 'data':[], - 'end':[], - 'error':[] - }; - // the previous worker, if any - this.previous = null; -} - -GenericWorker.prototype = { - /** - * Push a chunk to the next workers. - * @param {Object} chunk the chunk to push - */ - push : function (chunk) { - this.emit("data", chunk); - }, - /** - * End the stream. - * @return {Boolean} true if this call ended the worker, false otherwise. - */ - end : function () { - if (this.isFinished) { - return false; - } - - this.flush(); - try { - this.emit("end"); - this.cleanUp(); - this.isFinished = true; - } catch (e) { - this.emit("error", e); - } - return true; - }, - /** - * End the stream with an error. - * @param {Error} e the error which caused the premature end. - * @return {Boolean} true if this call ended the worker with an error, false otherwise. - */ - error : function (e) { - if (this.isFinished) { - return false; - } - - if(this.isPaused) { - this.generatedError = e; - } else { - this.isFinished = true; - - this.emit("error", e); - - // in the workers chain exploded in the middle of the chain, - // the error event will go downward but we also need to notify - // workers upward that there has been an error. - if(this.previous) { - this.previous.error(e); - } - - this.cleanUp(); - } - return true; - }, - /** - * Add a callback on an event. - * @param {String} name the name of the event (data, end, error) - * @param {Function} listener the function to call when the event is triggered - * @return {GenericWorker} the current object for chainability - */ - on : function (name, listener) { - this._listeners[name].push(listener); - return this; - }, - /** - * Clean any references when a worker is ending. - */ - cleanUp : function () { - this.streamInfo = this.generatedError = this.extraStreamInfo = null; - this._listeners = []; - }, - /** - * Trigger an event. This will call registered callback with the provided arg. - * @param {String} name the name of the event (data, end, error) - * @param {Object} arg the argument to call the callback with. - */ - emit : function (name, arg) { - if (this._listeners[name]) { - for(var i = 0; i < this._listeners[name].length; i++) { - this._listeners[name][i].call(this, arg); - } - } - }, - /** - * Chain a worker with an other. - * @param {Worker} next the worker receiving events from the current one. - * @return {worker} the next worker for chainability - */ - pipe : function (next) { - return next.registerPrevious(this); - }, - /** - * Same as `pipe` in the other direction. - * Using an API with `pipe(next)` is very easy. - * Implementing the API with the point of view of the next one registering - * a source is easier, see the ZipFileWorker. - * @param {Worker} previous the previous worker, sending events to this one - * @return {Worker} the current worker for chainability - */ - registerPrevious : function (previous) { - if (this.isLocked) { - throw new Error("The stream '" + this + "' has already been used."); - } - - // sharing the streamInfo... - this.streamInfo = previous.streamInfo; - // ... and adding our own bits - this.mergeStreamInfo(); - this.previous = previous; - var self = this; - previous.on('data', function (chunk) { - self.processChunk(chunk); - }); - previous.on('end', function () { - self.end(); - }); - previous.on('error', function (e) { - self.error(e); - }); - return this; - }, - /** - * Pause the stream so it doesn't send events anymore. - * @return {Boolean} true if this call paused the worker, false otherwise. - */ - pause : function () { - if(this.isPaused || this.isFinished) { - return false; - } - this.isPaused = true; - - if(this.previous) { - this.previous.pause(); - } - return true; - }, - /** - * Resume a paused stream. - * @return {Boolean} true if this call resumed the worker, false otherwise. - */ - resume : function () { - if(!this.isPaused || this.isFinished) { - return false; - } - this.isPaused = false; - - // if true, the worker tried to resume but failed - var withError = false; - if(this.generatedError) { - this.error(this.generatedError); - withError = true; - } - if(this.previous) { - this.previous.resume(); - } - - return !withError; - }, - /** - * Flush any remaining bytes as the stream is ending. - */ - flush : function () {}, - /** - * Process a chunk. This is usually the method overridden. - * @param {Object} chunk the chunk to process. - */ - processChunk : function(chunk) { - this.push(chunk); - }, - /** - * Add a key/value to be added in the workers chain streamInfo once activated. - * @param {String} key the key to use - * @param {Object} value the associated value - * @return {Worker} the current worker for chainability - */ - withStreamInfo : function (key, value) { - this.extraStreamInfo[key] = value; - this.mergeStreamInfo(); - return this; - }, - /** - * Merge this worker's streamInfo into the chain's streamInfo. - */ - mergeStreamInfo : function () { - for(var key in this.extraStreamInfo) { - if (!this.extraStreamInfo.hasOwnProperty(key)) { - continue; - } - this.streamInfo[key] = this.extraStreamInfo[key]; - } - }, - - /** - * Lock the stream to prevent further updates on the workers chain. - * After calling this method, all calls to pipe will fail. - */ - lock: function () { - if (this.isLocked) { - throw new Error("The stream '" + this + "' has already been used."); - } - this.isLocked = true; - if (this.previous) { - this.previous.lock(); - } - }, - - /** - * - * Pretty print the workers chain. - */ - toString : function () { - var me = "Worker " + this.name; - if (this.previous) { - return this.previous + " -> " + me; - } else { - return me; - } - } -}; - -module.exports = GenericWorker; - -},{}],29:[function(require,module,exports){ -'use strict'; - -var utils = require('../utils'); -var ConvertWorker = require('./ConvertWorker'); -var GenericWorker = require('./GenericWorker'); -var base64 = require('../base64'); -var support = require("../support"); -var external = require("../external"); - -var NodejsStreamOutputAdapter = null; -if (support.nodestream) { - try { - NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter'); - } catch(e) {} -} - -/** - * Apply the final transformation of the data. If the user wants a Blob for - * example, it's easier to work with an U8intArray and finally do the - * ArrayBuffer/Blob conversion. - * @param {String} type the name of the final type - * @param {String|Uint8Array|Buffer} content the content to transform - * @param {String} mimeType the mime type of the content, if applicable. - * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format. - */ -function transformZipOutput(type, content, mimeType) { - switch(type) { - case "blob" : - return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType); - case "base64" : - return base64.encode(content); - default : - return utils.transformTo(type, content); - } -} - -/** - * Concatenate an array of data of the given type. - * @param {String} type the type of the data in the given array. - * @param {Array} dataArray the array containing the data chunks to concatenate - * @return {String|Uint8Array|Buffer} the concatenated data - * @throws Error if the asked type is unsupported - */ -function concat (type, dataArray) { - var i, index = 0, res = null, totalLength = 0; - for(i = 0; i < dataArray.length; i++) { - totalLength += dataArray[i].length; - } - switch(type) { - case "string": - return dataArray.join(""); - case "array": - return Array.prototype.concat.apply([], dataArray); - case "uint8array": - res = new Uint8Array(totalLength); - for(i = 0; i < dataArray.length; i++) { - res.set(dataArray[i], index); - index += dataArray[i].length; - } - return res; - case "nodebuffer": - return Buffer.concat(dataArray); - default: - throw new Error("concat : unsupported type '" + type + "'"); - } -} - -/** - * Listen a StreamHelper, accumulate its content and concatenate it into a - * complete block. - * @param {StreamHelper} helper the helper to use. - * @param {Function} updateCallback a callback called on each update. Called - * with one arg : - * - the metadata linked to the update received. - * @return Promise the promise for the accumulation. - */ -function accumulate(helper, updateCallback) { - return new external.Promise(function (resolve, reject){ - var dataArray = []; - var chunkType = helper._internalType, - resultType = helper._outputType, - mimeType = helper._mimeType; - helper - .on('data', function (data, meta) { - dataArray.push(data); - if(updateCallback) { - updateCallback(meta); - } - }) - .on('error', function(err) { - dataArray = []; - reject(err); - }) - .on('end', function (){ - try { - var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType); - resolve(result); - } catch (e) { - reject(e); - } - dataArray = []; - }) - .resume(); - }); -} - -/** - * An helper to easily use workers outside of JSZip. - * @constructor - * @param {Worker} worker the worker to wrap - * @param {String} outputType the type of data expected by the use - * @param {String} mimeType the mime type of the content, if applicable. - */ -function StreamHelper(worker, outputType, mimeType) { - var internalType = outputType; - switch(outputType) { - case "blob": - case "arraybuffer": - internalType = "uint8array"; - break; - case "base64": - internalType = "string"; - break; - } - - try { - // the type used internally - this._internalType = internalType; - // the type used to output results - this._outputType = outputType; - // the mime type - this._mimeType = mimeType; - utils.checkSupport(internalType); - this._worker = worker.pipe(new ConvertWorker(internalType)); - // the last workers can be rewired without issues but we need to - // prevent any updates on previous workers. - worker.lock(); - } catch(e) { - this._worker = new GenericWorker("error"); - this._worker.error(e); - } -} - -StreamHelper.prototype = { - /** - * Listen a StreamHelper, accumulate its content and concatenate it into a - * complete block. - * @param {Function} updateCb the update callback. - * @return Promise the promise for the accumulation. - */ - accumulate : function (updateCb) { - return accumulate(this, updateCb); - }, - /** - * Add a listener on an event triggered on a stream. - * @param {String} evt the name of the event - * @param {Function} fn the listener - * @return {StreamHelper} the current helper. - */ - on : function (evt, fn) { - var self = this; - - if(evt === "data") { - this._worker.on(evt, function (chunk) { - fn.call(self, chunk.data, chunk.meta); - }); - } else { - this._worker.on(evt, function () { - utils.delay(fn, arguments, self); - }); - } - return this; - }, - /** - * Resume the flow of chunks. - * @return {StreamHelper} the current helper. - */ - resume : function () { - utils.delay(this._worker.resume, [], this._worker); - return this; - }, - /** - * Pause the flow of chunks. - * @return {StreamHelper} the current helper. - */ - pause : function () { - this._worker.pause(); - return this; - }, - /** - * Return a nodejs stream for this helper. - * @param {Function} updateCb the update callback. - * @return {NodejsStreamOutputAdapter} the nodejs stream. - */ - toNodejsStream : function (updateCb) { - utils.checkSupport("nodestream"); - if (this._outputType !== "nodebuffer") { - // an object stream containing blob/arraybuffer/uint8array/string - // is strange and I don't know if it would be useful. - // I you find this comment and have a good usecase, please open a - // bug report ! - throw new Error(this._outputType + " is not supported by this method"); - } - - return new NodejsStreamOutputAdapter(this, { - objectMode : this._outputType !== "nodebuffer" - }, updateCb); - } -}; - - -module.exports = StreamHelper; - -},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){ -'use strict'; - -exports.base64 = true; -exports.array = true; -exports.string = true; -exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined"; -exports.nodebuffer = typeof Buffer !== "undefined"; -// contains true if JSZip can read/generate Uint8Array, false otherwise. -exports.uint8array = typeof Uint8Array !== "undefined"; - -if (typeof ArrayBuffer === "undefined") { - exports.blob = false; -} -else { - var buffer = new ArrayBuffer(0); - try { - exports.blob = new Blob([buffer], { - type: "application/zip" - }).size === 0; - } - catch (e) { - try { - var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; - var builder = new Builder(); - builder.append(buffer); - exports.blob = builder.getBlob('application/zip').size === 0; - } - catch (e) { - exports.blob = false; - } - } -} - -try { - exports.nodestream = !!require('readable-stream').Readable; -} catch(e) { - exports.nodestream = false; -} - -},{"readable-stream":16}],31:[function(require,module,exports){ -'use strict'; - -var utils = require('./utils'); -var support = require('./support'); -var nodejsUtils = require('./nodejsUtils'); -var GenericWorker = require('./stream/GenericWorker'); - -/** - * The following functions come from pako, from pako/lib/utils/strings - * released under the MIT license, see pako https://github.com/nodeca/pako/ - */ - -// Table with utf8 lengths (calculated by first byte of sequence) -// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS, -// because max possible codepoint is 0x10ffff -var _utf8len = new Array(256); -for (var i=0; i<256; i++) { - _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1); -} -_utf8len[254]=_utf8len[254]=1; // Invalid sequence start - -// convert string to array (typed, when possible) -var string2buf = function (str) { - var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; - - // count binary size - for (m_pos = 0; m_pos < str_len; m_pos++) { - c = str.charCodeAt(m_pos); - if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { - c2 = str.charCodeAt(m_pos+1); - if ((c2 & 0xfc00) === 0xdc00) { - c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); - m_pos++; - } - } - buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; - } - - // allocate buffer - if (support.uint8array) { - buf = new Uint8Array(buf_len); - } else { - buf = new Array(buf_len); - } - - // convert - for (i=0, m_pos = 0; i < buf_len; m_pos++) { - c = str.charCodeAt(m_pos); - if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) { - c2 = str.charCodeAt(m_pos+1); - if ((c2 & 0xfc00) === 0xdc00) { - c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); - m_pos++; - } - } - if (c < 0x80) { - /* one byte */ - buf[i++] = c; - } else if (c < 0x800) { - /* two bytes */ - buf[i++] = 0xC0 | (c >>> 6); - buf[i++] = 0x80 | (c & 0x3f); - } else if (c < 0x10000) { - /* three bytes */ - buf[i++] = 0xE0 | (c >>> 12); - buf[i++] = 0x80 | (c >>> 6 & 0x3f); - buf[i++] = 0x80 | (c & 0x3f); - } else { - /* four bytes */ - buf[i++] = 0xf0 | (c >>> 18); - buf[i++] = 0x80 | (c >>> 12 & 0x3f); - buf[i++] = 0x80 | (c >>> 6 & 0x3f); - buf[i++] = 0x80 | (c & 0x3f); - } - } - - return buf; -}; - -// Calculate max possible position in utf8 buffer, -// that will not break sequence. If that's not possible -// - (very small limits) return max size as is. -// -// buf[] - utf8 bytes array -// max - length limit (mandatory); -var utf8border = function(buf, max) { - var pos; - - max = max || buf.length; - if (max > buf.length) { max = buf.length; } - - // go back from last position, until start of sequence found - pos = max-1; - while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } - - // Fuckup - very small and broken sequence, - // return max, because we should return something anyway. - if (pos < 0) { return max; } - - // If we came to start of buffer - that means vuffer is too small, - // return max too. - if (pos === 0) { return max; } - - return (pos + _utf8len[buf[pos]] > max) ? pos : max; -}; - -// convert array to string -var buf2string = function (buf) { - var str, i, out, c, c_len; - var len = buf.length; - - // Reserve max possible length (2 words per char) - // NB: by unknown reasons, Array is significantly faster for - // String.fromCharCode.apply than Uint16Array. - var utf16buf = new Array(len*2); - - for (out=0, i=0; i 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; } - - // apply mask on first byte - c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; - // join the rest - while (c_len > 1 && i < len) { - c = (c << 6) | (buf[i++] & 0x3f); - c_len--; - } - - // terminated by end of string? - if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } - - if (c < 0x10000) { - utf16buf[out++] = c; - } else { - c -= 0x10000; - utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); - utf16buf[out++] = 0xdc00 | (c & 0x3ff); - } - } - - // shrinkBuf(utf16buf, out) - if (utf16buf.length !== out) { - if(utf16buf.subarray) { - utf16buf = utf16buf.subarray(0, out); - } else { - utf16buf.length = out; - } - } - - // return String.fromCharCode.apply(null, utf16buf); - return utils.applyFromCharCode(utf16buf); -}; - - -// That's all for the pako functions. - - -/** - * Transform a javascript string into an array (typed if possible) of bytes, - * UTF-8 encoded. - * @param {String} str the string to encode - * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string. - */ -exports.utf8encode = function utf8encode(str) { - if (support.nodebuffer) { - return nodejsUtils.newBufferFrom(str, "utf-8"); - } - - return string2buf(str); -}; - - -/** - * Transform a bytes array (or a representation) representing an UTF-8 encoded - * string into a javascript string. - * @param {Array|Uint8Array|Buffer} buf the data de decode - * @return {String} the decoded string. - */ -exports.utf8decode = function utf8decode(buf) { - if (support.nodebuffer) { - return utils.transformTo("nodebuffer", buf).toString("utf-8"); - } - - buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf); - - return buf2string(buf); -}; - -/** - * A worker to decode utf8 encoded binary chunks into string chunks. - * @constructor - */ -function Utf8DecodeWorker() { - GenericWorker.call(this, "utf-8 decode"); - // the last bytes if a chunk didn't end with a complete codepoint. - this.leftOver = null; -} -utils.inherits(Utf8DecodeWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -Utf8DecodeWorker.prototype.processChunk = function (chunk) { - - var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data); - - // 1st step, re-use what's left of the previous chunk - if (this.leftOver && this.leftOver.length) { - if(support.uint8array) { - var previousData = data; - data = new Uint8Array(previousData.length + this.leftOver.length); - data.set(this.leftOver, 0); - data.set(previousData, this.leftOver.length); - } else { - data = this.leftOver.concat(data); - } - this.leftOver = null; - } - - var nextBoundary = utf8border(data); - var usableData = data; - if (nextBoundary !== data.length) { - if (support.uint8array) { - usableData = data.subarray(0, nextBoundary); - this.leftOver = data.subarray(nextBoundary, data.length); - } else { - usableData = data.slice(0, nextBoundary); - this.leftOver = data.slice(nextBoundary, data.length); - } - } - - this.push({ - data : exports.utf8decode(usableData), - meta : chunk.meta - }); -}; - -/** - * @see GenericWorker.flush - */ -Utf8DecodeWorker.prototype.flush = function () { - if(this.leftOver && this.leftOver.length) { - this.push({ - data : exports.utf8decode(this.leftOver), - meta : {} - }); - this.leftOver = null; - } -}; -exports.Utf8DecodeWorker = Utf8DecodeWorker; - -/** - * A worker to endcode string chunks into utf8 encoded binary chunks. - * @constructor - */ -function Utf8EncodeWorker() { - GenericWorker.call(this, "utf-8 encode"); -} -utils.inherits(Utf8EncodeWorker, GenericWorker); - -/** - * @see GenericWorker.processChunk - */ -Utf8EncodeWorker.prototype.processChunk = function (chunk) { - this.push({ - data : exports.utf8encode(chunk.data), - meta : chunk.meta - }); -}; -exports.Utf8EncodeWorker = Utf8EncodeWorker; - -},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){ -'use strict'; - -var support = require('./support'); -var base64 = require('./base64'); -var nodejsUtils = require('./nodejsUtils'); -var setImmediate = require('set-immediate-shim'); -var external = require("./external"); - - -/** - * Convert a string that pass as a "binary string": it should represent a byte - * array but may have > 255 char codes. Be sure to take only the first byte - * and returns the byte array. - * @param {String} str the string to transform. - * @return {Array|Uint8Array} the string in a binary format. - */ -function string2binary(str) { - var result = null; - if (support.uint8array) { - result = new Uint8Array(str.length); - } else { - result = new Array(str.length); - } - return stringToArrayLike(str, result); -} - -/** - * Create a new blob with the given content and the given type. - * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use - * an Uint8Array because the stock browser of android 4 won't accept it (it - * will be silently converted to a string, "[object Uint8Array]"). - * - * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge: - * when a large amount of Array is used to create the Blob, the amount of - * memory consumed is nearly 100 times the original data amount. - * - * @param {String} type the mime type of the blob. - * @return {Blob} the created blob. - */ -exports.newBlob = function(part, type) { - exports.checkSupport("blob"); - - try { - // Blob constructor - return new Blob([part], { - type: type - }); - } - catch (e) { - - try { - // deprecated, browser only, old way - var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder; - var builder = new Builder(); - builder.append(part); - return builder.getBlob(type); - } - catch (e) { - - // well, fuck ?! - throw new Error("Bug : can't construct the Blob."); - } - } - - -}; -/** - * The identity function. - * @param {Object} input the input. - * @return {Object} the same input. - */ -function identity(input) { - return input; -} - -/** - * Fill in an array with a string. - * @param {String} str the string to use. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated). - * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array. - */ -function stringToArrayLike(str, array) { - for (var i = 0; i < str.length; ++i) { - array[i] = str.charCodeAt(i) & 0xFF; - } - return array; -} - -/** - * An helper for the function arrayLikeToString. - * This contains static informations and functions that - * can be optimized by the browser JIT compiler. - */ -var arrayToStringHelper = { - /** - * Transform an array of int into a string, chunk by chunk. - * See the performances notes on arrayLikeToString. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. - * @param {String} type the type of the array. - * @param {Integer} chunk the chunk size. - * @return {String} the resulting string. - * @throws Error if the chunk is too big for the stack. - */ - stringifyByChunk: function(array, type, chunk) { - var result = [], k = 0, len = array.length; - // shortcut - if (len <= chunk) { - return String.fromCharCode.apply(null, array); - } - while (k < len) { - if (type === "array" || type === "nodebuffer") { - result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len)))); - } - else { - result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len)))); - } - k += chunk; - } - return result.join(""); - }, - /** - * Call String.fromCharCode on every item in the array. - * This is the naive implementation, which generate A LOT of intermediate string. - * This should be used when everything else fail. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. - * @return {String} the result. - */ - stringifyByChar: function(array){ - var resultStr = ""; - for(var i = 0; i < array.length; i++) { - resultStr += String.fromCharCode(array[i]); - } - return resultStr; - }, - applyCanBeUsed : { - /** - * true if the browser accepts to use String.fromCharCode on Uint8Array - */ - uint8array : (function () { - try { - return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1; - } catch (e) { - return false; - } - })(), - /** - * true if the browser accepts to use String.fromCharCode on nodejs Buffer. - */ - nodebuffer : (function () { - try { - return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1; - } catch (e) { - return false; - } - })() - } -}; - -/** - * Transform an array-like object to a string. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform. - * @return {String} the result. - */ -function arrayLikeToString(array) { - // Performances notes : - // -------------------- - // String.fromCharCode.apply(null, array) is the fastest, see - // see http://jsperf.com/converting-a-uint8array-to-a-string/2 - // but the stack is limited (and we can get huge arrays !). - // - // result += String.fromCharCode(array[i]); generate too many strings ! - // - // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2 - // TODO : we now have workers that split the work. Do we still need that ? - var chunk = 65536, - type = exports.getTypeOf(array), - canUseApply = true; - if (type === "uint8array") { - canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array; - } else if (type === "nodebuffer") { - canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer; - } - - if (canUseApply) { - while (chunk > 1) { - try { - return arrayToStringHelper.stringifyByChunk(array, type, chunk); - } catch (e) { - chunk = Math.floor(chunk / 2); - } - } - } - - // no apply or chunk error : slow and painful algorithm - // default browser on android 4.* - return arrayToStringHelper.stringifyByChar(array); -} - -exports.applyFromCharCode = arrayLikeToString; - - -/** - * Copy the data from an array-like to an other array-like. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array. - * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated. - * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array. - */ -function arrayLikeToArrayLike(arrayFrom, arrayTo) { - for (var i = 0; i < arrayFrom.length; i++) { - arrayTo[i] = arrayFrom[i]; - } - return arrayTo; -} - -// a matrix containing functions to transform everything into everything. -var transform = {}; - -// string to ? -transform["string"] = { - "string": identity, - "array": function(input) { - return stringToArrayLike(input, new Array(input.length)); - }, - "arraybuffer": function(input) { - return transform["string"]["uint8array"](input).buffer; - }, - "uint8array": function(input) { - return stringToArrayLike(input, new Uint8Array(input.length)); - }, - "nodebuffer": function(input) { - return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length)); - } -}; - -// array to ? -transform["array"] = { - "string": arrayLikeToString, - "array": identity, - "arraybuffer": function(input) { - return (new Uint8Array(input)).buffer; - }, - "uint8array": function(input) { - return new Uint8Array(input); - }, - "nodebuffer": function(input) { - return nodejsUtils.newBufferFrom(input); - } -}; - -// arraybuffer to ? -transform["arraybuffer"] = { - "string": function(input) { - return arrayLikeToString(new Uint8Array(input)); - }, - "array": function(input) { - return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength)); - }, - "arraybuffer": identity, - "uint8array": function(input) { - return new Uint8Array(input); - }, - "nodebuffer": function(input) { - return nodejsUtils.newBufferFrom(new Uint8Array(input)); - } -}; - -// uint8array to ? -transform["uint8array"] = { - "string": arrayLikeToString, - "array": function(input) { - return arrayLikeToArrayLike(input, new Array(input.length)); - }, - "arraybuffer": function(input) { - return input.buffer; - }, - "uint8array": identity, - "nodebuffer": function(input) { - return nodejsUtils.newBufferFrom(input); - } -}; - -// nodebuffer to ? -transform["nodebuffer"] = { - "string": arrayLikeToString, - "array": function(input) { - return arrayLikeToArrayLike(input, new Array(input.length)); - }, - "arraybuffer": function(input) { - return transform["nodebuffer"]["uint8array"](input).buffer; - }, - "uint8array": function(input) { - return arrayLikeToArrayLike(input, new Uint8Array(input.length)); - }, - "nodebuffer": identity -}; - -/** - * Transform an input into any type. - * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer. - * If no output type is specified, the unmodified input will be returned. - * @param {String} outputType the output type. - * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert. - * @throws {Error} an Error if the browser doesn't support the requested output type. - */ -exports.transformTo = function(outputType, input) { - if (!input) { - // undefined, null, etc - // an empty string won't harm. - input = ""; - } - if (!outputType) { - return input; - } - exports.checkSupport(outputType); - var inputType = exports.getTypeOf(input); - var result = transform[inputType][outputType](input); - return result; -}; - -/** - * Return the type of the input. - * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer. - * @param {Object} input the input to identify. - * @return {String} the (lowercase) type of the input. - */ -exports.getTypeOf = function(input) { - if (typeof input === "string") { - return "string"; - } - if (Object.prototype.toString.call(input) === "[object Array]") { - return "array"; - } - if (support.nodebuffer && nodejsUtils.isBuffer(input)) { - return "nodebuffer"; - } - if (support.uint8array && input instanceof Uint8Array) { - return "uint8array"; - } - if (support.arraybuffer && input instanceof ArrayBuffer) { - return "arraybuffer"; - } -}; - -/** - * Throw an exception if the type is not supported. - * @param {String} type the type to check. - * @throws {Error} an Error if the browser doesn't support the requested type. - */ -exports.checkSupport = function(type) { - var supported = support[type.toLowerCase()]; - if (!supported) { - throw new Error(type + " is not supported by this platform"); - } -}; - -exports.MAX_VALUE_16BITS = 65535; -exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1 - -/** - * Prettify a string read as binary. - * @param {string} str the string to prettify. - * @return {string} a pretty string. - */ -exports.pretty = function(str) { - var res = '', - code, i; - for (i = 0; i < (str || "").length; i++) { - code = str.charCodeAt(i); - res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase(); - } - return res; -}; - -/** - * Defer the call of a function. - * @param {Function} callback the function to call asynchronously. - * @param {Array} args the arguments to give to the callback. - */ -exports.delay = function(callback, args, self) { - setImmediate(function () { - callback.apply(self || null, args || []); - }); -}; - -/** - * Extends a prototype with an other, without calling a constructor with - * side effects. Inspired by nodejs' `utils.inherits` - * @param {Function} ctor the constructor to augment - * @param {Function} superCtor the parent constructor to use - */ -exports.inherits = function (ctor, superCtor) { - var Obj = function() {}; - Obj.prototype = superCtor.prototype; - ctor.prototype = new Obj(); -}; - -/** - * Merge the objects passed as parameters into a new one. - * @private - * @param {...Object} var_args All objects to merge. - * @return {Object} a new object with the data of the others. - */ -exports.extend = function() { - var result = {}, i, attr; - for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers - for (attr in arguments[i]) { - if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") { - result[attr] = arguments[i][attr]; - } - } - } - return result; -}; - -/** - * Transform arbitrary content into a Promise. - * @param {String} name a name for the content being processed. - * @param {Object} inputData the content to process. - * @param {Boolean} isBinary true if the content is not an unicode string - * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character. - * @param {Boolean} isBase64 true if the string content is encoded with base64. - * @return {Promise} a promise in a format usable by JSZip. - */ -exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) { - - // if inputData is already a promise, this flatten it. - var promise = external.Promise.resolve(inputData).then(function(data) { - - - var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1); - - if (isBlob && typeof FileReader !== "undefined") { - return new external.Promise(function (resolve, reject) { - var reader = new FileReader(); - - reader.onload = function(e) { - resolve(e.target.result); - }; - reader.onerror = function(e) { - reject(e.target.error); - }; - reader.readAsArrayBuffer(data); - }); - } else { - return data; - } - }); - - return promise.then(function(data) { - var dataType = exports.getTypeOf(data); - - if (!dataType) { - return external.Promise.reject( - new Error("Can't read the data of '" + name + "'. Is it " + - "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?") - ); - } - // special case : it's way easier to work with Uint8Array than with ArrayBuffer - if (dataType === "arraybuffer") { - data = exports.transformTo("uint8array", data); - } else if (dataType === "string") { - if (isBase64) { - data = base64.decode(data); - } - else if (isBinary) { - // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask - if (isOptimizedBinaryString !== true) { - // this is a string, not in a base64 format. - // Be sure that this is a correct "binary string" - data = string2binary(data); - } - } - } - return data; - }); -}; - -},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){ -'use strict'; -var readerFor = require('./reader/readerFor'); -var utils = require('./utils'); -var sig = require('./signature'); -var ZipEntry = require('./zipEntry'); -var utf8 = require('./utf8'); -var support = require('./support'); -// class ZipEntries {{{ -/** - * All the entries in the zip file. - * @constructor - * @param {Object} loadOptions Options for loading the stream. - */ -function ZipEntries(loadOptions) { - this.files = []; - this.loadOptions = loadOptions; -} -ZipEntries.prototype = { - /** - * Check that the reader is on the specified signature. - * @param {string} expectedSignature the expected signature. - * @throws {Error} if it is an other signature. - */ - checkSignature: function(expectedSignature) { - if (!this.reader.readAndCheckSignature(expectedSignature)) { - this.reader.index -= 4; - var signature = this.reader.readString(4); - throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")"); - } - }, - /** - * Check if the given signature is at the given index. - * @param {number} askedIndex the index to check. - * @param {string} expectedSignature the signature to expect. - * @return {boolean} true if the signature is here, false otherwise. - */ - isSignature: function(askedIndex, expectedSignature) { - var currentIndex = this.reader.index; - this.reader.setIndex(askedIndex); - var signature = this.reader.readString(4); - var result = signature === expectedSignature; - this.reader.setIndex(currentIndex); - return result; - }, - /** - * Read the end of the central directory. - */ - readBlockEndOfCentral: function() { - this.diskNumber = this.reader.readInt(2); - this.diskWithCentralDirStart = this.reader.readInt(2); - this.centralDirRecordsOnThisDisk = this.reader.readInt(2); - this.centralDirRecords = this.reader.readInt(2); - this.centralDirSize = this.reader.readInt(4); - this.centralDirOffset = this.reader.readInt(4); - - this.zipCommentLength = this.reader.readInt(2); - // warning : the encoding depends of the system locale - // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded. - // On a windows machine, this field is encoded with the localized windows code page. - var zipComment = this.reader.readData(this.zipCommentLength); - var decodeParamType = support.uint8array ? "uint8array" : "array"; - // To get consistent behavior with the generation part, we will assume that - // this is utf8 encoded unless specified otherwise. - var decodeContent = utils.transformTo(decodeParamType, zipComment); - this.zipComment = this.loadOptions.decodeFileName(decodeContent); - }, - /** - * Read the end of the Zip 64 central directory. - * Not merged with the method readEndOfCentral : - * The end of central can coexist with its Zip64 brother, - * I don't want to read the wrong number of bytes ! - */ - readBlockZip64EndOfCentral: function() { - this.zip64EndOfCentralSize = this.reader.readInt(8); - this.reader.skip(4); - // this.versionMadeBy = this.reader.readString(2); - // this.versionNeeded = this.reader.readInt(2); - this.diskNumber = this.reader.readInt(4); - this.diskWithCentralDirStart = this.reader.readInt(4); - this.centralDirRecordsOnThisDisk = this.reader.readInt(8); - this.centralDirRecords = this.reader.readInt(8); - this.centralDirSize = this.reader.readInt(8); - this.centralDirOffset = this.reader.readInt(8); - - this.zip64ExtensibleData = {}; - var extraDataSize = this.zip64EndOfCentralSize - 44, - index = 0, - extraFieldId, - extraFieldLength, - extraFieldValue; - while (index < extraDataSize) { - extraFieldId = this.reader.readInt(2); - extraFieldLength = this.reader.readInt(4); - extraFieldValue = this.reader.readData(extraFieldLength); - this.zip64ExtensibleData[extraFieldId] = { - id: extraFieldId, - length: extraFieldLength, - value: extraFieldValue - }; - } - }, - /** - * Read the end of the Zip 64 central directory locator. - */ - readBlockZip64EndOfCentralLocator: function() { - this.diskWithZip64CentralDirStart = this.reader.readInt(4); - this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8); - this.disksCount = this.reader.readInt(4); - if (this.disksCount > 1) { - throw new Error("Multi-volumes zip are not supported"); - } - }, - /** - * Read the local files, based on the offset read in the central part. - */ - readLocalFiles: function() { - var i, file; - for (i = 0; i < this.files.length; i++) { - file = this.files[i]; - this.reader.setIndex(file.localHeaderOffset); - this.checkSignature(sig.LOCAL_FILE_HEADER); - file.readLocalPart(this.reader); - file.handleUTF8(); - file.processAttributes(); - } - }, - /** - * Read the central directory. - */ - readCentralDir: function() { - var file; - - this.reader.setIndex(this.centralDirOffset); - while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) { - file = new ZipEntry({ - zip64: this.zip64 - }, this.loadOptions); - file.readCentralPart(this.reader); - this.files.push(file); - } - - if (this.centralDirRecords !== this.files.length) { - if (this.centralDirRecords !== 0 && this.files.length === 0) { - // We expected some records but couldn't find ANY. - // This is really suspicious, as if something went wrong. - throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length); - } else { - // We found some records but not all. - // Something is wrong but we got something for the user: no error here. - // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length); - } - } - }, - /** - * Read the end of central directory. - */ - readEndOfCentral: function() { - var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END); - if (offset < 0) { - // Check if the content is a truncated zip or complete garbage. - // A "LOCAL_FILE_HEADER" is not required at the beginning (auto - // extractible zip for example) but it can give a good hint. - // If an ajax request was used without responseType, we will also - // get unreadable data. - var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER); - - if (isGarbage) { - throw new Error("Can't find end of central directory : is this a zip file ? " + - "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"); - } else { - throw new Error("Corrupted zip: can't find end of central directory"); - } - - } - this.reader.setIndex(offset); - var endOfCentralDirOffset = offset; - this.checkSignature(sig.CENTRAL_DIRECTORY_END); - this.readBlockEndOfCentral(); - - - /* extract from the zip spec : - 4) If one of the fields in the end of central directory - record is too small to hold required data, the field - should be set to -1 (0xFFFF or 0xFFFFFFFF) and the - ZIP64 format record should be created. - 5) The end of central directory record and the - Zip64 end of central directory locator record must - reside on the same disk when splitting or spanning - an archive. - */ - if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) { - this.zip64 = true; - - /* - Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from - the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents - all numbers as 64-bit double precision IEEE 754 floating point numbers. - So, we have 53bits for integers and bitwise operations treat everything as 32bits. - see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators - and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5 - */ - - // should look for a zip64 EOCD locator - offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); - if (offset < 0) { - throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator"); - } - this.reader.setIndex(offset); - this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR); - this.readBlockZip64EndOfCentralLocator(); - - // now the zip64 EOCD record - if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) { - // console.warn("ZIP64 end of central directory not where expected."); - this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); - if (this.relativeOffsetEndOfZip64CentralDir < 0) { - throw new Error("Corrupted zip: can't find the ZIP64 end of central directory"); - } - } - this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir); - this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END); - this.readBlockZip64EndOfCentral(); - } - - var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize; - if (this.zip64) { - expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator - expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize; - } - - var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset; - - if (extraBytes > 0) { - // console.warn(extraBytes, "extra bytes at beginning or within zipfile"); - if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) { - // The offsets seem wrong, but we have something at the specified offset. - // So… we keep it. - } else { - // the offset is wrong, update the "zero" of the reader - // this happens if data has been prepended (crx files for example) - this.reader.zero = extraBytes; - } - } else if (extraBytes < 0) { - throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes."); - } - }, - prepareReader: function(data) { - this.reader = readerFor(data); - }, - /** - * Read a zip file and create ZipEntries. - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file. - */ - load: function(data) { - this.prepareReader(data); - this.readEndOfCentral(); - this.readCentralDir(); - this.readLocalFiles(); - } -}; -// }}} end of ZipEntries -module.exports = ZipEntries; - -},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){ -'use strict'; -var readerFor = require('./reader/readerFor'); -var utils = require('./utils'); -var CompressedObject = require('./compressedObject'); -var crc32fn = require('./crc32'); -var utf8 = require('./utf8'); -var compressions = require('./compressions'); -var support = require('./support'); - -var MADE_BY_DOS = 0x00; -var MADE_BY_UNIX = 0x03; - -/** - * Find a compression registered in JSZip. - * @param {string} compressionMethod the method magic to find. - * @return {Object|null} the JSZip compression object, null if none found. - */ -var findCompression = function(compressionMethod) { - for (var method in compressions) { - if (!compressions.hasOwnProperty(method)) { - continue; - } - if (compressions[method].magic === compressionMethod) { - return compressions[method]; - } - } - return null; -}; - -// class ZipEntry {{{ -/** - * An entry in the zip file. - * @constructor - * @param {Object} options Options of the current file. - * @param {Object} loadOptions Options for loading the stream. - */ -function ZipEntry(options, loadOptions) { - this.options = options; - this.loadOptions = loadOptions; -} -ZipEntry.prototype = { - /** - * say if the file is encrypted. - * @return {boolean} true if the file is encrypted, false otherwise. - */ - isEncrypted: function() { - // bit 1 is set - return (this.bitFlag & 0x0001) === 0x0001; - }, - /** - * say if the file has utf-8 filename/comment. - * @return {boolean} true if the filename/comment is in utf-8, false otherwise. - */ - useUTF8: function() { - // bit 11 is set - return (this.bitFlag & 0x0800) === 0x0800; - }, - /** - * Read the local part of a zip file and add the info in this object. - * @param {DataReader} reader the reader to use. - */ - readLocalPart: function(reader) { - var compression, localExtraFieldsLength; - - // we already know everything from the central dir ! - // If the central dir data are false, we are doomed. - // On the bright side, the local part is scary : zip64, data descriptors, both, etc. - // The less data we get here, the more reliable this should be. - // Let's skip the whole header and dash to the data ! - reader.skip(22); - // in some zip created on windows, the filename stored in the central dir contains \ instead of /. - // Strangely, the filename here is OK. - // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes - // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators... - // Search "unzip mismatching "local" filename continuing with "central" filename version" on - // the internet. - // - // I think I see the logic here : the central directory is used to display - // content and the local directory is used to extract the files. Mixing / and \ - // may be used to display \ to windows users and use / when extracting the files. - // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394 - this.fileNameLength = reader.readInt(2); - localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir - // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding. - this.fileName = reader.readData(this.fileNameLength); - reader.skip(localExtraFieldsLength); - - if (this.compressedSize === -1 || this.uncompressedSize === -1) { - throw new Error("Bug or corrupted zip : didn't get enough informations from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)"); - } - - compression = findCompression(this.compressionMethod); - if (compression === null) { // no compression found - throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")"); - } - this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize)); - }, - - /** - * Read the central part of a zip file and add the info in this object. - * @param {DataReader} reader the reader to use. - */ - readCentralPart: function(reader) { - this.versionMadeBy = reader.readInt(2); - reader.skip(2); - // this.versionNeeded = reader.readInt(2); - this.bitFlag = reader.readInt(2); - this.compressionMethod = reader.readString(2); - this.date = reader.readDate(); - this.crc32 = reader.readInt(4); - this.compressedSize = reader.readInt(4); - this.uncompressedSize = reader.readInt(4); - var fileNameLength = reader.readInt(2); - this.extraFieldsLength = reader.readInt(2); - this.fileCommentLength = reader.readInt(2); - this.diskNumberStart = reader.readInt(2); - this.internalFileAttributes = reader.readInt(2); - this.externalFileAttributes = reader.readInt(4); - this.localHeaderOffset = reader.readInt(4); - - if (this.isEncrypted()) { - throw new Error("Encrypted zip are not supported"); - } - - // will be read in the local part, see the comments there - reader.skip(fileNameLength); - this.readExtraFields(reader); - this.parseZIP64ExtraField(reader); - this.fileComment = reader.readData(this.fileCommentLength); - }, - - /** - * Parse the external file attributes and get the unix/dos permissions. - */ - processAttributes: function () { - this.unixPermissions = null; - this.dosPermissions = null; - var madeBy = this.versionMadeBy >> 8; - - // Check if we have the DOS directory flag set. - // We look for it in the DOS and UNIX permissions - // but some unknown platform could set it as a compatibility flag. - this.dir = this.externalFileAttributes & 0x0010 ? true : false; - - if(madeBy === MADE_BY_DOS) { - // first 6 bits (0 to 5) - this.dosPermissions = this.externalFileAttributes & 0x3F; - } - - if(madeBy === MADE_BY_UNIX) { - this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF; - // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8); - } - - // fail safe : if the name ends with a / it probably means a folder - if (!this.dir && this.fileNameStr.slice(-1) === '/') { - this.dir = true; - } - }, - - /** - * Parse the ZIP64 extra field and merge the info in the current ZipEntry. - * @param {DataReader} reader the reader to use. - */ - parseZIP64ExtraField: function(reader) { - - if (!this.extraFields[0x0001]) { - return; - } - - // should be something, preparing the extra reader - var extraReader = readerFor(this.extraFields[0x0001].value); - - // I really hope that these 64bits integer can fit in 32 bits integer, because js - // won't let us have more. - if (this.uncompressedSize === utils.MAX_VALUE_32BITS) { - this.uncompressedSize = extraReader.readInt(8); - } - if (this.compressedSize === utils.MAX_VALUE_32BITS) { - this.compressedSize = extraReader.readInt(8); - } - if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) { - this.localHeaderOffset = extraReader.readInt(8); - } - if (this.diskNumberStart === utils.MAX_VALUE_32BITS) { - this.diskNumberStart = extraReader.readInt(4); - } - }, - /** - * Read the central part of a zip file and add the info in this object. - * @param {DataReader} reader the reader to use. - */ - readExtraFields: function(reader) { - var end = reader.index + this.extraFieldsLength, - extraFieldId, - extraFieldLength, - extraFieldValue; - - if (!this.extraFields) { - this.extraFields = {}; - } - - while (reader.index < end) { - extraFieldId = reader.readInt(2); - extraFieldLength = reader.readInt(2); - extraFieldValue = reader.readData(extraFieldLength); - - this.extraFields[extraFieldId] = { - id: extraFieldId, - length: extraFieldLength, - value: extraFieldValue - }; - } - }, - /** - * Apply an UTF8 transformation if needed. - */ - handleUTF8: function() { - var decodeParamType = support.uint8array ? "uint8array" : "array"; - if (this.useUTF8()) { - this.fileNameStr = utf8.utf8decode(this.fileName); - this.fileCommentStr = utf8.utf8decode(this.fileComment); - } else { - var upath = this.findExtraFieldUnicodePath(); - if (upath !== null) { - this.fileNameStr = upath; - } else { - // ASCII text or unsupported code page - var fileNameByteArray = utils.transformTo(decodeParamType, this.fileName); - this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray); - } - - var ucomment = this.findExtraFieldUnicodeComment(); - if (ucomment !== null) { - this.fileCommentStr = ucomment; - } else { - // ASCII text or unsupported code page - var commentByteArray = utils.transformTo(decodeParamType, this.fileComment); - this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray); - } - } - }, - - /** - * Find the unicode path declared in the extra field, if any. - * @return {String} the unicode path, null otherwise. - */ - findExtraFieldUnicodePath: function() { - var upathField = this.extraFields[0x7075]; - if (upathField) { - var extraReader = readerFor(upathField.value); - - // wrong version - if (extraReader.readInt(1) !== 1) { - return null; - } - - // the crc of the filename changed, this field is out of date. - if (crc32fn(this.fileName) !== extraReader.readInt(4)) { - return null; - } - - return utf8.utf8decode(extraReader.readData(upathField.length - 5)); - } - return null; - }, - - /** - * Find the unicode comment declared in the extra field, if any. - * @return {String} the unicode comment, null otherwise. - */ - findExtraFieldUnicodeComment: function() { - var ucommentField = this.extraFields[0x6375]; - if (ucommentField) { - var extraReader = readerFor(ucommentField.value); - - // wrong version - if (extraReader.readInt(1) !== 1) { - return null; - } - - // the crc of the comment changed, this field is out of date. - if (crc32fn(this.fileComment) !== extraReader.readInt(4)) { - return null; - } - - return utf8.utf8decode(extraReader.readData(ucommentField.length - 5)); - } - return null; - } -}; -module.exports = ZipEntry; - -},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){ -'use strict'; - -var StreamHelper = require('./stream/StreamHelper'); -var DataWorker = require('./stream/DataWorker'); -var utf8 = require('./utf8'); -var CompressedObject = require('./compressedObject'); -var GenericWorker = require('./stream/GenericWorker'); - -/** - * A simple object representing a file in the zip file. - * @constructor - * @param {string} name the name of the file - * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data - * @param {Object} options the options of the file - */ -var ZipObject = function(name, data, options) { - this.name = name; - this.dir = options.dir; - this.date = options.date; - this.comment = options.comment; - this.unixPermissions = options.unixPermissions; - this.dosPermissions = options.dosPermissions; - - this._data = data; - this._dataBinary = options.binary; - // keep only the compression - this.options = { - compression : options.compression, - compressionOptions : options.compressionOptions - }; -}; - -ZipObject.prototype = { - /** - * Create an internal stream for the content of this object. - * @param {String} type the type of each chunk. - * @return StreamHelper the stream. - */ - internalStream: function (type) { - var result = null, outputType = "string"; - try { - if (!type) { - throw new Error("No output type specified."); - } - outputType = type.toLowerCase(); - var askUnicodeString = outputType === "string" || outputType === "text"; - if (outputType === "binarystring" || outputType === "text") { - outputType = "string"; - } - result = this._decompressWorker(); - - var isUnicodeString = !this._dataBinary; - - if (isUnicodeString && !askUnicodeString) { - result = result.pipe(new utf8.Utf8EncodeWorker()); - } - if (!isUnicodeString && askUnicodeString) { - result = result.pipe(new utf8.Utf8DecodeWorker()); - } - } catch (e) { - result = new GenericWorker("error"); - result.error(e); - } - - return new StreamHelper(result, outputType, ""); - }, - - /** - * Prepare the content in the asked type. - * @param {String} type the type of the result. - * @param {Function} onUpdate a function to call on each internal update. - * @return Promise the promise of the result. - */ - async: function (type, onUpdate) { - return this.internalStream(type).accumulate(onUpdate); - }, - - /** - * Prepare the content as a nodejs stream. - * @param {String} type the type of each chunk. - * @param {Function} onUpdate a function to call on each internal update. - * @return Stream the stream. - */ - nodeStream: function (type, onUpdate) { - return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate); - }, - - /** - * Return a worker for the compressed content. - * @private - * @param {Object} compression the compression object to use. - * @param {Object} compressionOptions the options to use when compressing. - * @return Worker the worker. - */ - _compressWorker: function (compression, compressionOptions) { - if ( - this._data instanceof CompressedObject && - this._data.compression.magic === compression.magic - ) { - return this._data.getCompressedWorker(); - } else { - var result = this._decompressWorker(); - if(!this._dataBinary) { - result = result.pipe(new utf8.Utf8EncodeWorker()); - } - return CompressedObject.createWorkerFrom(result, compression, compressionOptions); - } - }, - /** - * Return a worker for the decompressed content. - * @private - * @return Worker the worker. - */ - _decompressWorker : function () { - if (this._data instanceof CompressedObject) { - return this._data.getContentWorker(); - } else if (this._data instanceof GenericWorker) { - return this._data; - } else { - return new DataWorker(this._data); - } - } -}; - -var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"]; -var removedFn = function () { - throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide."); -}; - -for(var i = 0; i < removedMethods.length; i++) { - ZipObject.prototype[removedMethods[i]] = removedFn; -} -module.exports = ZipObject; - -},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){ -(function (global){ -'use strict'; -var Mutation = global.MutationObserver || global.WebKitMutationObserver; - -var scheduleDrain; - -{ - if (Mutation) { - var called = 0; - var observer = new Mutation(nextTick); - var element = global.document.createTextNode(''); - observer.observe(element, { - characterData: true - }); - scheduleDrain = function () { - element.data = (called = ++called % 2); - }; - } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') { - var channel = new global.MessageChannel(); - channel.port1.onmessage = nextTick; - scheduleDrain = function () { - channel.port2.postMessage(0); - }; - } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) { - scheduleDrain = function () { - - // Create a - - + + + + + + +
    + +
    +
    + +
    + +

    Class Insert

    +
    +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.Insert
    +
    +
    +
    +
    +
    public class Insert
    +extends RenderElement
    +
    Inside Word and PowerPoint documents, the tag {?insert fileToInsert} can be used to + insert files like Word, Excel, PowerPoint and PDF documents.
    +
    +
    +
      + +
    • +
      +

      Constructor Summary

      +
      + + + + + + + + + + + + + + +
      Constructors
      ConstructorDescription
      Insert​(java.lang.String name, +java.lang.String value) 
      +
      +
      +
    • + +
    • +
      +

      Method Summary

      +
      +
      +
      + + + + + + + + + + + + + + + + + + + + +
      Modifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      +
      +
      +
      +

      Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

      +getName, getValue, setName, setValue
      +
      +

      Methods inherited from class java.lang.Object

      +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        Insert

        +
        public Insert​(java.lang.String name, +java.lang.String value)
        +
        +
        Parameters:
        +
        name - the name of insert tag
        +
        value - base64 encoded file(docx, pptx, xlsx, pdf etc) to be added in output file.
        +
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getJSON

        +
        public com.google.gson.JsonObject getJSON()
        +
        +
        Specified by:
        +
        getJSON in class RenderElement
        +
        Returns:
        +
        JSONObject with the tags for this element for the Cloud Office Print + server.
        +
        +
        +
      • +
      • +
        +

        getTemplateTags

        +
        public java.util.Set<java.lang.String> getTemplateTags()
        +
        +
        Specified by:
        +
        getTemplateTags in class RenderElement
        +
        Returns:
        +
        An immutable set containing all available template tags this element + can replace.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html index fc320ebc..6f1326bf 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html @@ -81,7 +81,7 @@

    Class RenderElement

    Direct Known Subclasses:
    -
    CellSpan, Chart, Code, COPChart, D3Code, ElementCollection, ExternalResource, FootNote, Formula, Freeze, HTML, HyperLink, Image, Loop, MarkDownContent, PageBreak, PDFFormData, PDFImages, PDFTexts, Property, Raw, RawJsonArray, RightToLeft, StyledProperty, TableCell, TableOfContents, TextBox, Watermark
    +
    CellSpan, Chart, Code, COPChart, D3Code, ElementCollection, ExternalResource, FootNote, Formula, Freeze, HTML, HyperLink, Image, Insert, Loop, MarkDownContent, PageBreak, PDFFormData, PDFImages, PDFTexts, Property, Raw, RawJsonArray, RightToLeft, StyledProperty, TableCell, TableOfContents, TextBox, Watermark

    public abstract class RenderElement
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html
    index 04d4c9a6..f7b3616f 100644
    --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html
    +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html
    @@ -128,68 +128,75 @@ 

    Package com.cloudofficeprint.RenderElemen +Insert + +
    Inside Word and PowerPoint documents, the tag {?insert fileToInsert} can be used to + insert files like Word, Excel, PowerPoint and PDF documents.
    + + + MarkDownContent
    Only supported in Word.
    - + PageBreak
    Only supported in Word and Excel.
    - + Property
    The most basic RenderElement.
    - + Raw
    Only available for HTML and Markdown templates.
    - + RawJsonArray
    Represents a raw JsonArray to include in the data.
    - + RenderElement
    Abstract class for renderElements.
    - + RightToLeft
    Only supported in Word templates, might work in other templates but behaviour is not predictable.
    - + StyledProperty
    Only supported in Word and Powerpoint templates.
    - + TableOfContents
    Only supported in Word templates.
    - + TextBox
    This tag will allow you to insert a text box starting in the cell containing the tag in Excel.
    - + Watermark
    It is possible to use your own Watermark with font, size, opacity, color, width, height and rotation.
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html index f956e62a..e35ccd4e 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html @@ -73,6 +73,7 @@

    Class Hierarchy

  • com.cloudofficeprint.RenderElements.Freeze
  • com.cloudofficeprint.RenderElements.HTML
  • com.cloudofficeprint.RenderElements.HyperLink
  • +
  • com.cloudofficeprint.RenderElements.Insert
  • com.cloudofficeprint.RenderElements.MarkDownContent
  • com.cloudofficeprint.RenderElements.PageBreak
  • com.cloudofficeprint.RenderElements.Property
  • diff --git a/cloudofficeprint/build/docs/javadoc/index-all.html b/cloudofficeprint/build/docs/javadoc/index-all.html index 914c8953..cce43508 100644 --- a/cloudofficeprint/build/docs/javadoc/index-all.html +++ b/cloudofficeprint/build/docs/javadoc/index-all.html @@ -991,6 +991,8 @@

    G

     
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    +
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Insert
    +
     
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.Loop
     
    getJSON() - Method in class com.cloudofficeprint.RenderElements.Loops.SheetLoop
    @@ -1444,6 +1446,8 @@

    G

     
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Images.Image
     
    +
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Insert
    +
     
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.InlineDataLoop
     
    getTemplateTags() - Method in class com.cloudofficeprint.RenderElements.Loops.Labels
    @@ -1703,6 +1707,13 @@

    I

    Horizontal table looping for Word, Excel and CSV templates.
    +
    Insert - Class in com.cloudofficeprint.RenderElements
    +
    +
    Inside Word and PowerPoint documents, the tag {?insert fileToInsert} can be used to + insert files like Word, Excel, PowerPoint and PDF documents.
    +
    +
    Insert(String, String) - Constructor for class com.cloudofficeprint.RenderElements.Insert
    +
     
    isIppPrinterReachable() - Method in class com.cloudofficeprint.Server.Server
    Sends a Get request to check the status of ipp-printer provided with location and version of url.
    diff --git a/cloudofficeprint/build/docs/javadoc/member-search-index.js b/cloudofficeprint/build/docs/javadoc/member-search-index.js index 8a9e1a89..b82f3dd1 100644 --- a/cloudofficeprint/build/docs/javadoc/member-search-index.js +++ b/cloudofficeprint/build/docs/javadoc/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addAllRenderElements(ElementCollection)","u":"addAllRenderElements(com.cloudofficeprint.RenderElements.ElementCollection)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addElement(RenderElement)","u":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"addElement(RenderElement)","u":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addFromDict(Hashtable)","u":"addFromDict(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"AreaChart(String, ChartOptions, AreaSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"AreaSeries(String, String[], String[], String, Float)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Float)"},{"p":"com.cloudofficeprint","c":"Response","l":"asString()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"AWSToken(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"BarChart(String, ChartOptions, BarSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"BarCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarSeries","l":"BarSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"BarStackedChart(String, ChartOptions, BarStackedSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedPercentSeries","l":"BarStackedPercentSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedSeries","l":"BarStackedSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"BubbleChart(String, ChartOptions, BubbleSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"BubbleSeries(String, String[], String[], Integer[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"CellSpan(String, String, int, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"CellStyle()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"CellStyleDocxPpt(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"CellStyleXlsx()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"Chart()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"ChartAxisOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"ChartDateOptions(String, String, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"chartExample(String)","u":"chartExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"ChartOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"ChartTextStyle(Boolean, Boolean, String, String)","u":"%3Cinit%3E(java.lang.Boolean,java.lang.Boolean,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"CloudAccessToken()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"Code(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"ColumnChart(String, ChartOptions, ColumnSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnSeries","l":"ColumnSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedPercentSeries","l":"ColumnStackedPercentSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedSeries","l":"ColumnStackedSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"CombinedChart(String, ChartOptions, Chart[], Chart[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Charts.Chart[],com.cloudofficeprint.RenderElements.Charts.Charts.Chart[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"combinedChartExample(String)","u":"combinedChartExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"Command(String, JsonObject)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"Commands()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"COPChart(String, JsonArray, HashMap, String, String, String, String, String, COPChartDateOptions)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray,java.util.HashMap,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"COPChartDateOptions(String, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"COPException","l":"COPException(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"COPPDFTextAndImageExample(String)","u":"COPPDFTextAndImageExample(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"CsvOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"D3Code(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"DoughnutChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint","c":"Response","l":"downloadLocally(String)","u":"downloadLocally(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"EmailQRCode(String, String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"EventQRCode(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"Examples()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"execute()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"ExternalResource(String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"FootNote(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"Formula(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"Freeze(String, boolean)","u":"%3Cinit%3E(java.lang.String,boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"Freeze(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"FTPToken(String, Boolean, int, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.Boolean,int,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"GeolocationQRCode(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getAccessToken()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getAltitude()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getAltText()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getAPIKey()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getAppendFiles()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getAppendPerPage()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getArgs()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getAuth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackGroundImage()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackgroundImageAlpha()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getBarSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getBarStackedPercentSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getBarStackedSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBcc()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getBirthday()"},{"p":"com.cloudofficeprint","c":"Response","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getBooleanValue()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBorder()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottom()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottomColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonal()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalDirection()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeft()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeftColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRightColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTop()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTopColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getCc()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellBackground()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellHidden()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellLocked()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getCellStyle()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getCharacterSet()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getCharts()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getClose()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getCode()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getColors()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getColumns()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getColumnStackedPercentageSeries()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getCommand()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCommands()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactPrimary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactSecondary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactTertiary()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getConverter()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getCopChartDateOptions()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getCopies()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getCopRemoteDebug()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCOPVersionOnServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getCsvOptions()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getData()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getData()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getDataSource()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getDepth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getDotScale()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getEncoding()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getEncryption()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getEndDate()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getEndpoint()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getEvenPage()"},{"p":"com.cloudofficeprint","c":"Response","l":"getExt()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getExtension(String)","u":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getExtension(String)","u":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getExternalResource()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getExtraOptions()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getFieldSeparator()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getFileBase64()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getFileName()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getFiletype()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getFirstName()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontBold()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontItalic()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontStrike()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSubscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSuperscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getFormatCode()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getFormData()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getGrid()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getHeaders()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getHeightLogo()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getHigh()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getHighlightColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getHost()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getHTML()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getIdentifier()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getIdentifyFormFields()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getImage()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getImages()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getItalic()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJobName()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getJson()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJsonArray()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPost()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPre()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getKeyID()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLandscape()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getLandscape()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendPosition()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getLineseries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineThickness()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getLinkUrl()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getLocation()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLockForm()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getLoggingInfo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogoBackGroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getLongitude()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getLow()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMax()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMerge()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMergeMakingEven()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getMessageForSupport()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getMethod()"},{"p":"com.cloudofficeprint","c":"Response","l":"getMimetype()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getMimeType()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimeType(String)","u":"getMimeType(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimetypeFromContentType(String)","u":"getMimetypeFromContentType(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getMimeTypesSupported()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMin()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getModifiedChartDicts()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getModifyPassword()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNickname()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNotes()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOfficeToPdfVersion()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getOpen()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getOptions()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getOrientation()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getOutput()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOutputMimeTypesSupported(String)","u":"getOutputMimeTypesSupported(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageFormat()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageHeight()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageMargin()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getPageNumber()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageWidth()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPassword()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getPassword()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPassword()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPasswordProtectionFlag()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getPath()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getPDFOptions()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTRColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPort()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getPosition()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostConversion()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostMerge()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcess()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessDeleteDelay()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessReturn()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTRColor()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPreConversion()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getPrependFiles()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrependMimeTypesSupported()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrinter()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyIP()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyPort()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getQrErrorCorrectionLevel()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getQuery()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZone()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZoneColor()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getReadPassword()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getRemoveLastPage()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getRequester()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getResponse()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getResponseCode()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getReturnOutput()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getRoundedCorners()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getRows()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getSecondaryCharts()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getSecretKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getSeparator()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getSeries()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getServerDirectory()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getService()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getSheetNames()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowCategoryName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowDataLabels()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegend()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegendKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowPercentage()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowSeriesName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowValue()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSignCertificate()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSignCertificatePassword()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getSizes()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSmooth()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getSofficeVersionServer()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSplit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getStackedColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getStartDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getStrikethrough()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getSubject()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getSubTemplates()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbol()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbolSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTabLeader()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTargetUrl()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getTemplate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getText()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getTextDelimiter()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextHAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTexts()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextVAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingHColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingVColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getToken()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTransparency()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTransparency()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getURID()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getUrl()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUrl()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getURL()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getUserMessage()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getUsername()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUsername()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getValue()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValues()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValuesStyle()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getVersion()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getVolume()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermark()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkColor()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkFont()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkFontSize()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getWidthLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getWifiHidden()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWrapText()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getX2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getXAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getY2AxisOptions()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getY2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getYAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYTitle()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"GraphQLResource(String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"HTML(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"HTMLResource(String, Boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"HyperLink(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"Image()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageUrl","l":"ImageUrl(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"InlineDataLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isIppPrinterReachable()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isReachable()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isVerbose()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"Labels(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"LineChart(String, ChartOptions, LineSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.LineSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"LineSeries(String, String[], String[], String, Boolean, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localJson(String)","u":"localJson(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplate(String)","u":"localTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplateAsync(String)","u":"localTemplateAsync(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, RenderElement[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"loopExample(String)","u":"loopExample(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"Main()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"main(String, String)","u":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"main(String, String)","u":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"makeCollectionFromJson(String, JsonObject)","u":"makeCollectionFromJson(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"MarkDownContent(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"MECardQRCode(String, String, String, String, String, String, String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"Mimetype()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"MultipleRequestMergeExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"OAuth2Token(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"OrderConfirmationExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"Output(String, String, String, Boolean, CloudAccessToken, String, PDFOptions, CsvOptions)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.Boolean,com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken,java.lang.String,com.cloudofficeprint.Output.PDFOptions,com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken,java.lang.String,com.cloudofficeprint.Output.PDFOptions,com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"PageBreak(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"PDFFormData(HashMap)","u":"%3Cinit%3E(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer, String)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"PDFImages(PDFImage[])","u":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"PDFInsertObject(Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"PDFOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"PDFSignatureExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"PDFText(Integer, Integer, Integer, String)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"PDFTexts(PDFText[])","u":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"Pie3DChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"PieChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"PieSeries(String, String[], String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"prependAppendSubTemplatesExample(String)","u":"prependAppendSubTemplatesExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"Printer(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"Printer(String, String, String, String, boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,boolean)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(ExternalResource, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","u":"%3Cinit%3E(com.cloudofficeprint.Resources.ExternalResource,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(Hashtable, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","u":"%3Cinit%3E(java.util.Hashtable,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"QRCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"qrCodeExample(String)","u":"qrCodeExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"RadarChart(String, ChartOptions, RadarSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"RadarSeries","l":"RadarSeries(String, String[], String[], String, Boolean, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"Raw(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"RawJsonArray(String, JsonArray)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"readJson(String)","u":"readJson(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeDataLabels()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElement(RenderElement)","u":"removeElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElementByName(String)","u":"removeElementByName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeLegend()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"RenderElement()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"replaceKeyRecursive(JsonObject, String, String)","u":"replaceKeyRecursive(com.google.gson.JsonObject,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"Resource()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"Response","l":"Response(String, String, byte[])","u":"%3Cinit%3E(java.lang.String,java.lang.String,byte[])"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"RESTResource(String, String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"RightToLeft(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"run()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"ScatterChart(String, ChartOptions, ScatterSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ScatterSeries","l":"ScatterSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendGETRequest(String)","u":"sendGETRequest(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendPOSTRequest(JsonObject)","u":"sendPOSTRequest(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String, String, Printer, Commands, JsonObject, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.Server.Printer,com.cloudofficeprint.Server.Commands,com.google.gson.JsonObject,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"ServerResource(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setAccessToken(CloudAccessToken)","u":"setAccessToken(com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setAltitude(String)","u":"setAltitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setAltText(String)","u":"setAltText(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setAPIKey(String)","u":"setAPIKey(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setAppendFiles(Resource[])","u":"setAppendFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setAppendPerPage(Boolean)","u":"setAppendPerPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setArgs(JsonObject)","u":"setArgs(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setAuth(String)","u":"setAuth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColor(Boolean)","u":"setAutoColor(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorDark(String)","u":"setAutoColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorLight(String)","u":"setAutoColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImage(String)","u":"setBackGroundImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackgroundImageAlpha(Double)","u":"setBackgroundImageAlpha(java.lang.Double)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImageFromLocalFile(String)","u":"setBackGroundImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundOpacity(Integer)","u":"setBackgroundOpacity(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"setBarSeries(ArrayList)","u":"setBarSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"setBarStackedPercentSeries(ArrayList)","u":"setBarStackedPercentSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"setBarStackedSeries(ArrayList)","u":"setBarStackedSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBcc(String)","u":"setBcc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setBirthday(String)","u":"setBirthday(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setBody(byte[])"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"setBooleanValue(boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBorder(Boolean)","u":"setBorder(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottom(String)","u":"setBorderBottom(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottomColor(String)","u":"setBorderBottomColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonal(String)","u":"setBorderDiagonal(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalColor(String)","u":"setBorderDiagonalColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalDirection(String)","u":"setBorderDiagonalDirection(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeft(String)","u":"setBorderLeft(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeftColor(String)","u":"setBorderLeftColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRight(String)","u":"setBorderRight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRightColor(String)","u":"setBorderRightColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTop(String)","u":"setBorderTop(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTopColor(String)","u":"setBorderTopColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setCc(String)","u":"setCc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellBackground(String)","u":"setCellBackground(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellHidden(Boolean)","u":"setCellHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellLocked(Boolean)","u":"setCellLocked(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"setCellStyle(CellStyle)","u":"setCellStyle(com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setCharacterSet(Integer)","u":"setCharacterSet(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setCharts(ArrayList)","u":"setCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setClose(Integer[])","u":"setClose(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setCode(String)","u":"setCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorDark(String)","u":"setColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorLight(String)","u":"setColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"setColors(String[])","u":"setColors(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setColumns(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"setColumnSeries(ArrayList)","u":"setColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"setColumnStackedPercentageSeries(ArrayList)","u":"setColumnStackedPercentageSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setCommand(String)","u":"setCommand(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setCommands(Commands)","u":"setCommands(com.cloudofficeprint.Server.Commands)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactPrimary(String)","u":"setContactPrimary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactSecondary(String)","u":"setContactSecondary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactTertiary(String)","u":"setContactTertiary(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setConverter(String)","u":"setConverter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setCopChartDateOptions(COPChartDateOptions)","u":"setCopChartDateOptions(com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setCopies(Integer)","u":"setCopies(java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setCopRemoteDebug(Boolean)","u":"setCopRemoteDebug(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setCsvOptions(CsvOptions)","u":"setCsvOptions(com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setData(Hashtable)","u":"setData(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"setData(String)","u":"setData(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String)","u":"setDataLabels(java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setDataSource(String)","u":"setDataSource(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setDateOptions(ChartDateOptions)","u":"setDateOptions(com.cloudofficeprint.RenderElements.Charts.ChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setDepth(int)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setDotScale(Integer)","u":"setDotScale(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"setElements(ArrayList)","u":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"setElements(ArrayList)","u":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setEmail(String)","u":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setEmail(String)","u":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setEncoding(String)","u":"setEncoding(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setEncryption(String)","u":"setEncryption(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setEndDate(String)","u":"setEndDate(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setEndpoint(String)","u":"setEndpoint(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setEvenPage(Boolean)","u":"setEvenPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"Response","l":"setExt(String)","u":"setExt(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setExternalResource(ExternalResource)","u":"setExternalResource(com.cloudofficeprint.Resources.ExternalResource)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setExtraOptions(String)","u":"setExtraOptions(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setFieldSeparator(String)","u":"setFieldSeparator(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileBase64(String)","u":"setFileBase64(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"setFileFromLocalFile(String)","u":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileFromLocalFile(String)","u":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setFileName(String)","u":"setFileName(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setFiletype(String)","u":"setFiletype(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setFirstName(String)","u":"setFirstName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontBold(Boolean)","u":"setFontBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontItalic(Boolean)","u":"setFontItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontSize(String)","u":"setFontSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontStrike(Boolean)","u":"setFontStrike(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSubscript(Boolean)","u":"setFontSubscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSuperscript(Boolean)","u":"setFontSuperscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontUnderline(Boolean)","u":"setFontUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setFormat(String)","u":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setFormat(String)","u":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setFormatCode(String)","u":"setFormatCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"setFormData(HashMap)","u":"setFormData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setGrid(Boolean)","u":"setGrid(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setHeaders(JsonArray)","u":"setHeaders(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setHeight(String)","u":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setHeight(String)","u":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setHeightLogo(Integer)","u":"setHeightLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setHigh(Integer[])","u":"setHigh(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setHighlightColor(String)","u":"setHighlightColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setHost(String)","u":"setHost(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setIdentifyFormFields(Boolean)","u":"setIdentifyFormFields(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImage(String)","u":"setImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImageFromLocalFile(String)","u":"setImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"setImages(PDFImage[])","u":"setImages(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setJobName(String)","u":"setJobName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"setJsonArray(JsonArray)","u":"setJsonArray(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setKeyID(String)","u":"setKeyID(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLandscape(Boolean)","u":"setLandscape(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setLastName(String)","u":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setLastName(String)","u":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setLegend(String, ChartTextStyle)","u":"setLegend(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"setLineseries(ArrayList)","u":"setLineseries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineStyle(String)","u":"setLineStyle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineThickness(String)","u":"setLineThickness(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setLinkUrl(String)","u":"setLinkUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLockForm(Boolean)","u":"setLockForm(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setLoggingInfo(JsonObject)","u":"setLoggingInfo(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogo(String)","u":"setLogo(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoBackGroundColor(String)","u":"setLogoBackGroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoFromLocalFile(String)","u":"setLogoFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setLongitude(String)","u":"setLongitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setLow(Integer[])","u":"setLow(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorGridLines(Boolean)","u":"setMajorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorUnit(Float)","u":"setMajorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMax(Float)","u":"setMax(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxHeight(Integer)","u":"setMaxHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxWidth(Integer)","u":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setMaxWidth(Integer)","u":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMerge(Boolean)","u":"setMerge(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMergeMakingEven(Boolean)","u":"setMergeMakingEven(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setMethod(String)","u":"setMethod(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setMimetype(String)","u":"setMimetype(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setMimeType(String)","u":"setMimeType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMin(Float)","u":"setMin(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorGridLines(Boolean)","u":"setMinorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorUnit(Float)","u":"setMinorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setModifyPassword(String)","u":"setModifyPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNickname(String)","u":"setNickname(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNotes(String)","u":"setNotes(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setOpacity(Float)","u":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setOpacity(Float)","u":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setOpen(Integer[])","u":"setOpen(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"setOptions(ChartOptions)","u":"setOptions(com.cloudofficeprint.RenderElements.Charts.ChartOptions)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setOrientation(String)","u":"setOrientation(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setOutput(Output)","u":"setOutput(com.cloudofficeprint.Output.Output)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingHeight(Integer)","u":"setPaddingHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingWidth(Integer)","u":"setPaddingWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageFormat(String)","u":"setPageFormat(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageHeight(String)","u":"setPageHeight(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setPageNumber(Integer)","u":"setPageNumber(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageWidth(String)","u":"setPageWidth(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPasswordProtectionFlag(Integer)","u":"setPasswordProtectionFlag(java.lang.Integer)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"setPath(String)","u":"setPath(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setPDFOptions(PDFOptions)","u":"setPDFOptions(com.cloudofficeprint.Output.PDFOptions)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiBLColor(String)","u":"setPiBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiColor(String)","u":"setPiColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTLColor(String)","u":"setPiTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTRColor(String)","u":"setPiTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoBLColor(String)","u":"setPoBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoColor(String)","u":"setPoColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPort(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostConversion(Command)","u":"setPostConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostMerge(Command)","u":"setPostMerge(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcess(Command)","u":"setPostProcess(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessDeleteDelay(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessReturn(Boolean)","u":"setPostProcessReturn(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTLColor(String)","u":"setPoTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTRColor(String)","u":"setPoTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPreConversion(Command)","u":"setPreConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setPrependFiles(Resource[])","u":"setPrependFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPrinter(Printer)","u":"setPrinter(com.cloudofficeprint.Server.Printer)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyIP(String)","u":"setProxyIP(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyPort(Integer)","u":"setProxyPort(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setQrErrorCorrectionLevel(String)","u":"setQrErrorCorrectionLevel(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"setQuery(String)","u":"setQuery(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZone(Integer)","u":"setQuietZone(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZoneColor(String)","u":"setQuietZoneColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setReadPassword(String)","u":"setReadPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setRemoveLastPage(Boolean)","u":"setRemoveLastPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setRequester(String)","u":"setRequester(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setResponse(Response)","u":"setResponse(com.cloudofficeprint.Response)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setReturnOutput(boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setRoundedCorners(Boolean)","u":"setRoundedCorners(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setRows(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setSecondaryCharts(ArrayList)","u":"setSecondaryCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setSecretKey(String)","u":"setSecretKey(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setServer(Server)","u":"setServer(com.cloudofficeprint.Server.Server)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setServerDirectory(String)","u":"setServerDirectory(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"setService(String)","u":"setService(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"setSheetNames(ArrayList)","u":"setSheetNames(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSignCertificate(String)","u":"setSignCertificate(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSignCertificatePassword(String)","u":"setSignCertificatePassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"setSizes(Integer[])","u":"setSizes(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSmooth(Boolean)","u":"setSmooth(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSplit(Boolean)","u":"setSplit(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"setStackedColumnSeries(ArrayList)","u":"setStackedColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setStartDate(String)","u":"setStartDate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setStep(Integer)","u":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setStep(Integer)","u":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setStrikethrough(Boolean)","u":"setStrikethrough(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setSubject(String)","u":"setSubject(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setSubTemplates(Hashtable)","u":"setSubTemplates(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbol(String)","u":"setSymbol(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbolSize(String)","u":"setSymbolSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setTabLeader(String)","u":"setTabLeader(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTargetUrl(String)","u":"setTargetUrl(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setTemplate(Resource)","u":"setTemplate(com.cloudofficeprint.Resources.Resource)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setText(String)","u":"setText(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setTextDelimiter(String)","u":"setTextDelimiter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextHAlignment(String)","u":"setTextHAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextRotation(Integer)","u":"setTextRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"setTexts(PDFText[])","u":"setTexts(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextVAlignment(String)","u":"setTextVAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingColor(String)","u":"setTimingColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingHColor(String)","u":"setTimingHColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingVColor(String)","u":"setTimingVColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleRotation(Integer)","u":"setTitleRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleStyle(ChartTextStyle)","u":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitleStyle(ChartTextStyle)","u":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"setToken(String)","u":"setToken(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setTransparency(String)","u":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTransparency(String)","u":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setUnderline(Boolean)","u":"setUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setUnit(String)","u":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setUnit(String)","u":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"setUrl(String)","u":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUrl(String)","u":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"setURL(String)","u":"setURL(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setValue(String)","u":"setValue(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValues(Boolean)","u":"setValues(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValuesStyle(ChartTextStyle)","u":"setValuesStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setVerbose(boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setVersion(String)","u":"setVersion(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setVolume(Integer[])","u":"setVolume(java.lang.Integer[])"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermark(String)","u":"setWatermark(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkColor(String)","u":"setWatermarkColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkFont(String)","u":"setWatermarkFont(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkFontSize(Integer)","u":"setWatermarkFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkOpacity(Integer)","u":"setWatermarkOpacity(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setWebsite(String)","u":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setWebsite(String)","u":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setWidthLogo(Integer)","u":"setWidthLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setWifiHidden(Boolean)","u":"setWifiHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWrapText(String)","u":"setWrapText(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setX(Integer)","u":"setX(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setX(String[])","u":"setX(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setX2Title(String)","u":"setX2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setXAxisOptions(ChartAxisOptions)","u":"setXAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXData(JsonArray)","u":"setXData(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXTitle(String)","u":"setXTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setY(Integer)","u":"setY(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setY(String[])","u":"setY(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setY2AxisOptions(ChartAxisOptions)","u":"setY2AxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setY2Title(String)","u":"setY2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setYAxisOptions(ChartAxisOptions)","u":"setYAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYData(HashMap)","u":"setYData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYTitle(String)","u":"setYTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, HashMap)","u":"%3Cinit%3E(java.lang.String,java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, RenderElement[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"shortenDescription(String)","u":"shortenDescription(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"signPDF(String)","u":"signPDF(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"SlideLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"SMSQRCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"SolarSystemExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"SpaceXExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"StockChart(String, ChartOptions, StockSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.StockSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"StyledProperty(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"TableCell(String, String, CellStyle)","u":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"TableOfContents(String, String, int, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"TableRowLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"TelephoneNumberQRCode(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"TextBox(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"COPException","l":"toString()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"updateJson1WithJson2(JsonObject, JsonObject)","u":"updateJson1WithJson2(com.google.gson.JsonObject,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"URLQRCode(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"URLResource(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"VCardQRCode(String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"Watermark(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"waterMarkAndStyledProperty(String)","u":"waterMarkAndStyledProperty(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"WifiQRCode(String, String, String, String, Boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"withoutTemplate(String)","u":"withoutTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"XYSeries()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addAllRenderElements(ElementCollection)","u":"addAllRenderElements(com.cloudofficeprint.RenderElements.ElementCollection)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addElement(RenderElement)","u":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"addElement(RenderElement)","u":"addElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"addFromDict(Hashtable)","u":"addFromDict(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"AreaChart(String, ChartOptions, AreaSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.AreaSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"AreaSeries(String, String[], String[], String, Float)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Float)"},{"p":"com.cloudofficeprint","c":"Response","l":"asString()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"AWSToken(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"BarChart(String, ChartOptions, BarSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"BarCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarSeries","l":"BarSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"BarStackedChart(String, ChartOptions, BarStackedSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"BarStackedPercentChart(String, ChartOptions, BarStackedPercentSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BarStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedPercentSeries","l":"BarStackedPercentSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BarStackedSeries","l":"BarStackedSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"Base64Resource(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"BubbleChart(String, ChartOptions, BubbleSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.BubbleSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"BubbleSeries(String, String[], String[], Integer[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"CellSpan(String, String, int, int)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"CellStyle()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"CellStyleDocxPpt(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"CellStyleXlsx()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"Chart()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"ChartAxisOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"ChartDateOptions(String, String, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"chartExample(String)","u":"chartExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"ChartOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"ChartTextStyle(Boolean, Boolean, String, String)","u":"%3Cinit%3E(java.lang.Boolean,java.lang.Boolean,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"CloudAccessToken()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"Code(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"ColumnChart(String, ChartOptions, ColumnSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnSeries","l":"ColumnSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"ColumnStackedChart(String, ChartOptions, ColumnStackedSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"ColumnStackedPercentChart(String, ChartOptions, ColumnStackedPercentSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ColumnStackedPercentSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedPercentSeries","l":"ColumnStackedPercentSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ColumnStackedSeries","l":"ColumnStackedSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"CombinedChart(String, ChartOptions, Chart[], Chart[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Charts.Chart[],com.cloudofficeprint.RenderElements.Charts.Charts.Chart[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"combinedChartExample(String)","u":"combinedChartExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"Command(String, JsonObject)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"Commands()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"COPChart(String, JsonArray, HashMap, String, String, String, String, String, COPChartDateOptions)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray,java.util.HashMap,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"COPChartDateOptions(String, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"COPException","l":"COPException(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"COPPDFTextAndImageExample(String)","u":"COPPDFTextAndImageExample(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"CsvOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"D3Code(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"DoughnutChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint","c":"Response","l":"downloadLocally(String)","u":"downloadLocally(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"ElementCollection(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"EmailQRCode(String, String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"EventQRCode(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"Examples()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"execute()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"ExternalResource(String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"FootNote(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"Formula(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"Freeze(String, boolean)","u":"%3Cinit%3E(java.lang.String,boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"Freeze(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"FTPToken(String, Boolean, int, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.Boolean,int,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"GeolocationQRCode(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getAccessToken()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getAltitude()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getAltText()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getAPIKey()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getAppendFiles()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getAppendPerPage()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getArgs()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getAuth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getAutoColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getBackgroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackGroundImage()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getBackgroundImageAlpha()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBackgroundOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getBarSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getBarStackedPercentSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getBarStackedSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBcc()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getBirthday()"},{"p":"com.cloudofficeprint","c":"Response","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getBody()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getBody()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getBold()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getBooleanValue()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getBorder()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottom()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderBottomColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonal()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderDiagonalDirection()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeft()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderLeftColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRight()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderRightColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTop()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getBorderTopColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getCc()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellBackground()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellHidden()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getCellLocked()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getCellStyle()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getCharacterSet()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getCharts()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getClose()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getCode()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorDark()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getColorLight()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getColors()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getColumns()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getColumnStackedPercentageSeries()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getCommand()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCommands()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactPrimary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactSecondary()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getContactTertiary()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getConverter()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getCopChartDateOptions()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getCopies()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getCopRemoteDebug()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getCOPVersionOnServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getCsvOptions()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getData()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getData()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getDataSource()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getDepth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getDotScale()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getElements()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getEmail()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getEncoding()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getEncryption()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getEndDate()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getEndpoint()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getEvenPage()"},{"p":"com.cloudofficeprint","c":"Response","l":"getExt()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getExtension(String)","u":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getExtension(String)","u":"getExtension(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getExternalResource()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getExtraOptions()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getFieldSeparator()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getFileBase64()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getFileName()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getFiletype()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getFirstName()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFont()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontBold()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontColor()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontItalic()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getFontSize()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontStrike()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSubscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontSuperscript()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getFontUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getFormat()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getFormatCode()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getFormData()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getGrid()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getHeaders()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getHeightLogo()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getHigh()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getHighlightColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getHost()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getHTML()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getIdentifier()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getIdentifier()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getIdentifyFormFields()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getImage()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getImages()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getItalic()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getItalic()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJobName()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getJson()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getJson()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getJSON()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getJSON()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Insert","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getJSON()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getJSON()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getJsonArray()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getJSONData()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPost()"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"getJSONForPre()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForSecondaryFile()"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getJSONForTemplate()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getKeyID()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLandscape()"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"getLandscape()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getLastName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendPosition()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getLegendStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"getLineseries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getLineThickness()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getLinkUrl()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getLocation()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getLockForm()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getLoggingInfo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getLogoBackGroundColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"getLongitude()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getLow()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMajorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMax()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxHeight()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getMaxWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMerge()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getMergeMakingEven()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getMessageForSupport()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getMethod()"},{"p":"com.cloudofficeprint","c":"Response","l":"getMimetype()"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"getMimeType()"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimeType(String)","u":"getMimeType(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"getMimetypeFromContentType(String)","u":"getMimetypeFromContentType(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getMimeTypesSupported()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMin()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorGridLines()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getMinorUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getModifiedChartDicts()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getModifyPassword()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getName()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNickname()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getNotes()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOfficeToPdfVersion()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"getOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getOpen()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getOptions()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getOrientation()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getOutput()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getOutputMimeTypesSupported(String)","u":"getOutputMimeTypesSupported(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingHeight()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getPaddingWidth()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageFormat()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageHeight()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageMargin()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getPageNumber()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPageWidth()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPassword()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getPassword()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPassword()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getPasswordProtectionFlag()"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"getPath()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getPDFOptions()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiColor()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"getPieSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPiTRColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoBLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoColor()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getPort()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getPosition()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostConversion()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostMerge()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcess()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessDeleteDelay()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPostProcessReturn()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTLColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getPoTRColor()"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"getPreConversion()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getPrependFiles()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrependMimeTypesSupported()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getPrinter()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyIP()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getProxyPort()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getQrErrorCorrectionLevel()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getQuery()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZone()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getQuietZoneColor()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getReadPassword()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getRemoveLastPage()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getRequester()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getResponse()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getResponseCode()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getReturnOutput()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getRoundedCorners()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getRows()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"getSecondaryCharts()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"getSecretKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getSeparator()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"getSeries()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"getSeries()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getServer()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getServerDirectory()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"getService()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getSheetNames()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowCategoryName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowDataLabels()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegend()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowLegendKey()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowPercentage()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowSeriesName()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getShowValue()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSignCertificate()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSignCertificatePassword()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"getSizes()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSmooth()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getSofficeVersionServer()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getSplit()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"getStackedColumnSeries()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"getStartDate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getStep()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getStrikethrough()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"getSubject()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getSubTemplates()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbol()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"getSymbolSize()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTabLeader()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTargetUrl()"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"getTemplate()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"FootNote","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Formula","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Insert","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"getTemplateTags()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"getText()"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"getTextDelimiter()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextHAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextRotation()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"getTexts()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"getTextVAlignment()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingHColor()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getTimingVColor()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleRotation()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getTitleStyle()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"getToken()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getTransparency()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getTransparency()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"getType()"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"getUnderline()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"getUnit()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getURID()"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"getUrl()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUrl()"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"getURL()"},{"p":"com.cloudofficeprint","c":"COPException","l":"getUserMessage()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"getUsername()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"getUsername()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"getValue()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValues()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"getValuesStyle()"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"getVersion()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"getVolume()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermark()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkColor()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkFont()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkFontSize()"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"getWatermarkOpacity()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"getWebsite()"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"getWidth()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"getWidthLogo()"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"getWifiHidden()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"getWrapText()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getX()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getX2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getXAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getXTitle()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"getY()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getY2AxisOptions()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getY2Title()"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"getYAxis()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYData()"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"getYTitle()"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"GraphQLResource(String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HTML","l":"HTML(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"HTMLResource","l":"HTMLResource(String, Boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"HyperLink(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"Image()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"ImageBase64(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageUrl","l":"ImageUrl(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"InlineDataLoop","l":"InlineDataLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements","c":"Insert","l":"Insert(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isIppPrinterReachable()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isReachable()"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"isVerbose()"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Labels","l":"Labels(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"LineChart(String, ChartOptions, LineSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.LineSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"LineSeries(String, String[], String[], String, Boolean, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localJson(String)","u":"localJson(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplate(String)","u":"localTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"localTemplateAsync(String)","u":"localTemplateAsync(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"Loop(String, RenderElement[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"loopExample(String)","u":"loopExample(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"Main()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"main(String)","u":"main(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"main(String, String)","u":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"main(String, String)","u":"main(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"Main","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"makeCollectionFromJson(String, JsonObject)","u":"makeCollectionFromJson(java.lang.String,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements","c":"MarkDownContent","l":"MarkDownContent(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"MECardQRCode(String, String, String, String, String, String, String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"Mimetype","l":"Mimetype()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.MultipleRequestMerge","c":"MultipleRequestMergeExample","l":"MultipleRequestMergeExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"OAuth2Token(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.OrderConfirmation","c":"OrderConfirmationExample","l":"OrderConfirmationExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"Output(String, String, String, Boolean, CloudAccessToken, String, PDFOptions, CsvOptions)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.Boolean,com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken,java.lang.String,com.cloudofficeprint.Output.PDFOptions,com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"Output(String, String, String, CloudAccessToken, String, PDFOptions, CsvOptions)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken,java.lang.String,com.cloudofficeprint.Output.PDFOptions,com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"PageBreak","l":"PageBreak(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"PDFFormData(HashMap)","u":"%3Cinit%3E(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"PDFImage(Integer, Integer, Integer, String)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"PDFImages(PDFImage[])","u":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"PDFInsertObject(Integer, Integer, Integer)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"PDFOptions()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.PDFSignature","c":"PDFSignatureExample","l":"PDFSignatureExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"PDFText(Integer, Integer, Integer, String)","u":"%3Cinit%3E(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"PDFTexts(PDFText[])","u":"%3Cinit%3E(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"Pie3DChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"PieChart(String, ChartOptions, PieSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.PieSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"PieSeries(String, String[], String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"prependAppendSubTemplatesExample(String)","u":"prependAppendSubTemplatesExample(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"Printer(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"Printer(String, String, String, String, boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,boolean)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(ExternalResource, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","u":"%3Cinit%3E(com.cloudofficeprint.Resources.ExternalResource,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"PrintJob(Hashtable, Server, Output, Resource, Hashtable, Resource[], Resource[], Boolean)","u":"%3Cinit%3E(java.util.Hashtable,com.cloudofficeprint.Server.Server,com.cloudofficeprint.Output.Output,com.cloudofficeprint.Resources.Resource,java.util.Hashtable,com.cloudofficeprint.Resources.Resource[],com.cloudofficeprint.Resources.Resource[],java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, int)","u":"%3Cinit%3E(java.lang.String,int)"},{"p":"com.cloudofficeprint.RenderElements","c":"Property","l":"Property(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"QRCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"qrCodeExample(String)","u":"qrCodeExample(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"RadarChart(String, ChartOptions, RadarSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"RadarSeries","l":"RadarSeries(String, String[], String[], String, Boolean, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[],java.lang.String,java.lang.Boolean,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Raw","l":"Raw(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"RawJsonArray(String, JsonArray)","u":"%3Cinit%3E(java.lang.String,com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"readJson(String)","u":"readJson(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeDataLabels()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElement(RenderElement)","u":"removeElement(com.cloudofficeprint.RenderElements.RenderElement)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"removeElementByName(String)","u":"removeElementByName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"removeLegend()"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"RenderElement()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"replaceKeyRecursive(JsonObject, String, String)","u":"replaceKeyRecursive(com.google.gson.JsonObject,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"Resource()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint","c":"Response","l":"Response(String, String, byte[])","u":"%3Cinit%3E(java.lang.String,java.lang.String,byte[])"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"RESTResource(String, String, String, String, JsonArray, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.google.gson.JsonArray,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RightToLeft","l":"RightToLeft(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"run()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"ScatterChart(String, ChartOptions, ScatterSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.ScatterSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"ScatterSeries","l":"ScatterSeries(String, String[], String[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.String[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendGETRequest(String)","u":"sendGETRequest(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"sendPOSTRequest(JsonObject)","u":"sendPOSTRequest(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"Server(String, String, Printer, Commands, JsonObject, String, Integer)","u":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.Server.Printer,com.cloudofficeprint.Server.Commands,com.google.gson.JsonObject,java.lang.String,java.lang.Integer)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"ServerResource(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setAccessToken(CloudAccessToken)","u":"setAccessToken(com.cloudofficeprint.Output.CloudAcessToken.CloudAccessToken)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setAltitude(String)","u":"setAltitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setAltText(String)","u":"setAltText(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setAPIKey(String)","u":"setAPIKey(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setAppendFiles(Resource[])","u":"setAppendFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setAppendPerPage(Boolean)","u":"setAppendPerPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setArgs(JsonObject)","u":"setArgs(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setAuth(String)","u":"setAuth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColor(Boolean)","u":"setAutoColor(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorDark(String)","u":"setAutoColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setAutoColorLight(String)","u":"setAutoColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setBackgroundColor(String)","u":"setBackgroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImage(String)","u":"setBackGroundImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackgroundImageAlpha(Double)","u":"setBackgroundImageAlpha(java.lang.Double)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setBackGroundImageFromLocalFile(String)","u":"setBackGroundImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBackgroundOpacity(Integer)","u":"setBackgroundOpacity(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarChart","l":"setBarSeries(ArrayList)","u":"setBarSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedPercentChart","l":"setBarStackedPercentSeries(ArrayList)","u":"setBarStackedPercentSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BarStackedChart","l":"setBarStackedSeries(ArrayList)","u":"setBarStackedSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBcc(String)","u":"setBcc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setBirthday(String)","u":"setBirthday(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setBody(byte[])"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setBody(String)","u":"setBody(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setBold(Boolean)","u":"setBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Freeze","l":"setBooleanValue(boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setBorder(Boolean)","u":"setBorder(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottom(String)","u":"setBorderBottom(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderBottomColor(String)","u":"setBorderBottomColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonal(String)","u":"setBorderDiagonal(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalColor(String)","u":"setBorderDiagonalColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderDiagonalDirection(String)","u":"setBorderDiagonalDirection(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeft(String)","u":"setBorderLeft(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderLeftColor(String)","u":"setBorderLeftColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRight(String)","u":"setBorderRight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderRightColor(String)","u":"setBorderRightColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTop(String)","u":"setBorderTop(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setBorderTopColor(String)","u":"setBorderTopColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setCc(String)","u":"setCc(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellBackground(String)","u":"setCellBackground(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellHidden(Boolean)","u":"setCellHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setCellLocked(Boolean)","u":"setCellLocked(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"setCellStyle(CellStyle)","u":"setCellStyle(com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setCharacterSet(Integer)","u":"setCharacterSet(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setCharts(ArrayList)","u":"setCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setClose(Integer[])","u":"setClose(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setCode(String)","u":"setCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setColor(String)","u":"setColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorDark(String)","u":"setColorDark(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setColorLight(String)","u":"setColorLight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"PieSeries","l":"setColors(String[])","u":"setColors(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setColumns(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnChart","l":"setColumnSeries(ArrayList)","u":"setColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedPercentChart","l":"setColumnStackedPercentageSeries(ArrayList)","u":"setColumnStackedPercentageSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Server","c":"Command","l":"setCommand(String)","u":"setCommand(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setCommands(Commands)","u":"setCommands(com.cloudofficeprint.Server.Commands)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactPrimary(String)","u":"setContactPrimary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactSecondary(String)","u":"setContactSecondary(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setContactTertiary(String)","u":"setContactTertiary(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setConverter(String)","u":"setConverter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setCopChartDateOptions(COPChartDateOptions)","u":"setCopChartDateOptions(com.cloudofficeprint.RenderElements.COPChartDateOptions)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setCopies(Integer)","u":"setCopies(java.lang.Integer)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setCopRemoteDebug(Boolean)","u":"setCopRemoteDebug(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setCsvOptions(CsvOptions)","u":"setCsvOptions(com.cloudofficeprint.Output.CsvOptions)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setData(Hashtable)","u":"setData(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements","c":"D3Code","l":"setData(String)","u":"setData(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setDataLabels(String, Boolean, Boolean, Boolean, Boolean, Boolean, String)","u":"setDataLabels(java.lang.String,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setDataSource(String)","u":"setDataSource(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setDateOptions(ChartDateOptions)","u":"setDateOptions(com.cloudofficeprint.RenderElements.Charts.ChartDateOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setDepth(int)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setDotScale(Integer)","u":"setDotScale(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"setElements(ArrayList)","u":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"Loop","l":"setElements(ArrayList)","u":"setElements(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setEmail(String)","u":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setEmail(String)","u":"setEmail(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setEncoding(String)","u":"setEncoding(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setEncryption(String)","u":"setEncryption(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setEndDate(String)","u":"setEndDate(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setEndpoint(String)","u":"setEndpoint(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setEvenPage(Boolean)","u":"setEvenPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint","c":"Response","l":"setExt(String)","u":"setExt(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setExternalResource(ExternalResource)","u":"setExternalResource(com.cloudofficeprint.Resources.ExternalResource)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setExtraOptions(String)","u":"setExtraOptions(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setFieldSeparator(String)","u":"setFieldSeparator(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileBase64(String)","u":"setFileBase64(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"ImageBase64","l":"setFileFromLocalFile(String)","u":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Base64Resource","l":"setFileFromLocalFile(String)","u":"setFileFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setFileName(String)","u":"setFileName(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setFiletype(String)","u":"setFiletype(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setFirstName(String)","u":"setFirstName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontBold(Boolean)","u":"setFontBold(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontColor(String)","u":"setFontColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontItalic(Boolean)","u":"setFontItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setFontSize(Integer)","u":"setFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setFontSize(String)","u":"setFontSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontStrike(Boolean)","u":"setFontStrike(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSubscript(Boolean)","u":"setFontSubscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontSuperscript(Boolean)","u":"setFontSuperscript(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setFontUnderline(Boolean)","u":"setFontUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setFormat(String)","u":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setFormat(String)","u":"setFormat(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setFormatCode(String)","u":"setFormatCode(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFFormData","l":"setFormData(HashMap)","u":"setFormData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setGrid(Boolean)","u":"setGrid(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"ExternalResource","l":"setHeaders(JsonArray)","u":"setHeaders(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setHeight(Integer)","u":"setHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setHeight(String)","u":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setHeight(String)","u":"setHeight(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setHeightLogo(Integer)","u":"setHeightLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setHigh(Integer[])","u":"setHigh(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setHighlightColor(String)","u":"setHighlightColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setHost(String)","u":"setHost(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setIdentifyFormFields(Boolean)","u":"setIdentifyFormFields(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImage(String)","u":"setImage(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setImageFromLocalFile(String)","u":"setImageFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImages","l":"setImages(PDFImage[])","u":"setImages(com.cloudofficeprint.RenderElements.PDF.PDFImage[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartTextStyle","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setItalic(Boolean)","u":"setItalic(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setJobName(String)","u":"setJobName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RawJsonArray","l":"setJsonArray(JsonArray)","u":"setJsonArray(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setKeyID(String)","u":"setKeyID(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLandscape(Boolean)","u":"setLandscape(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setLastName(String)","u":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setLastName(String)","u":"setLastName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setLegend(String, ChartTextStyle)","u":"setLegend(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"LineChart","l":"setLineseries(ArrayList)","u":"setLineseries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineStyle(String)","u":"setLineStyle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setLineThickness(String)","u":"setLineThickness(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setLinkUrl(String)","u":"setLinkUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setLocation(String)","u":"setLocation(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setLockForm(Boolean)","u":"setLockForm(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setLoggingInfo(JsonObject)","u":"setLoggingInfo(com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogo(String)","u":"setLogo(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoBackGroundColor(String)","u":"setLogoBackGroundColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setLogoFromLocalFile(String)","u":"setLogoFromLocalFile(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"GeolocationQRCode","l":"setLongitude(String)","u":"setLongitude(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setLow(Integer[])","u":"setLow(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorGridLines(Boolean)","u":"setMajorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMajorUnit(Float)","u":"setMajorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMax(Float)","u":"setMax(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxHeight(Integer)","u":"setMaxHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setMaxWidth(Integer)","u":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setMaxWidth(Integer)","u":"setMaxWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMerge(Boolean)","u":"setMerge(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setMergeMakingEven(Boolean)","u":"setMergeMakingEven(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Resources","c":"RESTResource","l":"setMethod(String)","u":"setMethod(java.lang.String)"},{"p":"com.cloudofficeprint","c":"Response","l":"setMimetype(String)","u":"setMimetype(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"Resource","l":"setMimeType(String)","u":"setMimeType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMin(Float)","u":"setMin(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorGridLines(Boolean)","u":"setMinorGridLines(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setMinorUnit(Float)","u":"setMinorUnit(java.lang.Float)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setModifyPassword(String)","u":"setModifyPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setName(String)","u":"setName(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNickname(String)","u":"setNickname(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setNotes(String)","u":"setNotes(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setOpacity(Float)","u":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"AreaSeries","l":"setOpacity(Float)","u":"setOpacity(java.lang.Float)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setOpen(Integer[])","u":"setOpen(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Chart","l":"setOptions(ChartOptions)","u":"setOptions(com.cloudofficeprint.RenderElements.Charts.ChartOptions)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setOrientation(String)","u":"setOrientation(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setOutput(Output)","u":"setOutput(com.cloudofficeprint.Output.Output)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingHeight(Integer)","u":"setPaddingHeight(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setPaddingWidth(Integer)","u":"setPaddingWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageFormat(String)","u":"setPageFormat(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageHeight(String)","u":"setPageHeight(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageMargin(int[])"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setPageNumber(Integer)","u":"setPageNumber(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPageWidth(String)","u":"setPageWidth(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPassword(String)","u":"setPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setPasswordProtectionFlag(Integer)","u":"setPasswordProtectionFlag(java.lang.Integer)"},{"p":"com.cloudofficeprint.Resources","c":"ServerResource","l":"setPath(String)","u":"setPath(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setPDFOptions(PDFOptions)","u":"setPDFOptions(com.cloudofficeprint.Output.PDFOptions)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiBLColor(String)","u":"setPiBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiColor(String)","u":"setPiColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"DoughnutChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"Pie3DChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"PieChart","l":"setPieSeries(ArrayList)","u":"setPieSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTLColor(String)","u":"setPiTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPiTRColor(String)","u":"setPiTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoBLColor(String)","u":"setPoBLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoColor(String)","u":"setPoColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setPort(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostConversion(Command)","u":"setPostConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostMerge(Command)","u":"setPostMerge(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcess(Command)","u":"setPostProcess(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessDeleteDelay(int)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPostProcessReturn(Boolean)","u":"setPostProcessReturn(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTLColor(String)","u":"setPoTLColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setPoTRColor(String)","u":"setPoTRColor(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Commands","l":"setPreConversion(Command)","u":"setPreConversion(com.cloudofficeprint.Server.Command)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setPrependFiles(Resource[])","u":"setPrependFiles(com.cloudofficeprint.Resources.Resource[])"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setPrinter(Printer)","u":"setPrinter(com.cloudofficeprint.Server.Printer)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyIP(String)","u":"setProxyIP(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setProxyPort(Integer)","u":"setProxyPort(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setQrErrorCorrectionLevel(String)","u":"setQrErrorCorrectionLevel(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"GraphQLResource","l":"setQuery(String)","u":"setQuery(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZone(Integer)","u":"setQuietZone(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setQuietZoneColor(String)","u":"setQuietZoneColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setReadPassword(String)","u":"setReadPassword(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setRemoveLastPage(Boolean)","u":"setRemoveLastPage(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setRequester(String)","u":"setRequester(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setResponse(Response)","u":"setResponse(com.cloudofficeprint.Response)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setReturnOutput(boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setRotation(Integer)","u":"setRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setRoundedCorners(Boolean)","u":"setRoundedCorners(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"CellSpan","l":"setRows(int)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"CombinedChart","l":"setSecondaryCharts(ArrayList)","u":"setSecondaryCharts(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"AWSToken","l":"setSecretKey(String)","u":"setSecretKey(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"AreaChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"BubbleChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"RadarChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ScatterChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"setSeries(ArrayList)","u":"setSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setServer(Server)","u":"setServer(com.cloudofficeprint.Server.Server)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setServerDirectory(String)","u":"setServerDirectory(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"CloudAccessToken","l":"setService(String)","u":"setService(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"setSheetNames(ArrayList)","u":"setSheetNames(java.util.ArrayList)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSignCertificate(String)","u":"setSignCertificate(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSignCertificatePassword(String)","u":"setSignCertificatePassword(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"BubbleSeries","l":"setSizes(Integer[])","u":"setSizes(java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSmooth(Boolean)","u":"setSmooth(java.lang.Boolean)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setSplit(Boolean)","u":"setSplit(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"ColumnStackedChart","l":"setStackedColumnSeries(ArrayList)","u":"setStackedColumnSeries(java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EventQRCode","l":"setStartDate(String)","u":"setStartDate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setStep(Integer)","u":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setStep(Integer)","u":"setStep(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setStrikethrough(Boolean)","u":"setStrikethrough(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"EmailQRCode","l":"setSubject(String)","u":"setSubject(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setSubTemplates(Hashtable)","u":"setSubTemplates(java.util.Hashtable)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbol(String)","u":"setSymbol(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"LineSeries","l":"setSymbolSize(String)","u":"setSymbolSize(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"setTabLeader(String)","u":"setTabLeader(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTargetUrl(String)","u":"setTargetUrl(java.lang.String)"},{"p":"com.cloudofficeprint","c":"PrintJob","l":"setTemplate(Resource)","u":"setTemplate(com.cloudofficeprint.Resources.Resource)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFText","l":"setText(String)","u":"setText(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"CsvOptions","l":"setTextDelimiter(String)","u":"setTextDelimiter(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextHAlignment(String)","u":"setTextHAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextRotation(Integer)","u":"setTextRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFTexts","l":"setTexts(PDFText[])","u":"setTexts(com.cloudofficeprint.RenderElements.PDF.PDFText[])"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleXlsx","l":"setTextVAlignment(String)","u":"setTextVAlignment(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingColor(String)","u":"setTimingColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingHColor(String)","u":"setTimingHColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setTimingVColor(String)","u":"setTimingVColor(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleRotation(Integer)","u":"setTitleRotation(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setTitleStyle(ChartTextStyle)","u":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setTitleStyle(ChartTextStyle)","u":"setTitleStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"OAuth2Token","l":"setToken(String)","u":"setToken(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setTransparency(String)","u":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setTransparency(String)","u":"setTransparency(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"Output","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"Code","l":"setType(String)","u":"setType(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"setUnderline(Boolean)","u":"setUnderline(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChartDateOptions","l":"setUnit(String)","u":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartDateOptions","l":"setUnit(String)","u":"setUnit(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"HyperLink","l":"setUrl(String)","u":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUrl(String)","u":"setUrl(java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"setURL(String)","u":"setURL(java.lang.String)"},{"p":"com.cloudofficeprint.Output.CloudAcessToken","c":"FTPToken","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setUsername(String)","u":"setUsername(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"RenderElement","l":"setValue(String)","u":"setValue(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValues(Boolean)","u":"setValues(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartAxisOptions","l":"setValuesStyle(ChartTextStyle)","u":"setValuesStyle(com.cloudofficeprint.RenderElements.Charts.ChartTextStyle)"},{"p":"com.cloudofficeprint.Server","c":"Server","l":"setVerbose(boolean)"},{"p":"com.cloudofficeprint.Server","c":"Printer","l":"setVersion(String)","u":"setVersion(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"setVolume(Integer[])","u":"setVolume(java.lang.Integer[])"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermark(String)","u":"setWatermark(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkColor(String)","u":"setWatermarkColor(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkFont(String)","u":"setWatermarkFont(java.lang.String)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkFontSize(Integer)","u":"setWatermarkFontSize(java.lang.Integer)"},{"p":"com.cloudofficeprint.Output","c":"PDFOptions","l":"setWatermarkOpacity(Integer)","u":"setWatermarkOpacity(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"MECardQRCode","l":"setWebsite(String)","u":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"setWebsite(String)","u":"setWebsite(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"BarCode","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFImage","l":"setWidth(Integer)","u":"setWidth(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"CellStyleDocxPpt","l":"setWidth(String)","u":"setWidth(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"QRCode","l":"setWidthLogo(Integer)","u":"setWidthLogo(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"setWifiHidden(Boolean)","u":"setWifiHidden(java.lang.Boolean)"},{"p":"com.cloudofficeprint.RenderElements.Images","c":"Image","l":"setWrapText(String)","u":"setWrapText(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setX(Integer)","u":"setX(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setX(String[])","u":"setX(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setX2Title(String)","u":"setX2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setXAxisOptions(ChartAxisOptions)","u":"setXAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXData(JsonArray)","u":"setXData(com.google.gson.JsonArray)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setXTitle(String)","u":"setXTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.PDF","c":"PDFInsertObject","l":"setY(Integer)","u":"setY(java.lang.Integer)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"setY(String[])","u":"setY(java.lang.String[])"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setY2AxisOptions(ChartAxisOptions)","u":"setY2AxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setY2Title(String)","u":"setY2Title(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts","c":"ChartOptions","l":"setYAxisOptions(ChartAxisOptions)","u":"setYAxisOptions(com.cloudofficeprint.RenderElements.Charts.ChartAxisOptions)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYData(HashMap)","u":"setYData(java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements","c":"COPChart","l":"setYTitle(String)","u":"setYTitle(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, HashMap)","u":"%3Cinit%3E(java.lang.String,java.util.HashMap)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SheetLoop","l":"SheetLoop(String, RenderElement[])","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.RenderElement[])"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"shortenDescription(String)","u":"shortenDescription(java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"signPDF(String)","u":"signPDF(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"SlideLoop","l":"SlideLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"SMSQRCode","l":"SMSQRCode(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.SolarSystem","c":"SolarSystemExample","l":"SolarSystemExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.Examples.SpaceX","c":"SpaceXExample","l":"SpaceXExample()","u":"%3Cinit%3E()"},{"p":"com.cloudofficeprint.RenderElements.Charts.Charts","c":"StockChart","l":"StockChart(String, ChartOptions, StockSeries...)","u":"%3Cinit%3E(java.lang.String,com.cloudofficeprint.RenderElements.Charts.ChartOptions,com.cloudofficeprint.RenderElements.Charts.Series.StockSeries...)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"StockSeries","l":"StockSeries(String, String[], Integer[], Integer[], Integer[], Integer[], Integer[])","u":"%3Cinit%3E(java.lang.String,java.lang.String[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[],java.lang.Integer[])"},{"p":"com.cloudofficeprint.RenderElements","c":"StyledProperty","l":"StyledProperty(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Cells","c":"TableCell","l":"TableCell(String, String, CellStyle)","u":"%3Cinit%3E(java.lang.String,java.lang.String,com.cloudofficeprint.RenderElements.Cells.CellStyle)"},{"p":"com.cloudofficeprint.RenderElements","c":"TableOfContents","l":"TableOfContents(String, String, int, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Loops","c":"TableRowLoop","l":"TableRowLoop(String, ArrayList)","u":"%3Cinit%3E(java.lang.String,java.util.ArrayList)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"TelephoneNumberQRCode","l":"TelephoneNumberQRCode(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"TextBox","l":"TextBox(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint","c":"COPException","l":"toString()"},{"p":"com.cloudofficeprint.RenderElements","c":"ElementCollection","l":"updateJson1WithJson2(JsonObject, JsonObject)","u":"updateJson1WithJson2(com.google.gson.JsonObject,com.google.gson.JsonObject)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"URLQRCode","l":"URLQRCode(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Resources","c":"URLResource","l":"URLResource(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"VCardQRCode","l":"VCardQRCode(String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements","c":"Watermark","l":"Watermark(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"waterMarkAndStyledProperty(String)","u":"waterMarkAndStyledProperty(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Codes","c":"WifiQRCode","l":"WifiQRCode(String, String, String, String, Boolean)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.Boolean)"},{"p":"com.cloudofficeprint.Examples.GeneralExamples","c":"Examples","l":"withoutTemplate(String)","u":"withoutTemplate(java.lang.String)"},{"p":"com.cloudofficeprint.RenderElements.Charts.Series","c":"XYSeries","l":"XYSeries()","u":"%3Cinit%3E()"}];updateSearchResults(); \ No newline at end of file diff --git a/cloudofficeprint/build/docs/javadoc/overview-tree.html b/cloudofficeprint/build/docs/javadoc/overview-tree.html index 41d366ce..8e510ccb 100644 --- a/cloudofficeprint/build/docs/javadoc/overview-tree.html +++ b/cloudofficeprint/build/docs/javadoc/overview-tree.html @@ -178,6 +178,7 @@

    Class Hierarchy

  • com.cloudofficeprint.RenderElements.Images.ImageUrl
  • +
  • com.cloudofficeprint.RenderElements.Insert
  • com.cloudofficeprint.RenderElements.Loops.Loop
  • Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.CodesTests.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.CodesTests.html index fb42ee0f..4830a84b 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.CodesTests.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.CodesTests.html @@ -41,7 +41,7 @@

    CodesTests

    -
    0.018s
    +
    0.032s

    duration

    @@ -76,17 +76,17 @@

    Tests

    QREmailTest() -0.001s +0.002s passed QREventTest() -0.001s +0.004s passed QRGeoTest() -0.002s +0.005s passed @@ -96,37 +96,37 @@

    Tests

    QROptionsTest() -0.004s +0.003s passed QRSMSTest() -0.001s +0.002s passed QRTelephoneTest() -0.001s +0.002s passed QRURLTest() -0s +0.002s passed QRVCardTest() -0.001s +0.002s passed QRWifiTest() -0.001s +0.003s passed barCodeTest() -0.003s +0.004s passed @@ -139,7 +139,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ConfigTests.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ConfigTests.html index a1aa6b07..a6322d7f 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ConfigTests.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ConfigTests.html @@ -41,7 +41,7 @@

    ConfigTests

    -
    0.005s
    +
    0.019s

    duration

    @@ -76,27 +76,27 @@

    Tests

    testCloudAccessTokens() -0.001s +0.004s passed testCommands() -0.001s +0.004s passed testCsvOptions() -0.001s +0.004s passed testPdfOptions() -0.001s +0.003s passed testPrinter() -0.001s +0.004s passed @@ -109,7 +109,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ImagesTests.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ImagesTests.html index c23d9209..b661a02d 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ImagesTests.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ImagesTests.html @@ -41,7 +41,7 @@

    ImagesTests

    -
    0.002s
    +
    0.004s

    duration

    @@ -76,12 +76,12 @@

    Tests

    imageBase64() -0.001s +0.002s passed imageURL() -0.001s +0.002s passed @@ -94,7 +94,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.LoopsTests.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.LoopsTests.html index 26b9e06e..f6a767cc 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.LoopsTests.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.LoopsTests.html @@ -41,7 +41,7 @@

    LoopsTests

    -
    0.025s
    +
    0.006s

    duration

    @@ -76,12 +76,12 @@

    Tests

    forEach() -0.024s +0.003s passed testForEachSheet() -0.001s +0.003s passed @@ -94,7 +94,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PDFTests.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PDFTests.html index 2c07d8ab..67706a26 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PDFTests.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PDFTests.html @@ -41,7 +41,7 @@

    PDFTests

    -
    0.002s
    +
    0.010s

    duration

    @@ -76,17 +76,17 @@

    Tests

    COPPDFForms() -0s +0.003s passed COPPDFImagesTest() -0.001s +0.004s passed COPPDFTextTest() -0.001s +0.003s passed @@ -99,7 +99,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PrintJobTest.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PrintJobTest.html index a9a33672..ef444859 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PrintJobTest.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.PrintJobTest.html @@ -41,7 +41,7 @@

    PrintJobTest

    -
    0.005s
    +
    0.022s

    duration

    @@ -76,7 +76,7 @@

    Tests

    prependAppendSubTemplatesTest() -0.005s +0.022s passed @@ -89,7 +89,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.RenderElementsTests.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.RenderElementsTests.html index b880f6ec..2b1390e7 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.RenderElementsTests.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.RenderElementsTests.html @@ -23,7 +23,7 @@

    RenderElementsTests

    -
    11
    +
    13

    tests

    @@ -41,7 +41,7 @@

    RenderElementsTests

    -
    0.028s
    +
    0.032s

    duration

    @@ -76,12 +76,12 @@

    Tests

    CellSpan() -0.001s +0.002s passed D3Code() -0.001s +0.002s passed @@ -91,7 +91,7 @@

    Tests

    cellStylePropertyDocx() -0.013s +0.004s passed @@ -101,12 +101,22 @@

    Tests

    elementCollection() -0.001s +0.002s +passed + + +freeze() +0.002s passed hyperLink() -0.001s +0.002s +passed + + +insert() +0.002s passed @@ -116,7 +126,7 @@

    Tests

    tableOfContent() -0.001s +0.005s passed @@ -126,7 +136,7 @@

    Tests

    waterMark() -0.002s +0.003s passed @@ -139,7 +149,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ResourcesTests.html b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ResourcesTests.html index 69fd0e01..2dd60250 100644 --- a/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ResourcesTests.html +++ b/cloudofficeprint/build/reports/tests/test/classes/cloudofficeprint.ResourcesTests.html @@ -41,7 +41,7 @@

    ResourcesTests

    -
    0.001s
    +
    0.009s

    duration

    @@ -76,7 +76,7 @@

    Tests

    ResourceTest() -0s +0.006s passed @@ -86,12 +86,12 @@

    Tests

    restResource() -0s +0.001s passed restResourcePrintJob() -0s +0.001s passed @@ -104,7 +104,7 @@

    Tests

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/index.html b/cloudofficeprint/build/reports/tests/test/index.html index 0bcc97fa..cdd55e70 100644 --- a/cloudofficeprint/build/reports/tests/test/index.html +++ b/cloudofficeprint/build/reports/tests/test/index.html @@ -20,7 +20,7 @@

    Test Summary

    -
    48
    +
    50

    tests

    @@ -38,7 +38,7 @@

    Test Summary

    -
    0.093s
    +
    0.264s

    duration

    @@ -82,10 +82,10 @@

    Packages

    cloudofficeprint -48 +50 0 0 -0.093s +0.264s 100% @@ -112,7 +112,7 @@

    Classes

    9 0 0 -0.007s +0.130s 100% @@ -122,7 +122,7 @@

    Classes

    11 0 0 -0.018s +0.032s 100% @@ -132,7 +132,7 @@

    Classes

    5 0 0 -0.005s +0.019s 100% @@ -142,7 +142,7 @@

    Classes

    2 0 0 -0.002s +0.004s 100% @@ -152,7 +152,7 @@

    Classes

    2 0 0 -0.025s +0.006s 100% @@ -162,7 +162,7 @@

    Classes

    3 0 0 -0.002s +0.010s 100% @@ -172,17 +172,17 @@

    Classes

    1 0 0 -0.005s +0.022s 100% cloudofficeprint.RenderElementsTests -11 +13 0 0 -0.028s +0.032s 100% @@ -192,7 +192,7 @@

    Classes

    4 0 0 -0.001s +0.009s 100% @@ -206,7 +206,7 @@

    Classes

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/reports/tests/test/packages/cloudofficeprint.html b/cloudofficeprint/build/reports/tests/test/packages/cloudofficeprint.html index 47b30d90..618dd660 100644 --- a/cloudofficeprint/build/reports/tests/test/packages/cloudofficeprint.html +++ b/cloudofficeprint/build/reports/tests/test/packages/cloudofficeprint.html @@ -22,7 +22,7 @@

    Package cloudofficeprint

    -
    48
    +
    50

    tests

    @@ -40,7 +40,7 @@

    Package cloudofficeprint

    -
    0.093s
    +
    0.264s

    duration

    @@ -83,7 +83,7 @@

    Classes

    9 0 0 -0.007s +0.130s 100% @@ -93,7 +93,7 @@

    Classes

    11 0 0 -0.018s +0.032s 100% @@ -103,7 +103,7 @@

    Classes

    5 0 0 -0.005s +0.019s 100% @@ -113,7 +113,7 @@

    Classes

    2 0 0 -0.002s +0.004s 100% @@ -123,7 +123,7 @@

    Classes

    2 0 0 -0.025s +0.006s 100% @@ -133,7 +133,7 @@

    Classes

    3 0 0 -0.002s +0.010s 100% @@ -143,17 +143,17 @@

    Classes

    1 0 0 -0.005s +0.022s 100% RenderElementsTests -11 +13 0 0 -0.028s +0.032s 100% @@ -163,7 +163,7 @@

    Classes

    4 0 0 -0.001s +0.009s 100% @@ -176,7 +176,7 @@

    Classes

    Generated by -Gradle 7.2 at Aug 26, 2021, 10:50:04 AM

    +Gradle 7.2 at Dec 20, 2021, 7:07:17 PM

    diff --git a/cloudofficeprint/build/resources/main/OrderConfirmation/template1.docx b/cloudofficeprint/build/resources/main/OrderConfirmation/template1.docx new file mode 100644 index 0000000000000000000000000000000000000000..6184cc9e2f4370d877a1c75866b0065b8959fe40 GIT binary patch literal 11712 zcmeHt1zQ~1)^!6R1a~J8G`KqicMSx02<{r(-LaIFx?K)Mx_CBl5-fv}Lo?!u=16}|C08+q8!GyII6aerF768Bmynxmg zwX=0Lv31s0akn>d(q(kBv3`~J44OIz01fH?zwN*H3DhTjv+ZU^6Tbr9qQ*C=8tvqj z(n3cHBr_=Q!r^&Bt34$2wLZ3ELMy34#UoggQLN}o zS#Z(K&u%dI8sk%~CNVDy4{-Wfv$wY4%W*<6lQ;Av48KEA%*f9O#MZb5#Lxm`)hIlo z*@%PgaoE0JwJpP>EK}OkC^oMH7J56es0p)@W>aoK2ymqIu zle|*i#yNrmonD^A5a0=>zEzKbJ8&j(W>=!?2ay%J8kR&>d8z2Qf37Z|R{#@zKUe)k zS%160AjSk0KeCvfSD}%+l=VanR~QY|$}heSeu+vG|D6E9x2+I_Ehktdar&(lvmkFV zJe8oCU&3k$KHeNA*Zp#IYi=PUqF}_~9LgepT@bWfWnD31@g2ajJL#+YQEJ9)6z;+% zN9bk$7WmHQ8U_G(dV&GG{hLb?#}hOiLwKeD@i;_?OX@qCSUWK>{@nl175|Iv6fjb4xTU8@@a7~J}a#cjrZ4e8_7rRl>UxirmSV5BB?#3;e@ z`0KFL;ZDp=TCvN`B18)^n$fBE6m|Jo4yvX9!w9P3m?vO z=Vhvcq4l^Ov4t~ zdlwtXy!CU!Do7r%1v8@w9mC$D1{`rRxQElZ@vxi6iTVR91pNxB!^4{W3K&|%pV~wj zlC>NBDfF91*N5y)JBJ^KoQ}mB43(`P40zAp(1t~&Ni{uQ+38bRt+3%l;%zIBRruzD zR*nUH=CG9L2jbruz7cwXi5+46FrAE(xdt6yMFbYe;0VOj*$v&%64y1&R?HyE;v3xF)zn0ln|`u$T&< zHdhPtEv*gU)M&|^8s3CX;6DZI+&(qvhFN1Ryy3T{cHAdv2(!EyP+cw|R{h~JE43qV zsZJK_;y}$HnZETMkwy+Q#nE%4L11l)ym6j|{yK|m8v*-VF69YW)HeuZsE)mDcyiaX zcobksy>LShZI(G#S{>yhl;;*R^gN}WUF7E4(G((p+*|pJL(LOH&==EJ6Q;%M)mbIu z_ND3$L^HgcJDPouYFp0@j0nvFsSVfFH;ij~@i}LOT*Y|hN;a`wSGfd~cfG?;3O1D* z*gudQerB)=zB52Fn1*-xxUnT*qQ_RAv*3X7rbxunt6!L03Kf-Xkxsv}0gbwnF7#Zd zvZd)#C;HU&gpIfVdd*{#;Ez zy6vI#Ysmtn5R$F%^7lH`%MGVxibcBec=I&V=RbJF&B!c|IHfNhm}2!|?cIoKC}7eY z4zs^maMaS5G`2OErj|2zDb#r`n^k`%p2Q}spGujt>7{yVHys z#<))D9MZx9nFxpgFQ9&-^6&BfuY~?1_CrBr7{n$1ySMU$Z;;prks-m4fvMgMeBN(G zHmqex!7~p4abm$@dide<)s8AD>HRT-FDH(bsZOJQoZ!)}2-m17&!U`uN3@-&D$iM3 zw-Vy2BVjZvb*ufCw0Q9b+Io7{S!0$8vQroSVtL%kV=SQ!NyfZH>?Q&^vP{vjfm`e# zwdXc^E|HGFZC6$W{I^-my_ITct`{6(mPpqmjdtnF-vhbqV0Z=IkqX*BMGft8%V@mR zHik`PmKBTJ7FUyv7$b>%&sy}BzO*yHx1`fBtE@w}Hfxgcv5^FHT%GFFtT~Z;8bjCC zgc+N?LrtnE;Bf;{<^RbVQ{GlAist}8ECB$34I#sCtZ_Csu`yx#ZO`&E2p(w4M-p=3 zwd3BBgnZ^B2D3eCtRb)0WY*8ii+o5-$mb^?rJjk3qByRE_fN?1puw7$5QS;Gcq;>g z%zi#WQWrN?D43T3dLL{3S@sJ`&;&>M#c695aa+~7)cR+SL;Bts_yVN(a;w=&?nctjC2dUn_gbgt=x(yU*w zyh*6cHO;LaFQDp}%YaSQdJS;3VNnoMh+V~RVnD*feW?pp^8MiQWa(lNbb|vBFgxFq@h{9GYU)t6M z%Km-zs*&tge%~MaHcL!E%S-?{}pWC%z zyN;(s&&u)Jt=^9*OnSa|nIyGNg63UGMf8rF)+t!*rs1b49K{%c%{{ z?nN>dTEH8F$ui&3cJlLwnho?II(|orOZEL?UNrhdNyLl@-;XO%1%?H)X4h3F3oLNyU zJ_b#0%etg>!_xdQbHc>|8nCMq>=hxD@4AbfMTZHxeNR zhz#}%q&)(U6L;K533(XZG!H&WVg31+or=y{skZXQ_!8V$<}SPQci4| zT~<+EM3045fxVf(9SPN_B8@$n-1*Kwj()prd}#Ho(c7*2(vLgqvPre%;Yvat6?;w8 z15=ok8NMqnI$lgWXns@7EHCE3k`WR~^VTF1;}L&tKnc3gC^emc)D&@+rLHh2yiS;d z(EA$-zbvYBQqzoO?_>!xz-yXuBsotvLyX_frco`{Q1+@6r>t)?z^~pL7vocxGX^qD zxZ1cI6g)>=X7vu9M*XL|3i_#8GCHFtO`*r?)z3WSHOqjI_@Q^U`o^x?Y0Efr-U}{0 z=e!B~wyYKL)C^piVix#RuLAam`9@sKfXdNXNWE0iYIoinS`q!}oZscDG>eQzIrvwp zo=sN1!D$jvk}K*aN&EtDpW$*C#{~Ugmt-P?e+-kn!8{Ed6%;2@M$A_!zi=e5Z(LI= zYuX?ZeCzmfyC*W^mi9G%Ods=xww9XecnTlOr5*-7oiUXZ3FUYRM>m@XZkUjJMLLo} z5T3pSn@D|qv$~Q_Vp*@+ln;ltjgnsxyhaAK3CrkeX=}l|^iZQO0(5QdsYBGs(qGO? zJZs_)sKd9CVZ^f1O&{ERL%qVMWv)2XK08-g=@yNBu_^kxi5i5_Fl|7|#VD^Sfl>QXf+U+$dR1Fv*yNQrGJ)d?K1^R}6Onmh@`Zd$QY=M}C~ z-{lHa^PNL&{a|)I*QkIscR}b6CaR|!)8jlYXEhc=!xKG` zZ^#bNq#fL_B=By}?tMMpsX<1wD$~ur;2*x6`Eb*>OT}ftP?`p%ER`7PNT511@JCpsAg$0HNl&x z!;n%QbfjNBHhKz9*D0w*e^qgnYW^KBFrm<>0p5B|eIBhGdf?V9MFWxeoOAaCe|Cvl z{t9OleiVO73uu6ZBXxrIDzR;S95b)&nEZT6cl=$hJMVc>Pk$d1d4Cp~oXlK%)Ox|X z)Yy->(D9U0xl8_XMQh%h1_P8ANDcKK=(0FJ(z&&bq{WBYBZ5EUZY+v6J;Xh_n zTIBMnndgDi4zwhaZVqK=?;@q0pYG8c^^Sg^Wv<3t7bf9Z{~&M< z4-7yw<&MIDGuL2ia%yLu%YjZr-BzXrkF2xr)l<_;_Z+^V!BLwoZlZDna%sY)V2>Bn z=iqYC)J!q~>$OgEB&Xp_m>ed}iGoJDk24?Z&0X=dq{vPjV=pIklyq1>wvHd%sMLh|F#wpf+NvV!PS6&BphL)Nzn=rLcb=_!UU z;{~>!WW@#fN@fEEZSTqY<=@c<0Kam$05}qSbgZ(A1>SsIG>Un!UP9NWt3qUbY_*?f z!0Yvp3KR6&llgYh4TRk)s08oflsOYPG?rTL$QoF9liBPM=L;YJ!(xeSFZ6~W@IMyt*Y3ON4cvv1#!&K0 zTU|!ynj3C>9K6%ohfOUq^g7RF2dgcqHpaKOPpc-lGZJq5hNZ zGzYnrcte82og)AM>F~SmbaHmLHu)_)v}S5Mfxn>lt?*4AcaFcii|beC86eu0JNVjA z^dUxZgMAbYUb9$OWV1KL=N9@ErLbPWT7Y&3#f*tB;Iz*-d{e&T;W1-yCw@El?fkC! z)59|Lnr1mh{8Dy|&$4do9dkrPf(d*g?Rrr@u3nVS)BSA6{pEQHwLS$C8FGJwqJ$)b0{KFb>;%p6QlVU4d~xswDWMR2PJ zr>7iWfY{&EQon5PFnf~Od~P2FLj>rg*c#;qg@&-q#4}1#aE}-dqlfpv??=H(UBpD=>|kxSpK$E_CEfOfOK4t+$Vd{pfpf`SIx>`+mON zj??g5)00%`R9(OfNRN2N+A;hwWti@6C3tX<%;WZJghm+OlJJrYt#e?CeyvE<`Rfeq z%@mR98C2Y@*crvOJm+Nr%y7JD`N&@1i_loPtQZuOJy(ivN9xC?2TP+R;L@`hIW`4J zeBY~wnP)K{ql=$hIc;ukfi@ooj10ksX9-ra$BLIoDhP?fC^3SSdiTXcLUpAo^5i&g zpE^J>T|1UVRx678=lO!0XI9vPC&pTPs0xye3=dnQWni6RoubsqaY=BYkJI2g2bzQ+ zvk~07V5#dW*ij!G{`uCY?O=J#VZxeH)`zRrfv>cTksDyAp%kj!9Yr=%&{GS1+!h!( z$8Ov6R2Oi_B~#za#Lbq*wcs0Fy(CGBA}6+LZNpdR(QtUFT^xe4Qkt9JWVv%)L6F|6 zD*D=PdMvcbvft=28#$bQTzc7ugcGK?g`1cwkB7J}mxq`M@+r&VA%301lNBDb<+jC= zzMfY2LZQTHh2EL!F4wHl)yegkyt}!@72a@h$KV0ir{cTGIm`3Za@?(3IJ=r3eLDIs_w5ZQ1A)2CdDy?E39ksA`sD1g3 zXt{LH)%K^7Ju;5it+n<+cb4XLe$NeM2KTQCVrMV>d6>!;*~mzpc(ePC&;*4Uft!kr7CvS=HuFuYM;;3d)IB{G|U%)cP!Xf_>+i!t1Tb5QZ1anIey5l+azO^%mLRN zalQxhyc>{pmaI|KPAs0e_z;n?UxA~^;U&~$uCk?d7Ix6Eg^q7MOlVs}*e1t`STCFI zVX8Ges5Ysk%rvQxR=x*&Xx~)hc#Q zv+8$A8DZQeyR~}GXl}CGy{|KUU#N*DUoj;kI_ZQBs<=`xZ&w>C4L=UAua+FOL`cOT zJtzS$uk&^H7R-4UPfWUTY_Bo8N=sZ(O&>9=4ijUHqlPx~IiW zu5PEZCrK(dtqIOB&Cm(a-w~uZgJje!)ZW_GY@*v%Zz|a_ttQp*2Z%Z*U&ZQB7#nHe z0WokSCYriHgQX#WUod(L~{&Txcl!me8$d)bmYusqVQ+SQKT*wWR=l3jjeW`WqU z8eTl1D!Dq0mDuyx^+Cc8mgEp+xtyYrEY?$^oAY%GIak?6MSo&eeDyHu8}bUpCbE|M z6W}Il1?Fmj)nmC8|L6waZo2sX_Zia`stMj&8-y(9;XH;iG5xi<3zCTEGj3O=Tt49{ zXm;hRjTk;*s%vY41Y_DJqe;g3j<3<%FylzZ=`h`UlxPMNcQZfUhb>DF#tNCyHA{Ay z(BZ{?Q)3pO&=!`FY9y#eI3f37g1diFuS5!MGX+HlD+q0(f<|ntA|*_SO*SSG3~5<~ zMlw^ui)EvYLS>;X2*Sfw{{1`zp%NzaTQ_7KuxC$T6atNTzR0tMVl;owQe7q#X4L2t|uzDs(Ocd-ETD`}1;0?3YwtqNP>4W`|vfZj_|)r9K!nINf@r5}6>L0-V8kYeVN)k-8f z4hn-$A+2qPUsE2YB(Du=v6hnA;tC=`n}>U# zA$VnVa)s$4HSKi{UlSeW1*QRE&cm8&?PD4(rnLtKhv18uRvW&>jLHh_djIMYw_I?< zM>BQzbjvK^miF*L0sl*vo-DZOg&1q9?|b0kI9pKJRv}ucNn)=~}C*?=T^opA7lR9N~%0 zl|c5i;>sCln^WEsYW;9zis@sv%~_P|1OMaJE!1%m`{!bl=EGikQAv-p`*lrv!G4H}fG5M8*=nB67z)T^T#aFnqEvFbm zGm`N{>Gb?9dSqz|tH5%Z^?OwnVBVfikdL&y!s2p+>xT1X{VCqmLhaY8tdkzfmy3-$ zzF-&8IhTDKc%v>7=za5yn*i*PJ3nOMxWn37oR2Bnl3D$N9j2$q|MaG$jWT?S4@pr5 z!T|sne>{IvNM((Rp^>%8&$X1rMETfBX0(uFsr%6WE1Qh-_p%MUGD38uP;mA4fLR9& zL|-xDruj!tkir7Pp4x)_cOjIRvzYCHA*;L9Q_ZrCS42`)2nq7k(m|_@NrjC4qeX{H z2^8PcXwqsWur{du_$yaBJa^Q99K;wyT-6h;ucEIGY32R7MA%a2)bNnhW-PW&C#OqH zk7nE3*43JZzGbRRkW6Mwz~VC>F<@z{CPa=VA2%=yY!xX`Q)t0NTd#`kFN^G#(`lQ1 z26SdM?762)JAsVr=;D$WHLHQy25h3@=)t@A(QFlZfHMcbdxYxmYwkqvd6<=lS~vO~ ziOd|f`hNtRx%TP+a?VZIA`-H_YKFnXKww#*il;9}YJy-T89tc&7;TC%=_ zDA9=|4g_1*RQM&|)C#&RITJ`E zgao%5qKNsOBU&)2%gMU%myAjK35>~%eoXW+PzWi#L+dAi@thkEur^KF`goXpE)z1X zq+)tS0!NAZ6fqhqoR)=6fJMx6%C^tL?>J(0l5KI^3B+7UElK-g_!TKSRf4T>Jj^Qy zeZ0lT{Q&0-1nbrL8Nv8Z|C?Mk02Ex|H}$OJS-zYUonswt9M2I9;M*;tpNxRn%=>b>C4xhC{WYFvW?5R z;(~3not=M|*wqHO?M;Vga|UO&PdM#dV2#cIG^J7$beswc<1DO)=131AmWCt+IWXaE z4vYpn0~3>DDO)KLKf$LiZWPWFg$Yv?T=Vse5#~l`n1H!{%!x=klV=X?99HGp` z*<-3|0FrnP&$vQziHXL?6UMugkL9Kbm?Ltbp(Zpl#NY*LP@<~M;Iua3Xqx%Vxg#&v zgnTsx{9JS;FABsT9^rko`T3hV2ps2)#i4*a`DyEw0jzyR6Y3wXPT{9q`b5{QEd97m z249oyfZ%MU>;4E^Pgi;_;u0uaULzziRKPhuRHGUo2>dR@_^n(@1DUYmE*Lz*pvPlHA$e=Pz2(f6Dqtf&O_MUpyt(ZR= zQ^z3QgKM~U$Or@{eh~gsw6lXH9xKYcbta^WUPeo*r(t7y49|T5-bSi663_?AFdP*Z7bZ^irnp3W3QflFc$ZxK)z=(Ux-jGkW__b z3O8RYo6}%0Bnw*L>p05~>a{PK_Hb9M<}vSycj$gEZnQUM;-xay{oH zos%)Nm!EehmlHD(d{(Y|98Af>sakMFtnYnz6v9Cy>62I&#h3Y|0@v}xkwuZusxw(b z#n{)88T~|P6n*HGVqK%S%a^kzmV;xP`;^u%^fJ6Fh7@Vw literal 0 HcmV?d00001 diff --git a/cloudofficeprint/build/resources/main/OrderConfirmation/template1.xlsx b/cloudofficeprint/build/resources/main/OrderConfirmation/template1.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..6b5ebaaf8e963b6eff2ee3b3d7f45fd6ce78e4a8 GIT binary patch literal 5130 zcmaJ_bzGBe_a7i3(xWV3bV(=(NS6{KV}zurFksYROllI+(j`)&G)SjXA_$V3AV^4~ zAUzsMf15s^7hc}q>&V$d_&Pen`y;L7EeKqh9}%UkvDrPP*qMbw zMr)AIZD?us68x}OvINK~1S8D!-L4*4hRg;SErruLTN`8y`JAZ_&~mU7cT{J+7E4~i1pz|{0D%8B zOw_n1-0g+k;0U{iaJZe2yMuj%?g-+m2#pu^uKOm{J10JoL<({D*rajptd0u%lCn@i zk1Q^Q8;3i^(A1nhxlMwshPkETv2QcznuPId%mS66Mv@eXr2K<{;Qd4|lp5)^S)=c- zCm{kM!^DDhMhzxul~R_*tTLV@_TBs~R#W@eOJ2>o=3NBS^Ht?b#lp7VIZ&)N8vqP7 z<;nf>&0W$BgG)tz`KNb5zL)mymXQQr4k74>85+?LODIanj$R!S|Gt*9+ijQe!YS#R z&z8o1!P?a{)<`XlVNrpaN`(l6y-lutDk;bfCBSMCwcKU3RyK{Qk zjDs^3nH_ojsWaCsqaFL=xu4s|dhEp^XTVIGnm3LZDZMy%z$-$PBQD+5KQ4X$>b%ZZ zwC~n`a1U5uj;|ZB7kt$$8}>S;h|qgY+%@zz2f>o7 zf#63k61T7F+wtosZ%_IX6nwl{-52D2SS$*Pu1tx)W6aJaTur@`ih64*5Hx9PgxFMh zW(5gwM^0O)sIu#FuhUF?nvP;(hAFFPyrmaw5&!a&e~-pS*TwTL*p`Nu?DBMT;zHby z`K(u5y*%X^gvFMSXD#m`Gik;2T=~^mu_%j)m!4b?2yZf!?8K@^m?R;q;{i)e6 zzCUn`1~VIKB*MY{GG_?PrYw`+Hmdvx?ay2@it3?=b`#PkHygqNNYmqEOv#(E1vJ(H zcA?U9VUHOFM93x46l4MkOs-<(>xChrR#BvfKqPgS>(|9Dus)4#Puy3iIB$BY4TqRI%i8yPS zsC(q{eTmWsPXk8}A6m|RK8OyIWLVuSR1+sE6<`O#;+Tu)l|W4e3^%tL!R&jF!w!2en^?Y)M${xJSiHpH z{kR=;FkE+3ImSzodd+QL$A5=h!d%2L(MbTF;>6JvTR45ony7g`<;-T^uP-qAOccw`a!q|=AOlpIzH^vB2 znXNIZ0n<+EosR2^ZfahJFh*4>6paE^hXj25vCY;LDl?YDkVl6}@Fi4`z$_zr4_sP8 zo#LjMAo;0kl3bjA>FlNb(j(|2rTsZuz)KomSK@*O2?^Lj=YVef$Y1P}& zH!Pln{mj#um+3109Hfc95pZ#zk)n{_sQGe&1JPGEHb(j#m5DE(-x4g>xdYQm4^+~r z9&^)UYvX8z&Fh=(EMdJ5W~{lc%T^8Qywjd&45{FoP%50-E)&O+4S}6d`B^@pmxetV zni_|)Vmtj0!~NDF&NIFk3i zZq~0p4~R=C1m67yQ$8?m9Rn~$G#c@(WRsM8j%r>|@WV9|VXY%AUV?6&* zTPhdy?Y{Js`4z+U@S!D*Vzn%pF7AE#=?&H*MGWdFz#%?co)TSp>oG-+Z%QC%E3aRD zQ1Hijqtbx5Ewalg=vL%}tk$T!ml9@|{C(e6bh1_ z>2P&+@Q{T9VdZkV+(BL?vaakCA86^vA}w>SD`6jMnoDA9Mx8$m3WVhbtSdM_E7}-B zKEKK2zhg{J;3?+j=A*=eNU!H}G|dZ7AMKhH%u^FrOv-MHENpvJtr68ykrl-pQOPKu z`AF2{XrhHtwhTELb0_Pnfo-F>Gm=Yui##I51%4UhwUrsThsxW$Q1tlba!qZv2if** z5XB?mu0c|m1gD$}D*C%&>q?i^pqKo%9sl6l4AbS_IFb*=ky@8spL@LP-mv#}7Jq4d z&Qlk(_e)Nrt*QUQ0x6Lz&r48Fx0a_cRpC3|4R7fIK~2Jzfty%D?Y(r8hHPFwkO3rm zjR!2^KVTx1-?tt5Jc_mIr-7zC=6%4;Bg^slez!M60gX@3aVR&^Y+=-1&nP&6H|+U( z)tJji^2?tRaw-`x@D(54Gm2>=~$ptcWGIEYE=k4<)s2^`CcWGhf^L zjYNsVR2wEZ6vB}HZG+PPgG4qD5Kv29Bm(AW{Tqx?sjO|7nE4NneNmZ#1epfkoNZMdRJS?LPu zfkVDb>cYkq8DbJ!2EHT%5AyE$}1%$7XZaVDF$j->KUmoJ_`#Vd+C64WBpB%YEjAf*keL`WVBazJwN08=K3p%rNupA3AX?v;7%^W7H|X<-<-W5 zT{y;1Q@_CwgU$b@;&nee|4beaKaB(N0$OrpfJQoD`P~r<4@~Jv=*UX9yX#=x{CD24 z`_vypArZ9ms=R>KF4H_T^A)B(rvSpm#7-j}e&$S|p;(6_q?k{bQYHoB?@VYv84;gt z8r3@>r6pSZ_+0F8+Ff4lVoi>ujr`&J=$||zfXGZ6UoOdnYi&+Y<^>Gxiz_bUMhh?a zZ2eO$coqB*jBzYY6UL-BzZOv2&MNT*O2gjrJ9OOfs>}egPz8^J^0VLh_)Sz3wJm@!%rsYz;aI1j+m#6vp>&~!p zrpZ_SJZHHLpXChcFGLmwNEtc?xO(RrX&nI`-xH}C-X*qt)jU(5fCN{4^)r&#xK+v+ zJ@KNxjiGQEoL1&@D_mV|T7>;vY|l|NcV-x^iGOYRlZHG;(Ym5ASJ;=Tu?8Q28(Ph5 z+JeWFfO0g*XXV=d@4OX>hIV@3NaW&Q^G0(rZx5WD@M(Jy(}7Q05LQOj(%B)k2$X;6 zu389??vm1!fz&s3yZ9jkdyW0=w?#H6t2-6*`_>P-4kcBjQ&X?jf?%o9Wa7;En>irt z@^_#IMA8Lku32TqOUk`0gOk;Z(k43m`B+ld~pCUAkb zYlV5CIQ&*3gIVS7^vND77t##V+SUjQ@Byw+Qt@1YA7)FcH+4+jX9;*ULn2t`I%vv4 z9MVA$Cdg(dl}m4%J%pL0d@f}n#Gwj@q&Y*xA~DTLOVb2#H}t;f3ot}Tck zYEoHFV1JIoK`4hzZ|e~zykAoT0N>}huU^Bgzx!pP40l9A9g*gG9!^jfGrV67@xOPt z>ds+ky9s?A^a+i|2yqmbUPfU|8P8MLLG*IMHa3Y9tj|@c7h!0$*4N`hCX?D;W)A;8V8^o7 z$JFgyHc4FCHMJUg){Z?f@#9zj+vU>jyXB!BhZo+M2z9C>MrOa{iB4hkHC96&7~C?- z#V9jSk=?zyqW|1m|EA9H_W($Z)0%Ws(nIQ3$T6dai6VEmo+~iIJdb8)6c;GTnU%HX zAZ$-p1{{aJr`)?s`98F z&0dZ~j?Y{@?U@0=%(SqfJ=PS34%zk}b8E?4av^3|jz^Vkjyp03ZL}@T*5kFl!v4X1 zb-!l6EcB<-{>-ELwReTK=o5=Xznht#%(E*AAY-rV@2YmsvRW2;Wb?el=jqcp`#Wn~ z?e!Dm^F%;M4>+E>oE$XZr!N03CuT6G6;GZt@pFh{;laJ?)KucM@=5lNKa3uWIgT>m zl#h?5r&Uk#3Ov0(7B!Opy!U^|{%I>GK^xCOj%EJrpAR_ANKRWg32u0BKbFtrzb*U= z)StF4TJgt7Rx8OVSv1H)_`ycgx`txb+lRFsSe~x97>V)=jH#%+L hWNH1kfo@z;{6E_stVxVZ697PtyL@r@g8c3C{{aVBjzItb literal 0 HcmV?d00001 diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ChartTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ChartTests.xml index 505db511..eaba395d 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ChartTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ChartTests.xml @@ -1,15 +1,15 @@ - + - - - - - - - - - + + + + + + + + + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.CodesTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.CodesTests.xml index c461131d..ea2c600d 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.CodesTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.CodesTests.xml @@ -1,17 +1,17 @@ - + - - - - + + + + - - - - - - + + + + + + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ConfigTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ConfigTests.xml index f273c429..b890ca8b 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ConfigTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ConfigTests.xml @@ -1,11 +1,11 @@ - + - - - - - + + + + + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ImagesTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ImagesTests.xml index 7c58070d..e1ea58ad 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ImagesTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ImagesTests.xml @@ -1,8 +1,8 @@ - + - - + + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.LoopsTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.LoopsTests.xml index 55b707ba..f871347a 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.LoopsTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.LoopsTests.xml @@ -1,8 +1,8 @@ - + - - + + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PDFTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PDFTests.xml index 6ce6c3f6..0b84869b 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PDFTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PDFTests.xml @@ -1,9 +1,9 @@ - + - - - + + + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PrintJobTest.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PrintJobTest.xml index e2ac6e4c..04ab119c 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PrintJobTest.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.PrintJobTest.xml @@ -1,7 +1,7 @@ - + - + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.RenderElementsTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.RenderElementsTests.xml index 42c2f478..00f9bc3a 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.RenderElementsTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.RenderElementsTests.xml @@ -1,17 +1,19 @@ - + - - + + + + - - - + + + - - + + diff --git a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ResourcesTests.xml b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ResourcesTests.xml index 9ea1be0c..799324aa 100644 --- a/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ResourcesTests.xml +++ b/cloudofficeprint/build/test-results/test/TEST-cloudofficeprint.ResourcesTests.xml @@ -1,10 +1,10 @@ - + - - + + - + diff --git a/cloudofficeprint/build/test-results/test/binary/results.bin b/cloudofficeprint/build/test-results/test/binary/results.bin index 861fee6de72866af2a45918dbdcd0c3c91515d22..903f8bab184f40ca9be24f54659eec99d14bfd2d 100644 GIT binary patch literal 2633 zcmai0&5zqe6o1KnKq&o!QYcU;rGO2zKwFklkkBT(g~F~jaRT(f#YrX`tB%LAy~{2V z9FUMmlTErGh!xP%ON9`B2A5t?!T|}+TsU#y!UYN5*yCqA&WcO)es6yBdmr;=oQd3p zTQ!rf)On*})R^rUmUl*DE?;qK%&jojbNfjMkoox6%<$XES7<@d6mb zgVY9p?c3KaX>T$f)Ec*8N^<^&{k@Vlzsf8xU?mYuO5Q(k0QZ*{%cMm%WF_ZcIJi~P zD$HbdlUpocrad8ln1w_AlD5bSx>FCxBM>G6<>53O#=PE(h)G0>Ik@k7Nn5f#gIoR} zDC#IC%>!^hR`jm6KoyZqdWYeN=toO8%z%|d#5)2H^s2fePC)V!DD2|!7#!UwY3~~i zBcLS!Wp*4MyOBER%PoCbo^&^6%LZM@9`6`}fi);<%%l`A!s9)kk=I=|b6!!ChhHD=YBGjFmM&Pi~?cEdsX~joXxCAI|R9go?LrvM|aV zuVF=d`Du=};ar+?#dOE+4g8eb7jS;V6*21~sG=qSv3B9*ZgU-*uwYoCf|yO5uVJP= zcTNmF_AxYQ^#+{!Dm6&Oxl3a5-F9fmk$G$4$zEZph~7)wX}LI^2}DhM2cFsvR-!wg zsAF8zsv*R%)&nI z<){9ff@3|g*Z&SN2RolY#8ctnO+SXaD&JReK}FD*gV?9xk-opkTP@wHVW+W1ZYMH>)(n<&nIN*@bl<3D z>dl{^+)Td@^50Me2WunzYb1c2^edTXZrKjA@q09Di{J7}wZdAqiI1&+MHTh`*5Rns Gvfw|02Z~kz literal 2573 zcmai0*^d-O82|PHmlXt+Ll9I%=~gb~5FdAE7o*wD&h(7OYfn$jPKTbZPIWJ^@kLEE z!pzPdYyvTIgn-5fiM(J;0M8c>qNtdtQC|Hs{HnY5>+b2M`!ctxe$h(+b< z&AKeRg1j1HB741d^NMj>9b34o&Z*Be(Ctvbn%4J8Zm~<8FXkH9eys z_WQ8>M8J*(L;RSg#}d`K0rxfXf_qE^Q&^5zBnwUGZ{(Qc6g?9|ONhjnh84}DX28Ul zDGqCTQl`^03j?PuX(gC)*rJzVZedhQ>0za+(iylv%X!1`JMNA2! zDL||Xu&P;`!Xk{?uFN1IQM3AB0%v=1`FkRLuIr`JEeD5!*P^=xnD z#`CB>#6{i52}>b5RJTAs8Lh-~taVaR7(c@^bJ30xHa$8z83nO_f$r=*Im)>g4Q?YA zRp7Pmt`k)*Mog=Q(?k+%Q0s3&&&dEY#lP}ewevf$EEb-?n~Ixl6%9qgbA#C3K8!scx*28;U7_Vq&#HO zX+lBlui^2TaFN&Rrdz>4+8{B%fhR&U`ARiyH>n`@x3DAIpIprpVQ2kDEUMDn?teD& zEIC6a=GO*kv~I)BcnK#a$qXSee}!E!GjHScw?PW`H`qNJmO*+S6wJgor41AJci0oJ z;i*Hj?U=ZC;JJCSGc;MoyHC@z8jAQ2cz!{(ql}g-VVUq&?VzI@;7`~a^;gDT47i2Y zKt@3k{RR8Np$;umBRi;Q$KUYe+3fwGzGzA~SksH2Hxj6Je%H12yeF84Z_1!2|BI95 W603U-Ubf*8)%1I{eAm^ihfJ)51jgy+)?$l z+c$Ej37w^HW&9l#YVd;YLKiATWAqY)t{{k)R=kzjZrbY(-)UDb`M{n1{zva_^7k&? z-Ej{pR5L@T?MVgA>_x3G=uL_W;=%jrj_qxhcJTSRcPcwC?1$cV|N8X@bsy=+U;C;h z$;yuTiCQsVJ52eCpX^eo=Fe+4e7*2&~=bJ`Qp{4~ot@v}V9q}3Gx|wEue|&8B13&j3>G-pH zlr-8A{{ng${QL!LDpcp=rL|E&_7g|XqQV1ij&OT1{PcppZKJo#vaQO_&0ammX{@@l zp!{?dC5M8wt8zQ9`~G^>?LI*cLKm5qv-eXDTdU2B6?1PH`S-()l~( zZJ#wVNHgXpa&d9B9^^)a%=htEQOo^IJ_fzN=*`yLIekf-KfiBgzSn@W`D%A}R}c3I z_7kOF-6vU3mZwO+xiC|KrpYhBBuoQ=!EJu0LOr$q{?kE?Ia<9U*>v%XjduoaUSBz_ zG<4mR$fzM}HS!FVr<<3v*1hvgDqO46`pq)vwcbFp6gwRF4CqSExVU?hhiRVZ=`LypUlY6bH6 z+k!1xZmBueHFHtV)VcHQr`vW4M~lzzxuha0Y z#ZzN4X^l>z$CY1v0z2Frx3**5WSb>R7pEY{^=K?kMO5eluy{ z!nUWjTKdX<@;JY7wGptWswAj7xMvwb*Tj!v02azjt2=r8v>0z*tVTMS*JzI3^ zlYV5}GW6)%i*JS=LGn@LdJL)OC^8KbXQTvflBA%%k8k&DAJT8k$Xw(yWvbXxdpq8^ zsAzlnpv9Vmt1VF;Qs*Pp_~SrZUw~W&sl>$DCBOQ$ z{HjC##lDY@KJ0q(1p2iQsZS#L6p~H@WM^Q!R;Tk9&H`@mFyb7PI{*1%N~S~m{YxEo zPVMtaY;E7;V-a#GMh@qZ{RL!u5xHJMQVFszMYd(gRl!~PDMwV8-XG%hGCa(ft@SjC z{aVy4HQvq0(zWP2dwk%t$}32{8##&cvU%TsYrW>uW+_;&&DGVVBXQpRJ9U${ZO@PW z_3^&28woiTNQJK|E<(wgvtst*>wg)uR5Q$Cs-& z-gq&=@0$BJ`JrcQ^Y0?td&vGgx(_%QjJ^+=-AN-FY)`%&9k?mB_q+a;YnGA^b;#}^ zk{=uC7TNM=o#<{9i6gGd*P3%lZ-FstWR1t z=Q*-_ft+35kvlzoW3 z;oE_qeL|{b*f9`01!4DKJl5jB+OI}d+&?;dF;9wyG| zA6WG1#F!cWR}W`giWvH90#>iZ>hXyng~{MK$4R{Olm9#4J9_7YyIv88x4lK{uuZ!p zOoeIuwSxzWFBY`I>a*7p554GfYI}H}xyjfu1>3I24x>_`k6!1a*FHct;=aXC9$c}x z*13mUkDCpV9s@RDn~m5V58s3##^;Mc2m0>Z@>SDRw+p|t6@%A*w;9XFAhf4{Krg&p zj(qIWV|>`kpJq9vVR;Ky>yn|VIwrepm@a68Dy_?yhjTXkn2zPGShWqiZO3Ce@4!@~ z)}S*$LRCBpvSF_4<=_|FU9(wf`)9H9Pe0j-%J7NoT{d^4`xX_myR1c`ZmjDxuD zS4!HP!SY#bdk(wmiWH%>1B79sU3Ol5pO#L!Qx|yr{@_KcpNp~MdF*rnyI;g(o71CM z*2QnpWtaDd`X{$Fc9i_jU&8jdMA5G*Wd`>IKe3A=YMj4Q=*8FoK~ zdYnaK;;0V8#HTL?K75pO{rh?EYRa+dGIqRz-74^yMOVSEjT*mMN*es-aN5dcJ`Hy^ zn|8;nJk{}RC6=#Y*M#O-Wo*vGeqQdM#+6k>M@%U!=z1N?Rp5Gwc$m27UTM4(knzj0 zgWC$*|IwjKHCErilWyW)#|wg!c*x)|-0$Y513_!Q96Qs#XZ0=Y#N1X);iDHXzHK!} z8r`LI@K%pocDA!8*I>sxSUsv1WSXVbnry@`)6VPS8%I8v*0b0BoS)9A?_$+GY_li{ zFA+ztjvU#Es+jl6-$gscbn)q=4#&40d^CwRWpwxf z=dh0y-+Bzqu%PxAN5+0vo>{l3_xg`W~zC2k4-z`MrF^vDw>3OqxIRsAqE zeK-RG6&8MRixQJ+#y;9|u`=nBL;m80aYWs^jo9wz1J4HBWaAR^7O8}wXy9!tJ0`>3B+YBu^qGnsl-h0;lB^67p@(?R{Doc zq*G8Lv0g{URiGq7h4>rv$ppOJs97N9FKc;y1;~JpDz_J}E@Kp16+xgq_6o zpLJk**o^pNz_D+CoPPPbeX4>Y%qTw&*tDj+?*i4){&(zz3;7#}`$l5DiO3VDZ6;Kh zXY<}g^!TDSbcom7(pS>OmKVNQ-yw~-ZXvdXC>{74Jm+sERIr~(bbKH4W4 zy=wyUR&FEmcH*cz1i`fFO!NuOx~@-D6R+kTIM*X_2a$IYYuzenGR^N(XSz~`48d%d zoL92Ei`e7cz}l$QF4T&`(m9vcoh2E4GHO?;Q89HLdbgQzXXfV4zO;QohXNvZ?ket>*zJC??&{j|!Zmxk z9}a3bLDWHDtJL?YQK@;W)K*y)OFT5gtn6Q5M4?FCHBFREI=m?0sffS%LvW=WTJ4g}QMKZ`fl8y>d1=>$4 z(GikQ?jq`Q&@LWP>kyP_m}-Y8oQ2oH?0^v;L7t;()QEFXGJb(aehVsrKH<%byKQLJ zAs+Z02FYicWmcGkqX?7^OlojGDIkw9Fo{(#+(D>i1j-|bio=Lih#RU=9qNtaNDiU~ zAXq#1#;|vw5|r-OA<-+{;|R48gcIcb0tiVAfD5P8{2l%@hQ~NPO5d^@ba?$@i>VUbe08=gq^+pAV%4x2_+ejXw@)U0Q zm`WiCpdp#~448mQB?w25-e@+p0r=4OaV`oYYHFdvh53Xk(OtlBAE62mA`t}CY%_Zs zIfHkQN*H||uf`Ebaf?`>myM5rae>29L^nfJhZOHC0=~_@LS0cLSc9l=a5aS%0Lawf zM%-*7Dgr4y#s7=^|3f@Wfg>AJ)qr%XRI(GTL$P=nakzp`kQ|(Vvq%b|iiq_|l1xyC z+3(SRiyMx5uWokZOt4rsxaK3!&Mb8SZV^kWaXN|z;1y4FNWeg;5M(B4q!gb(Q~|KY z8&M?KN6`e#dqNRrGY0QMOaw9e1Vt4Shx0_bK%|RGyj_B5gL6V(gT4gPxu+2U1pp$HW8by(uad>>NQTY7a7pgCPzezl#BMips(Yx#q_!WXvg&1bsmrDiO-} zKso1se2bzAEV9iqyWD$lpyt7|o1KTEPBha44ivS`!uAXdsRmLNM157kqY@PM^$jp7 z8efA6L2E)?{u7mr_#N(+j7OS7^Zy%`FEB-2CmvPAzM4okh;)-kw}^CGnQn~UH2}B< z&K_rJ?=%ChK<{4*EPV{ZUFhPY)82!;XY$bj@^L`vKJj=!T9I8wgmwp%9E#OD_`O3li z$td_@`AcHmK-^D}7vwKc+)LvJv_+%#;JtUrmpwWd277&6GO^?pv3*T!-Vo2rxM{D%|1i%@!%V=fepbyaL0%|NHdjapv*=t!mY%snx1dQKid&sK6~^#by30ms%@|zE5*ndsSp@26_Q^1>n07r+t1r-wr^rPhWYBwG0xy6M0~(#r z!e&WJ07-++$8&+$KCBP>b4caaZ|gL@uHQ`aDy3aF(`6v95q2?f{Gb)fs9~okl`fv; zQ+n;F4GHxur|mA&(iIwlyaM_)Z$@C1FI)vM6~ii#vuED5MV*F7gZtcZa54Bi9$86C z*J$awf<+aWEC3Q%H9+TS(0c|LjQ|XwLeDHbD0fS5F?aW_jz9REp>8PN1@)xQztZ%j*bENmhxMCv4gynwi(8hMj z54ru57ki|9xJ}#C(A_JD5JHRd7VnyESbvpW<(QxNaQ%zTcWAkmw!cfuG2jvRfGo^+ zAduK}cG}3#zU#3o)O*j?_e1AYmJv~#e%gQ1iB;WuU%NTz;OZv<_i4umv_~E79z(w% z55a-_wT~1JG@sgtA8)xA@xO(<>l*t_0!|y=>M^Z)LXUe&OZ5tN&w!P`36}W2u!4OK z_Rwk+v3G^Ef#_Ui2VoA4^!5OznNTN%_UMi&R-bUKt zE$#S@_Bc=8Ln71r8oXeXGQ)jPe9zzXn239>=|&DOjZJ*gewBE?-@y1L+U+Cl{)v{B zF_41;8Q5=YO&Un=uW6A|4^p?+t^DJU-J^!RG(L|DVx(XO%pJnOrzT$=*fDHk2RSfx zfz#b#W%7jjJzs?~Qkc?XInbG9YVPvv`!S1{sIw1BpSO)mXt?;z3TEOHI-G$WlcI)L zb8bgv>Ln*5Ki+X@b@BWz5sYIb(>;oDi)L(N=pfKu_&|$2e`_CmY2XX-a?4SVM;ab> zj$x!&h0jWciiB^RzRl@D3B#9HDyni1I>grWE*dTLm@r}$;}XZHW9WDWW`G&WXMmpK z7pWg3>N;qDp1x*l&qj}RCD)1Q`nB7K>}9GVV{&_(m(2`Y&Db^pbFp))tl-KE2}OCE zyDeH<^83j(jFh18eNKQ^lW*TO*KON;%9!+c`r<=_^VTwB6B&mnW*tKX>5~`;BM5t= z=d1-HSJCc#?eLx*9}dutng033kIBsVI=YA!3pW^De;gY=Xj-QM`$Go~8e`$+e<5(JA$R_ijf}KOk#sX4?X8?GfxyS}oX4aljdM(N+%-3H!2#^D_e zK5=R2-N-+WPI&EuKP7dpsqMan@knQ+t&Fsdfi%6Hp(6a7v4hzIvh)tXT(8Vsibr~h zYX61lRY|}05d+U1ci+F)`7{xoS}zUjY4nbI`FwNG(l0N+IKam-~WcqAM zlDlUfoDtj*I(9cBWhi3SDuBj#WT^WO!x`=k!&c9=IyxtlvERek?`2%F7>9j~l+D1} zYCmwF2}>sU1^0n`f0rBp6`SA09)+O~Cca*J?xVKtHD}%JZwiT+mR9j<;*ElROd|?# z{}3+aFdhdP)geYY%t%KV>8PS%6@3ic!>IK$7)_vHF3@X!-oc11K3zT9_-%*n559`M zG2z&PqC7^*SL8jeIJm}NL3QVoT;IV5{g&q4pC4|o+9(z<@>TK?iCeERzAZccWJ(<~ z;%v|wZQcn+E(D7)wx<~BG$WmXf8;D^qcs{0Mn5BbLWS8U8lPie5nw6;vuePsbU?wM zMbV$Poq|twA-A)?DrThf3jYfru-4yG;|GfYkvgOEFDe^7e(GPJjBVBN>=h!mS+VM8 zTmL6L*0-z4YxO9u=py4($Xo)VaC$D@8BVTx4mmZVcl)7Tt#j|@moPS^O!optNu}AQ z8g)#_%*+wpM*VzlI+s*I#Etu-yXKFct(g}5{A`PE@o&o*`^|JY17A4w<_{BlzVGR? zbj{$X{uP?(qPlbV~u^ zwvw?lCdCkqF^hJ1>w4}BIl1=s$U`1WYM6DXkS{0?h6_xzI^ zRm;GR2nJnoY+_mj-mP$UO8o8oqnR#u8JBy^#C-ZbjDw?^2S6SYv{77o)q~vMH1=nE zYI#wdL)^ML#`Pg%olidk3kJZP1)srTwe(m)*q{>^$DV6^7`-yccgirIQoi`lCydQg zrh7f(c$Ivh6_}H677aX79(%en>Q3u*`>yPN#!Pt5s9q>gyi{BZmX6iT4MsfeaC%Dk ztHL3^Gt-Lwd-U4dz^FIVe<|4e`RO3Ph*n-!wtwDPv}EM{@{7ssCeL`qxV>f^V(2%J zfAn*G{FNmuq;f}3lo#>y)H!blCv2!4 z`+ELw#>+&Mr>UbCdXKE^H2z8VYG=SlB|% z6w!tqYidkcpZ)OKWtLOB#P0)H*A%*h7RQzv{#rTyUp57ixi43pNWK-sdIYnsA*>Y2 z!kW2?7Q$G#J^(Yq0*JXCBNn}$UQt-D{yKek^o<({^^90t6Yz6Z&7RBsP4iB>NvmR( zv(776=bdyour=t9!U|ydw4ez$U-h06-eyqwvTqMZu&`N;WMRo;nHTeiR{Xxj7;&t&aKXZ{EAplsK3BMgbx2_4wX91bJ1(DI$5KK4 zlR(%RvxO^+C{zu4*EDWvz}MfkoN=`9plvd1AI&7t;HLYfLXDMEHa>kPo#djcM$JEv!cdoeo{}bM){5W-EvU>-vNHc3!!(<5`s{JNC8P zK-H#g@I{J+;MxJK^;%^ix2rb5cZ{$rKDlPoj0x|Vk5P>Ht?l*QR{O@+3|tXC{sz_ptpgXG@NZ*fsHbhpOw;$bOBRAE;9{GJ+p}} zCTUC=lftI5R1{6^HQ)2-VuT%|UitjfTiV3w9N?cAu&5nOgFz25S$^GX;&M2Zb&~Um0qFyG2geq1PQPkMUP^A_{%9Rpu zyQ#DV(+c|3ZKbY)PV-mZD@`>hWi(4QDrG%GH7R8j zgb4$ql)h91JRump3QB$lokMS7a+n}?IUCKUvD9j%^%bGkLP?Z*s7qGrl36N6DIe3+ zdgdP+I8_;XnNVp^Hv3II(@0ZW{yCx3gvx+bb%4&i@$O=n*`*iEagzD?T2jug|Hrd- zDvXP1DpM&T01ClWiXb`voOJ<^V2jCZx}GTk&ws*DC(PO?x}-7G6(yd6>E_tF2rZ-l z;-ZA1O5hparlEg@!u&Q(l_@n!%utu%NpbcHD1}l$rldKZ6fR{9jHprC!F+fBxwv)z ze8>}p8#v7~C_nq(Z1CT?fND_sZKA1HP&PXW7_w2RgBZFDItqp0k}pXSDF$y(Wg=LJ zhWGzmoIn;}f>46g&HiJLt5;-GG8CY={GShxPVvF&h_yP*%12nM zqpY0C4i(^bU?Lg@{h{Y(e2kTHS@%5FI-iw~vsMMH`w7;%kd;reR;O5(EOx3e?f2;d zd=;E-9`wiNj}E=^QH;vF^pJ)p>=<86?2BdUJCrz5r7otGdLhOIWK? zW#nR^%@T9tK2pX?<*eOh*69kXs$iY2vR0L>(=}Fgopq{Wt*TkOEcPeMMW4U#`kmMCM(}!RkvBU8dko;PN-$A?kfDhGk>u&cl_!eE8S;Z9!v7GHn&h-#mgawOGXYeXcisR&X&UH1XUc=cOV$D|oE$x*!fs@v9 zaw2C_3oRC|k!T$!C2`KloP8$S>NB$jR0=1p=Uh`cs|}nwi)|x>5_3Zc*~m$oIC(Rt zO5@zNaO!l+Jmwj9&5g}uQ_%)Xbqd8t|NZVMW_$T?0b;#`V3h{ItPmn%T$Iq3ptcac+H;?yOa zRVk+~WlnvCQ#Y~6f8(?cRdCW(PF2EM*eUW@V>q@I(W zDUc2~58scUbJ7cinT1sZddW!*octGO4FdcfJ3GiLPI}F$-*B#tijy>7{4i74iQaP3 zJI?Msr^;mE!kxKxIsU*&O`OX|4zkx9Y=QX|{=`Yk_;G=}YZiM59kz7NK|#C}%&S9q z05uU?Tpjl56SH{h z|JEmr?Bk_u-ey1Vp2@;ZKQo67_y8~E@DnrH;}+}ZlY_i;h*uxxt((BM7Mx@85nejV zJ09cRa}}0RI2y-TXoTZDUdrd)kMq_AybJJrh%Ff2$0vBHke5&Ls#Cn%X?{#CyW>Ck zG991crL(+z@Nc)8eU6ukcy%%F+QhamS9sS7-sLJUXDQY=ZISr|uH>a_iaAzWz>7!Md8vw* zt9jKS7H;2}spR7uymXUS-Qpc@^Qs!&quB>6E>MZ?@KP-=*RoyBy$i@)Ub@H2_j%O= z-mQ+8AM$pOcqb)^Di>1Bo%WN*y!3?k*v{{>2$O}M@=`r-_l&oC&fC4<$5gQ~1THd} z`$v$MymX&4zZ9YdUiu3Z8(wPUUElJy_qlYk)nd&w@{X6@^YRB? z)x^7fZqCHsVl03KQhzf?X!tgg#n8 zdyiHKQn(;T2ryxN`a2Oc;YdM>66~UdUt^2+~Hu zb(5gZWItd_G`+){1!+5PCebcUkhTcwRIZKrJ&vRc(pEveO@LK}azEHy9fG$D(hfo1 zDL5X2Tw?KnZDf}q?H1G-f@`J#Q}};nwPj?FAng@gvIP5mf^D|odQx#QOB!3cUyu$6 za*hDAwX=oRYJ5b`uq_Z=s}vFo;1~W!hgmGc z2|+3pTu!o6&F{JBq#&IV73wLBtRHg+nDP{77NmOL3Kf} zD`D3Vi{HkRi-L4XP?ZSorGmOluq%gWh40^!PZqi?NLK`x3cMMbO~Lk-V4us~M-MDsa~Itfq#D8Tj-aX) z++VS9jnN|R3w&3Q?g=mxmsm(#!uJK~f#6an*cNmDUi~GIhl2D-uzoCz+s!Az4HL7r aiR6hOJr(470n$8N4mH zO@G+`gkP`WS?SZ7yS9+Nbj2;HFn^t|K0s(ig(?qXZ#HvprbsnF>ZBhE&q*uci|Dx^X z)m!c(^_6iyDr}0*3^>_Sp~^#lDnviaGJp!T%r@x7aU18pJ=bD?$@sYKH%^S$IC`LJ zkan;%M1_9^y-d>s1P3bA;5SL{sDM0O+!OJ9QSaac=i^R~_Re@a`iv|)X`DS>v_sv7 zY1<3Ruao#qzFSm&%U1{L-X{mYe>C%yt9H2K2uY>wc`y99v*6k-kwy*EWZE^6+YeKXEFweW2+zDt(o+&MRNR~pE=hy&CtqT z8gI{$?xVcgkESB@2L1FYCZm1~5cQu3CI%4(-a9)is@3ZQ>4PrcZu(T(_?sG!r52e@ z)AeS{Z1Ga-xEuTSrr-Onaa?`WyT1ByUcamV@EY$jLDG3mbnuZUNqP@vGLW-O53~rr z006k*6e`q59}wUNuuRh%6;1ub(XS&xynOB2EQh0Ue-8Z9@oi?&X_d)&y7o^Ovr~ZDA_Zz^xXg5#rIvu)Y%0Rf*Qm1u zn!&d4+EZLODyVJgyLg|U!y1KbZs9laFU=fju7>#=bPg~Dnn4_49<|8!ELM)Dzw)@4 zuwYxN+@wt#_Sk%nAmp+DIW0tL@Jc}=YK+dM_VWs|+V^}F{i5wJ0l`QPL7GtH8HQBh zNV5oe|6@VVVZ-{J+Voz1^8B|x%fBq?5rI^L9mQY&ym~mgdt}9x_(#nRp%s=$Bpd9- zUiHySn#JVLYcV&y?C#aaZ=#SKjU3y@ASzgA?j$ywHQTr5RwC77ZCLhgWB`qzH4({QEI|+<4Z#{97CDm9#qSMu z-`9-%YWwCZZIh6kjI>LUqag+@LsYm$=QB+|$zEL5Zb$IwvOlLM+^=6VGfLei1!+@} zc0?L<@zGfb2(C_qhUA$QK7TJK~^Y28K;S{ANPcY z{e30u$mvPbRy+0kVkMGSAn)lJd?$T|nozk9fa|EgCRgT1h~P&fWuH40%nO5`)zoy z_6ghhXLQR}2Nrypas+uCMXtw?%W>p%0;x|T=@fD~jhxOPwSv3yt3XtkF#rPoEIdq{ zs`s&oc`H|)>`zs9S~}qEFZHj!>v;}obC8=js{5US-?G=YUfrQ{zZv0b^I9aTj&)y_ zm2MZ>YgBpAjaeJMJdZT^g5uIM#e@;RJ*>RBa8_j7u(_MZdEKo^pII6O!kKKpO)0l}A%^A)7MinP~|RE@OPkyg3^ikb{M^G%R#c7R3iFWf*k zQBQFK=_W6mmeOkgJH%YHy!1c~a=L|Fj-lItgURe)+u%+*vCpm^KQC(4^l+Pp=NG1P zYew8b&UcY~4|&{2(gP$vL>|&3#f&gfK1Niu$vD~1?5|U@sqhFr20okeqO%6)GWQ<8 zf93V`Z`9=pa(;^3o*~V1vh>A2B3}6J1K@`5}-{Y_9 zPTqqx`!=>6-eY+^(gb1E0_?UBdj;cRHvi?D{MuXJe4yLgXd%c$clB5Z)`nskA3|Z6 z3Yo4mitX-XOl&l_?Y1x3EKBs+!DZptc@fs&Mjw#q8D3p$f2MWL5PO4X#k*(s%Y^tc}ACBjTaitk=1T zK|a5X?C4qd>m%oZj*FdRrzcorW!TZ+ZZ9r9cJ5vE=ksoLeLZmYU*{_? zreIYnc1pvpgO_7)V1u7gUyB^Y#(Spq9-P{LThh->SB<)Cn3#?on`b}=U4Xt%FY!vd zqNzevL0H zEXXX|UYmvG4OnYPgQiiwhr>Iz*WY4)sxo|hO1H_z@nGpHj6LzHkfnZk`9yn+;;d z_isr-_K(+U`tDp(z5j>C`B+{GJa;u2o^Z)@f6JutAO8BbePNFR>~#$F7Y{UT=IK26 zO!BszwVH0@gL`hpkS1D*ANvkZeBWhMajV>Iv$pPWDA?S%Vwk?z| zY#-nF;?HAw*7NI~ST4j)yRaKBf-XAqwB1mcW*UnzEFc?JZQ_BYH{+5wRaSqOe&P1a z86izM0@UQAFK3vzXZ$Zw+@d?vUoGHcf9;`9!0gN#_O5yww6nO z2swdW@JU4nvwxsLC+57nmmam|PU~_sdwRRzx8f-*pT=GXP}f69jC*@7u2<;c$(67C z+ZNMHMxVi&3amPdJ zJwg!NM0@p>8+HZ9_IoY($uDY1r<$wSjk%_n!p|tqz8UKIpfY{j?PgD()vfC=y&7w- zW5+oec%JwovSRg{uY6l}i{IO)3QydA1FLRg?cf>^cZyzbaTJgL^mA?al2l!O`1xN? z#@_Y2g}rWLhg$40LAV2*0xeT|`iZrx4%7~b-uRc!w@*e|+dCWXD!z3OnqlP}Ab!(y zxc0!!7ZY3~)0+&6eN%WJ%MY;TA@+QPo!dW#Uj8~igAz!q@6{0fXm08D;IiR!%3D5q zf>lqk<{9=H-1WH5FaOBWWG-t>qk%q#bG;4rFR;f;EKhm`%>gqs;`ZP3o;wG& zn)UM!em{@w-u~iitbT*F_$@@fvV5O3R@Al|dG_@zDRl2=txSd$Uu>?!s=@D+#4u5B z2oQf-Q`k9S$7Zi{4x{^)Y@M|AJ=T7}>W^4kkL3|YWgXxqZYdsU={%^sShqYa*fTr# zn;;@DAZo)xLIwNj?Zq$Wv}pEd?T=sf+&(w2>sggUFj0RILa1Y7udm06y&}Zr>sKbogdtpE}3Fq%J}Id?Sc+B$1+sb2J$$ z#Q-I}QE%26eiD8XqkcT}h4FPX(m%ARWCUPcG8FoOJjD7L@hL_&yma+Czzj^+3%bYbty_PubL+e0llh3U6V5aF7 zF)^X{oxbj?L%Ln>TT*4;CN7J}8;FA;9teChu-nbd@2WK6&A#QE4F9Y=n>cPHYMcY( zb-wysMQgoon)vW?vP;orry1UT^DCbm4%)nlXf_k=oTl@{S5-TX^yl7p(9Msh1_h4U zzlFf6)lED);aJRxkY~x8bk_!7|0%q39}))*+WM{Aik=~f5z+NO_Axl;5jme|3W(=c zB5xzk+ld=2o;xa`(X*MMtykdQjH`dO>a%2U>#7|@-bplt#B&#MZeIj4&487#(y{r9 z#;dN8@A3UE{ZF)rd;e-T8HI}p6#=ViSkjoMiD{Xq-{rTskWw=4tgk;hUS2}v_MODu zsbMFFwEOz)7G|YSnYNNHCEAZ*jqMRfOFHg7@jNZhKZcyS*~;k!MieSW)E?qdMuzVt z(mo>XClYr6{LSwr@sBPfex zlTBnTI*<0DN|Z--klmyPQJ;fmiHJ%;P-bDOIim0uoDR7kBR+yWL6=b-E<{go3Le-F z)B#;08rXJT0rD%{6uEyZZ;&^eM4(8du(*MDle@S?VX#=iE{jm_m2x|x5-?&F!lujU z4(g8MNg=G53ADu%YKhXP3RAxzd>PtcJ3y@j!30?mw{csr0zLR1C_N#DZ7D3pw&<}2d>BE{#90QUwTq0T9CK-UOxFoi6@ z$K1emxWPD7BvROm|A*86!)J>EMn0x40o0$RlWdfN-s8pC^&HxUm*7&eg`^ScAaN)o z%Lr;U^&R@R!R~B`7K#EB3krBVxgh z5rm>n6X!DW0ii|_b6n}llU;%Crbhva7QGXT&DKQENn5E#bKJIq_!I6NTgheUcrq{m?Dsk#}uSx*QRr862$7VBQ+DWM{DW*wZ0=*x(b1-9P6QkzbRcZ;13(amPAB zMgK450O1`_n`wCu3{3vhfg2b~^qf`YUvTGszlx^#Sx`*Pix0%*BXOuFQV=aIprwU0 z03S@lvGo)^97dTZE0WDLnWu%&ROEkNLTM`W&p@3)2&1V8t19|Q;WVrU&EmCX7j)fT zk9fQxv100wI`e@=v=l*uaFH}D6cjr~(Nqi=bQ;XtKl&Lbo5YzbUBl*U@-JR4?>lP! zM*W#++9QURVwFLQfzd?R9tv?ZwWwiBp)-ioytt?_?N){U8D^J$PVR6io>nK&E{U{e z3GJFhOUbmfl$Mq$x*Q`Zz;%Ys5U3BOg;WsGXh{Q-I-{?CISu<_lYcr8HU;=u{ATFI z!>O|Z`Q@$5MR8xfKgfRfM+WV&f_7g?JFlX>R?|ZhXjlqnLVvw4fH_0IMxmz{gD+Wr zyA{!Kb=M!-Ry%pD`(iEawT@P;r==`f+CW2!$fl|AsXa{-r~1?p!Eqx^MVWQR07HZM z#f29Af?qCLx*?Uv_x(=mOLAx_SJ8YEAgfo_4-*3eqG<8p$gB0nuXgT!82D4pv~<5s zo9Pi-XjMJQ1KNIy9~$yOA3yjcFlKM&@CEkU4{i}IEE$qeE8QUCm+z{VZlCSkxOsR> z?LfB{(m^6FdEe*k(T!WnCf-l{@o~LrW&y2^p|=80vwo5v?4tGJ8OpwV%;~?U_?@nT zbIVYlZM3wVmUbwz?F0w|A>s-_6(5t)C(vvLK|xA-^1dB%=e3Py62Z4KO)jryLKkZdd4ggSa09g*!3(y}_%x^t45IL_&sq3`(t7M$n|Fc81<}f|{2xv^his~5f3$VZ{(;pU5$HA@iIz>jRiK(_-UAS3J z?eidyS~}zetvX4&oT5GJ$!UNSf&>nS_2zK;3~;hqDnLBdIW9Q2nuIL#c)o=SX||<; zc0Eh0&e7h7$$6TJHu{?;!6+rMUQnzWV5ueI<|@O${-+l&d(a|Yy!~^p#7f$;iuSrl zOP6R!FPFh2kV16A0s1s8Qrh0y7KXS#|I8U||IGX(;R-EXRSb6xsLk>>fJMSawUQTP z%yz4>KO>KPw7GRPEnQc7+yFXLEDc>Ae=~Fr6Md-m^pj=@$ zoYn%D6fpJ=X{Sp1B@x?ymKR)kJo!k;>dtePo*KXZ5iLDd_&x!c&HBm8DIGBV;QwRN zMW?3qxnu56_K}$h^!}sWFIz)<*$;R{dmX0z#IMi%@pR7I8>Pt+C8sNH&F%1- zRwNQlBf;%Ywe}f(LKZkhxd4G-QvEF zh;CoZ59?<3jehoI^}_kD{n~^uQYZtmTq7Vvtaq-qr#;T~dTzgDhF#ILFvcaEaaqK8 zL@=(Aj1xNn>aX??F*Ec0 z%TZU#@|ia%(CdAK6w7!oW;Ah(6wgQrjFhOTv6EiHz@A(`-DI|a7D+&_;W?NQ8`WPZ zdh>OwtlHL#uZ-M1`$#e)Emh=Q#wZ^I0~F}89~Ard*)e^7$?aJYE}E5M3L{sLk4Ris z#rQXF^OGfG=zv2Dlk_F2jGV@}FK3+687YI2RxpsFSAsTrv)N>xZicULkfvksDh8%A z%W4KTm|#0Pux##;n9rMy#Roc)>VnppjI>7KzZL}62l(iw!?Y$+2Mqy7&I}px`-^&W zGi@Tfj&Vz4)&m7NJ{52DCl`GB9vINQMZZoC#Wkf_jN=BTO9}%CPb{!p*T#lS-ZY@| z;6aBcaH(gAxN>Vur_v!)b$1r9g8G}- zIU9Tp-SR{BFRdQ9(|cYaGwLF}3v`~MH;TPK^LAEGa z$@i~3rnog<_DvPzeUVXLVx-HE9w4ZMD`40_v!7))1k#29b6!n2zweQ@?b@7}D_4@s z8S&`#z(IM}H=pfknOW{B#m8P{+^;e233Rm*0me*PoEiSd!jV^Bb{`wjw0A|&*M--? z4CDsr`cHlrm!ott~ zEk?S{NVSY~hk+H^UC_$5)V!yF2YJ#6U#LTA;l6^m!Jtfn;x~;VRhto608LSDw8zt3EPPy%I!0EEQtZE3?$bn}PmAg^h`6*H=vhA|G$j z;@3_WbL{d*T<^6g^h8Qe`Kgv(5FcOT|uWXXGjinlqqMT=|kiLoy|OFUNY1NLT#~re(z|8jfYV=tnc{0 zTZfL{HmsSy?Fgy0qt6s&xjZSFhRyIHLdDacJT&9ehphedA)6HePtb5W07#uCdk9rv z6S+t!&k(BQ(~0hdq4*hdi>3}KL{1Xwgi_WpRE1KOGgPHg-ejnoN(ue$LCMF{8T3aw zmZ@T{GBr#cLp@Yl?-1%KltihAx|d4bGccA?9-^t&pDx}TW$0-_eSosT*5ynEO?~`y zLi-4n3#-mRgLO~V(KNZ^w=j=L*5gA-IXnC>ZwO<6F*xHM09z3tmic6_NC6V;AyPz_ zGg;uJ`xz<~YCsD`hYvKh4&F!#_-z(LWx+EpqM^?jg<%m*Wh*s`Pg6PYq&Vg#D1`zT zpVi>+3gv7DMieUTV4&TfF5;d~AF^NJ25xZ>$|nCErT>mm>ZsB$nx>9J+29ahv{OnQ zc>Zb7k=a8|l7r+8eH~ow)5WOz^daSnBuc&j%&va=@ar(#8g@4oHNe+vpyU*DDrU-N z3TOzy2cJ&(nL@6Hp`JqtB&_79m+(duS-}_Tl;;fkDg(I*BJfi)8x;hnT9jo0D=lQ@ zVAd&wwF_mP!&pr?YqyBC<9MM_V<883ieRZwN>QvF&1z#AzMI<*YhLx1SG9w)F;BI~t;bx306WY%se>$Qw^NMYqv)-H|p2xlh?zEk`J z-&MrVIwFHCXQgz7eImBjB;X8ITEWUIS+7;B-D-u&K_tNUO>6ThoXJXSSj}2iyN$aKIY+>E(@EumV%gXmyr~9lrmOYLITgwsrfR!Gy z@*~!<5XRWJMxn>7^n`VP%DRNGpEa>+Ks{rn=dAh#Yxk1XhOg6bslcG2|no~!!a2dyp+VtG5=U-YBDb^<>h6(CWZG*<%brs>;5-4uEuG+w49f3|I<4O zrSnn-uU)~bD_FQJU==xytmLItJos%ZYsFT)nwK(p)f!%Vl&!&z*4i6*EibL(o!9f~ zEZ$=SFNZ7EIAD{k3}^GwMjp(u#0Fj>%HgG4Uf#rOVp+I$WTjGyH}ldKUM^%iSu09N z9xvtdngU+6mDg<^h#xJ1_0v<(<5ykoVlh%SF8NZr)8vkjm$KD}_8#%u6M_ zcO92!6J`r8<)uBma~W^9mv`RB56xp^2wd#2_KzU@d1)7Cec6W&@KQOiKFB-m;?|M% zHlwW}hj{5QuRX$#Im(Z&0Dd;GF5zRmbexw@@S2mn=P6!wn%A7+z5hF92crsJI;$Ys z(xxOn$4lpVn0MaUM6AOXc&UTK{df5uDCdG!lk8^XTDwkUdyU-Hr` zUi*S=Y9$#@Uh~o$Ui+4Z6@zjy(pnvY>v-uMFTdwiv5+Wi9j*u@Fjc)=w>a7q-^c?yZy@CR4ftzwy$2vU;Zk;+cCz89lpL0T%v%LI=U0b;pp zw{NWtol^xVO;9ZtAPgKFt#t#_1t~+&tPq^nu}g@}O%upUL0TnfRtsL4f_9DIyjFlY zNa1PgkcZX@(t5!oOK@1hdD;~6*dR#Rf;Q+M*D56&1t~|+9^-7jb`IqV(k20>@oP3j zuj0*uv_){r6I>Fx+o;y&H8m(-kO~CVRzb5(@H)!EwJw{uPw;j@+5vE~Cv7B7;GKe0 zD0u7=oK|rES=ptKB0<_MI1~%RKXOaq%e+Bsdl#zgZ=^8oQc{veCNwh&{iLk8}O zZ!VoCfaCU$>ofW0n;ApI`T{tVhEsS@e+L%Tvitq7-08Xg%p{~~SUgNToCghzAVFu`(_RH+7_FT;caUKkLD1G`;76akh;0+9nn2jf)$ z^kkSQVDG&fFab&#fO=Fr8t}BheDfYEk|?{9i2lhFv z0fA#Ooph5+yF#RJwtc9r_807{u{F&D%uc1kgBIiiU|%DK$p^dwz}tM8)~S$ry34!r zyaI%LO91G6A>dsF;%k5{0zA{}fC-YyWGd`x+lfapuqgrjQeaUAY;yq3`X~Tk7{lBE z!ka*F3)q!|CH&jeNGb8yfU$fxvVqzE2CI{YLX1!Y~hL(p@SKf!WkYTnwdz*2K_WXaIsnAi4*dsC0u=s=iON zq9%_uK-dh-`P(e18ZE5_h@SwnR$y}$;HOm8Q@z3DVpjpr0Pi_4ci02Em~G>TdO=la z(^0G`Coci-6%f7#c5i@#!&?sV^=|+6!8^cv4}|{!yANQoLp!x{m$=EeNe$N}9|3Ra zC(44t-CZJgq24H79l+)@;N^fXv{h7I-5`Dif^Wdm^gDInLkauQN$aLg-2I^Kb|^CS zhfFZH09^8D*0kXQATJQwZVrM>fLnL>2SeMbJE)pONt;*$beW!deFqE~W=PB532m2# zKxT*1O|F(IJM##I;xH%*hYq`-83hI7Za5;~;;9S&$2b!5q9AYcZpanlMBB}!i;QT< z(?a1MXh$jS!Y&5d#6pWW$cu*>+r7|cALMcUJ#s%}0wroGS1hIM02D11bkULkm(M>) z{kpkJ)wJ-=E<6Nn5}}1`KkQaN424Ia_$U+|gNu`(kk2icuI5UHOH-ij{Ly2&oTWmW z9B>W*#0)cHG)x*49f!7#L9lCeq(jjO$aB05x*jv2jjTJsNys||1)GyWS6Qc_?HOp1 z2}Nfi?;5a`|4oxuID2PNq&>Q}hHUtICd{E?naaD9j9kb&2hBD+cR4r@`KA{%lnA9% z`X{Z4vUL%PE9|cpfDeb_=2u7;$SB%1(0_c3a>!BLdd%c7hi+RDXuI3g|-L^ zuR}pG6qZ1H4uUSzQfM}=3^JiAZrkeI9R6jU&(VGZ@@_)mEofH`7dzaBOpupUuKw3! z1#~d2giHt}M(Hk5c6D17w73KL@!&33w9>s=d#TrGO$@LirGpx8FZp!*jjFC9>Phcu zW!_{+h)nNxWAnPytm^5SCo>&|!@j5geVVmly2F>YK>ibG)(Y9D zkbMT(=a8M)2ASQ?8>G&gq{{W2hb;=_rWe%R|3AE>_-yu+$nYx)N>@m!%WLgx-67LM z0b#8!$L+o}V(*xH^$nB!Bii3U_AO-JLDu9wO~9G1aE1IInzplq2Kk_!tv5;<1ITLY zd1{$zd0y&nx*airN`<>W(q7OTp&6XmH1kM8?b?cuCJY3<(B}t?6SB0>^|T5e_9J1bv>6~$_K<$FaK)zxXb#Z z_K%$7S7tx@3Lw`{zH)7I^T|2)6mHia+3`F8*#si%Ahb9biFcqSA0chNoru{fb)}Se zNkb45ppi>SK)rfZOUS4r#*>FPSlA@@D+a`k_m8XjCbK`JcwkUzMbgmQLt^*)zCp!={BDy@G3*Zd34};Wxr!hpM1SGg}zzPjQy@o*{)3oY#B>8ZyAmaaW?Vp=kt^&1B)PqLo=s@h(>COH9; zKW)Yh(xg5$ZyE8>DR0D^o>|B)8;Nren~UfMa*l#P_Xr6-fzE4({bZ=QfY^&1I+tjo z-tICAPOyVMZ~H-?<;}lV@>aY$H8c;g`J6@pHQk`@RCzsS$<`j>#jO=@21Liczh!V3 z(pB|!jUpj_tFL%UqWu%Ee#w-Gj^ffsKjibG{lN2)w?58Ig`~H%L95(anp!o>R}x#( z8)Rr8iQjnpcaPpf_498{d4A#9&sQ%a!4)*N5ZPTt7Ok)uo=5l^P0mfFCgau&iY%Y` zmfY#RplzPw*@z;IB7NL zZ;jP)$4Ng(Kfdwz5@b_~tc>D82$(~r>osbW%^7E8dQ&zo+y1(?4B6a3qE>iQyRx5w z;1;sTLd}qj=yN8Z_GWBp-jUH;<8H6JT8`M;T=)vgt5UjNCUxfe@0wm& ziPFVQBA>#&(eWc~Z!*li0f|qei-3%*T>EzGwx;~pki3ejmTg9HkZkd8db%nlH9zwA zw#?uMvDxEEw4Ev_KXddb0kO9k8em+87P`+KTL-BK8?#pCh_kw;}ot_H?3W7&o~q-K<||zmsYG zULy7t=lV5W7jB9V+WGy*&DT4S=dm_1{ua*-@f9Oy_I-ow-y-2V#J)%DKZyOnc}qm? zbY&=|9tx$JI{Qd7>-_yfo7jKQT~*mDj8FK=BRz%)YR3aW8FLXgygfeuX?(W@qgdi_X7#%`(e8Ct32puh?E$$4qv?} zAyRt2N=*3Pz zmdRHYmnU~%hiCCsw`}4?L4Xt%8hz!xc=uWvH72F%(ND?SG3$>h6akpoAyqj`Jh*L; zxh_+cRxVuT_|FfeW`Ibm69tHgQ$o?%#upEeEu(^d`EttZDa z6(`~V85i|+SpfSZukZDj!^~@keK-WjBcYwT@|gSgk>;Q8&hcJ#U(wK)OH6MR0usMK|5x&I<=dIho@d`1v*mN+4L}y1 zI~wKZ_P*(e`b0$3wPD49m<{66560YggqmaWQ^eLZSJ}ACz^ic$^K$L~ssZFwONEy8 z%vf|WC#7)EX8ln+utN^osVyJ)izWn%Lh;Hl{JSH@P9#@hW$N+paF&1E5X<%aareV9 zyNh!lK{<3*$hsHuUBR~=dfS_;t(V8Ix$%6xO#>i9j^2=IKh0}hJ8t}w>}e&U$AB!{ z6E@F~sowHIWg}f}KPIpR&|>rpQgWWJ#Oe(Fi7;EIjlN#yMH*F|e7d#lUYPZ_U%?yu zNNf{@9m3IWOh4i!o1$r9p7iKOG&T0<$zjX+d}c>!v{m%pcYvhacDWt6I`i@SgK=!} znaO5aY`X`Wg`*hEgn6nJN~ugrUu&_{kwPIOzL6!Lp6!bAcVGRhTSc$3Z5@Ef(lsMm zhi99PE3AUcFV6Z@5QkU9W8q%R+lSfxm_2}5lLYEas#GeJ9!iB=8invdnh|#>JcQ{Q zQ+q1qiB!OyxJZ#z(dv*7g>&53A1zZEk3a1PiRIap-&T6heP`+M>)52n3ycqAyCc}D z6&}U(!06?s(zwx^i1UaDoIzgbe8){4vttiEp0!*O0Lh@aN7wZhXsY`zeb8qYSv=zy z7A0XpG9DX>=$S=MW=B=@z(T z&LH2^5|N={=&nrdBtwT8=HjMeP_!}4AvB+*;r_cdBRKX$8jU%6Gj z@1H4Hn2H5ySQw6ubL&?v;XdNhX{Gc%Ejxjk0O@)H4yDC3s?YSD*lx37`M~%w8QA_L zwmpT})0iHi6A?Z`A@WqZseN7`lJ?uy_CKl%Ux|h%o!Ir@LF@rY2F}mgXm&9Bmw6pA zo^uxIm@Lf1)@QNxNBB4OuaNIVWXq1V{wp4Sn6Nse|Ewy%k>|3oFdHxC=g^eAX;a80 zGD|WHeG030cCCGsI3ROsMfjFOkeqZiT{r8MZr!=Mip}O>%l&h)?bLJH2SW_`=dtyD z*aQg?%(|`ljTnC%Cit?ts--avl7zncJ&etN+dSjq$jN`)xyQeNtuA8TC2W(2mxiN! z%=nuW(7c>B;>+5F`bL^`NIE9ZI2=nVb8Bx*GA90sFRQ!zP{^AvPv|@@%Ir4Y+>b3%m4CkO?r9$ z@7walQJGh37vymY7x2lFm2cI&zbS& zhNC|5*@xkIkT{PTFY@sXb4(_W%tsSnor{o63kq}}3-}KPzhC`e>U&JyR2FAKQa8+b+LR5wzm-lboRPX`^2!28=KT47%?Gct<^85fR>5$uxy4vi zg2knnEyL{i8?^b?d&-?Vzt3(`E;lF@Tj*QxmiE9<1D$fbxD?;kUK%<=Qwm9b);~9l zuI^asx-_pXV&2vbHz28g9a+_8eIO^}`E*rkue}Q@AXyOcRDVK$r>6BsMz~}CW&H}w zb67>v97aDWlhwpk6~>$zd(QuTC0%u2-Lp zY`2>!JRFZmeqFJPrgF|2pV23dXtr+IsHnzl4Yw86((Obp<<2wdk3HR&=%#D;Hy(Cc z@ukQ2LPSPd+&eKfb6Mleok6!Q2RSXYvjPnG2pDg`z$mbV*+|C>mqnmP7nc^R_;j~WN4yUHrLF`+WQ+4 zu69vuRQvjYAg~jJf@r`+Oa#Y33OGfRzXbBZ6;KF@!3|IWYCs(b!42RsXaUbaTW5(M zK?nE>{3wdsV(0R&C9Q-L07QiA3R0XVp z%o{E(`~@*5v_Fp;qzxURulYtZ9x~V3n{(~r%O#hEQ)oJc;5@7Y4=A1upaNFlHbCuH z)9P{|^Ml&Z$P`*N71RJGj-#s$(Cc72rU2#`H=d*y4VaFUi4Z#WOoyx07b(lfIG!Uh zb6TbFRBC$}O#)giFftK$a7MI$;;3@p|839zHYanK&UX^gikM?ufKYnU=cuOr5<$lv zY%qKXnourgQaHyTgZr<0pt~C~xhFP@b8-W4z%hro8M-cVsf+^4GUqw3l=3ugA^i>bQlb9tuwZ=Dv31s2Rg+DMUSDka00C$EA>7 zs8L(m{u7u}-KN85XHpqD4GTdwWQw_nRIj{yte_+1_ZeU+=`R$3GI2X(;t`YEZLXtz zHfjVY>|7p9`)iyJWSJ~rTHsBBmx zW}C41G3Ga8ixzBqAJf0?xdBfw+ls|cIep!3S`}g}h%k$Kj#F#`)UpBjIkSbav4?9|Ny|ZKM z#fkj{{drK036i*qWPQnMwde_b$tnKn+1ly99*MP97Ys0m1DRkip&KXGZeIO)*TcZE zmNkWsu*dT6(c6YA^W!FKU0&wo>KEbInIESNA1wIQY>3HF8;CLPOUArg0B@Ta`zI&K zLdFhrU8N<^wuHlIIEgp)H+8?$^OH^qZ6Uv1NFIhp8|esid2l!rED^7Fck4@-@p%EG z+mmP9+%l_k{kjEddV&!=sLup#5K85J$$rzng3ctX&q`F!_8rxbxHeTa8t7_P=ET2T zn)vE$gUhsWA2KS{tTQaZdf;yCVeZL#nHvnmVkU^IM#2OOWum#W0Z?ZcZ@a$*Ql68( zj0qI^%H>Ru+|N@4fF8prc$64*IXEHGXPKtG1r4eUMk046}{381k8c$a!~(Ouz$6aX>;vq6V0HkQ!~+|HZZ{aq02s_L2Z7xoV7$h!Cwc-fj|Jjx zL829~J`9YcM*tJ(>n=MAm=JHdyF^UQXhp|>-Em;K<^&bGi$y)gNu2S(ZsTMc<|JT3 zr4nzERPG0$#z@r!yiLi=1w5ZTK)LZ$c!_)R%m;k4B>;?Mm;%5n1cGaTy$*N=MSuws zd3wsQn+*W8!eU^31DKTnlbgUM3(y*l0swRvrWEjR0n0LAdmH>^c83~Ch29%5rXCrF zDF?i}fPW9z-UpTyfUkT2?Ee?VO2B&v?0mNNB=QJYRspseSQ-q&k7;4FyJ+HC4D*C0 z-J|jp7)`6;Vn~IwD24)23oPq^T@`pnXE%sM^2anQYElpQ&w;U-WC_)xl{ElCBQScQ z1lAbY?Zj;JpR>7GV1hI6A)P5MS^9 zZy$UBypMqY3D|xHrjB2zm6y=n^Izdtz_VzjEJ(b(gko3fOiA%-1J><;mj%AjR*`M$ z1+fEIeg{hoeozN~l(C=Pw0d;o-U)2FfSth($OLo!?0S-BP3iE5yq(a-Cjc@5?!C<% z2yLbXQ8l4dCXxa*rk}dTU@aXzT7EFJu?T@oh*Ih?dx_+<@a`^5fYyo7M0x;n*ieQKL;evc zI125KLDS=qZ^kX3p6)sUEs~&(;h3>K&XS>Z7Pt%mVsvQDC!yUbXtO2&_AHJRXm=Va zd28}O&vPoYmi7ingEnWN$ysQ34)U%68~HypU5ShDc?zw!yc_Iv$jgA1J|{p=nHS*l zv+yF-@|5{@%QGP_3mW;j^oTD(yUWmcO-yg3Y{2g8wDC1UeergiIJk zTIwZ~_H<7vlBsw{La$Uraik+xJl^y1Tx{msbaB2F67F?Pid_}sgU-DNGhwLbVx1?*>h;r0NF;!zJTmY$WCs8Oti}ek&A~&x}NjkBawQ%qVE3t&`hEDTOsts zuPJ0bAw{llXbg#z)a`#HoY1!PeTu4Lb<;Uc~+u zN1b|m3gzqRn%PI8=wV;>1mgW1FfzGNbzgIt;03lLR7Q)a(ltlIZ2d7=orHpyjm2N03no%un*+iHSK@40#$ zGnqf=DB>MMX2%h)fs%NFf=IiT1|UC6)-Kc-IX*SW?OgKr`5sk)kcg6sWh)A!$4#oP zos$*&R*{4(lac*NBxr!A5EDrE>J&=6OmtdxNMpEeD&nUhi!+Eli`W_GsAHL2DiV6( zx&Nr{Y3SHRLZa2S!mx1k{A$MmF_$hzMiiiGIr(7u@GLygN568?je7jjPmjgS=bi{n)>@^ob~Gy7yslOx))?!w*B^uu|{9 zh)FGxxxWSPU$WaG<^&|$y9;gg&!^F8&GN*Ak*clhH1B+m0we%QDKU-~;jOS{N_=z$_+U5x0}?gnCl z#oX3EkDNbpwA_GsHhSM5-)42S{x-7&S>Hr<4X~7AuW;s$(hX#2V&|?`+9Jbsdy^;F zwA&xJdkdMIN6#P`G4Omq)$O>_++$<5?7Qo9y$rFpx!ms1=9P-pdx~7Rp8M%Fb?;*n z&8{;m-mKepX>M*gT5=be=b?Lu*(tuSsu`rGtUz`T(6~xu{t($bLPk}TB*Z>O?Bplh zvh;R$QwXK5?n3cY?#RYZY5H_ySI9_b`N6ljB{fB(D$H+x&Wjh;AVC_s3W)ywwI8=^ zeV!K=mV2+_#nzE~A+ao*wEtAXw4m9J#XFw+rVO1(V%8|@KSpmGm7qKK&=6DE_`E_$ zTwiYZ-uYsu#SUWOx6S^KfLde|icSKObNQRqQ`Li+wzlPF*3sa69kQDCOm&uMJJcig zIahN7P0CG5Z>+T9{9LQQ65}l__gkiJ3SZcoR}RVC>?t!swKZ?*v^?CI(C@_3Mr8j2 zu`dzZgy88{MLtRl_x>4|* zuchi*OgYqo?B5~&d&GV~>_^0Y;=CO~pDBA%k+(!Dr_R36%zAz!qTcoBO1r-Hsit9j zY8ZgjcQeC+R7=d?-NI@RlZP=ePxy3pZ&7^#rU>`ew!aw zJ>Et_PdBJ1jCsk+t`s)D`qO#u4nWLJHKUfU*f5aE8+7-0|M`us~hPF<`c5#L8z)Xlp<|6dwHbdryr>yk;;-zc8bV&!>srv2)BysXLlyQ1$UE{n< zvC3!He;*J9NVbMW%oE9*e_Wk@Zk{;e@)Q*yMVfmV3xnBTC z)VIp0*+DngSG9WS=HS@nrGQ*`x^>8y8Z#@c(wA#nvYf2r{4u)|)AR!{_v#?$cx&Ii zCB@BiLVDo!ea{wNvfo|_NQnv0Y1hX7Ns{A0J}sl{y1;+Bd-&qfjbWJG#kmj1+$rVRyR<7UfA&%LZ+vLAZ2#)A*Xylo z0l7VWMpH;^yf8iF;h*KZo89XH`Le6xSo?4{tqIYEbE~0qW&;KPXi?MRh}6wOx4DT2 zbzh}410@-&X<=8?@MWF(t^^Ik-R+knuyrJM3`M&!eGM0S?4gAz=>3f-AK9aqN0%6y zF(IWf<}n980CMbgBN8p|w=XlGz+y|W*1ITd6OD~RQ4D6n6>^DG-9E`!Ks7vj;Fc zGoCsVNu?60w^Sk)MId~TX2jhL4`I5%Mh1xXE3nbf@1EG7+(K0lB*j*LZxJ8+W*2 z&N87tBty3h8T>A3>d={)ThEVwU}oRg|>f8?F%X`P|nC}(=32&`kpReDR` zj#D07x8!jYBxkD}Wmaw*PG2q85`>4(oqhuIldxqn=F@$Ua!*f9?k(*UtyJP7^i07_ zfM`7dhg0^}%g<{}ZnfU9?AQHcPh<->$->6 z-r4CUrA5}%#Kl80;mw$h%b@gOf<{id`p;p}{^zjOKiKLsJWu^g#DR$Tgsk1^Q2TY# zsxZwt6+84Vr(=EwHZ{9IQ}U%vAr^WrA@c3b*0R73)UwIl#p&+#QwflqA`2dmR$e(D z*J1PSTWiyli`ZsbrbRVgv~EwUN*MAf-OSPRm|+1nM3n(-iUKm677-76iC=PR-q&JPWZb0ru~Y% z-(TqFVRlkJ-AKH-w+pAtMI@8a zgUdf~$DT#Ej}MZLuHA0*HM=DZ5>?EcSM#in1x~1+ms`C+Cn_D1RbSSme6>%IuUfEi z>}P$YR$4V8fiGC`tMctTo03|x+Zyf}XF@V|;e>|czg6=?22bp-VKK0{5|P`rDUqi; z()SzdjcPYzYa_BDX|2vGHR$(aq)-{n7%Em=zXZvxb!Cxv0zbu_71k}PpB_>*iAeSK zwU%2hy4JMzCi!~)e#u!#3=J<#Ty}V7pz6=Ch_0z~Jx#AdGIOw}u0Ti1rK%e?yl)vcy@7AX=!|eKh9vLe zm$H%9LoD1Za^LJ;xMf2rB)=XWaI_9hhHu6h+!+$}qqPK*gU9cEPapE=Kc2&3>JKV+gt?(YDL+l}z_|Q9tQb$V}i%4E|iR=A& ztNq5L9aC=c*(j;N>;rC-tE3x+Sj633QX3Rrf2pOa4%Q!acKF_>GY=7clgDY((wElH z4h_0f5ahhr)*LY4D_}eT19yXsj5i%qVIp8EAYkYj{uLD>e_V!kqfYb|hT(dYg|g9s z{wNVuV5T0bg!(fy57LiZK*1z(Ln>rG^~~ne$38}dupXR%*^ue#o}F0CDJ4VZ5jWNX z`cVro{c}J%%!K~15-6fz6#XuTIKNY#QrQ5u6l{)w!8i);h3WV(JP1zGms&)v$1`6! zC-IOu+O4ll;%4&@lgf>Okcp%;R_#qoUJbFJ#VhYFU^`=AKVL zCY4kFpH!ZJ?qqU$y%y0Csz3r@O6aeCpI{ekL@nqvK1W$%ZXqy^0Tqxbr^4=OI$6P) zRwAZ`8&eT8k;zc$j@DJ(9o0`|uBQoWyYp7Bn$I^fxAN#f{8g^r zn-$x3fFKYGq5v2E7)S(3w2owO4&;D*Pyk9nF|Do=JOaVEo`Tu{nn4qILwWrG+CT^B z1pY7>hQbIK38SD2##0~@;9+D)^J!kxrR%mJkdBjR8U-})6AEZ8D1pu34yIPCXhE5f`9bw*G>YwJ4hRZ8 zM_4mp61Xu5(C@c&Os6mLn2wZ+U^@0ofvYxOqC6ktn2x~AKQf6z>LMB?Re9)71W~GW z`ZEP>oFQ$aSZbj0|84r;CZ#>fBvN@d8;yuL$^{9g_eqX#+BFe$?864ar=Sj9#LNlK zF*wcrSBvj$iF4c&o6b2Y1sq^Z0wddE9-q=YsBrkwslUGN{c_`xOgXxnTOeb9!7!%zpshJXx3k diff --git a/cloudofficeprint/build/tmp/javadoc/javadoc.options b/cloudofficeprint/build/tmp/javadoc/javadoc.options index dd23df58..3deefa20 100644 --- a/cloudofficeprint/build/tmp/javadoc/javadoc.options +++ b/cloudofficeprint/build/tmp/javadoc/javadoc.options @@ -1,122 +1,124 @@ --classpath '/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/build/classes/java/main:/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/build/resources/main:/home/jaak/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-math3/3.6.1/e4ba98f1d4b3c80ec46392f25e094a6a2e58fcbf/commons-math3-3.6.1.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/30.1.1-jre/87e0fd1df874ea3cbe577702fe6f17068b790fd8/guava-30.1.1-jre.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.7/69d9503ea0a40ee16f0bcdac7e3eaf83d0fa914a/gson-2.8.7.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.6/815893df5f31da2ece4040fe0a12fd44b577afaf/commons-io-2.6.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/com.google.guava/failureaccess/1.0.1/1dcf1de382a0bf95a3d8b0849546c88bac1292c9/failureaccess-1.0.1.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/b421526c5f297295adef1c886e5246c39d4ac629/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/3.8.0/6b83e4a33220272c3a08991498ba9dc09519f190/checker-qual-3.8.0.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.5.1/562d366678b89ce5d6b6b82c1a073880341e3fba/error_prone_annotations-2.5.1.jar:/home/jaak/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.3/ba035118bc8bac37d7eff77700720999acd9986d/j2objc-annotations-1.3.jar' --d '/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/build/docs/javadoc' +-classpath 'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\build\\classes\\java\\main;C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\build\\resources\\main;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\org.apache.commons\\commons-math3\\3.6.1\\e4ba98f1d4b3c80ec46392f25e094a6a2e58fcbf\\commons-math3-3.6.1.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\com.google.guava\\guava\\30.1.1-jre\\87e0fd1df874ea3cbe577702fe6f17068b790fd8\\guava-30.1.1-jre.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\com.google.code.gson\\gson\\2.8.7\\69d9503ea0a40ee16f0bcdac7e3eaf83d0fa914a\\gson-2.8.7.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\commons-io\\commons-io\\2.6\\815893df5f31da2ece4040fe0a12fd44b577afaf\\commons-io-2.6.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\com.google.guava\\failureaccess\\1.0.1\\1dcf1de382a0bf95a3d8b0849546c88bac1292c9\\failureaccess-1.0.1.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\com.google.guava\\listenablefuture\\9999.0-empty-to-avoid-conflict-with-guava\\b421526c5f297295adef1c886e5246c39d4ac629\\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\com.google.code.findbugs\\jsr305\\3.0.2\\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\\jsr305-3.0.2.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\org.checkerframework\\checker-qual\\3.8.0\\6b83e4a33220272c3a08991498ba9dc09519f190\\checker-qual-3.8.0.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\com.google.errorprone\\error_prone_annotations\\2.5.1\\562d366678b89ce5d6b6b82c1a073880341e3fba\\error_prone_annotations-2.5.1.jar;C:\\Users\\Ramchandra KC\\.gradle\\caches\\modules-2\\files-2.1\\com.google.j2objc\\j2objc-annotations\\1.3\\ba035118bc8bac37d7eff77700720999acd9986d\\j2objc-annotations-1.3.jar' +-d 'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\build\\docs\\javadoc' -doctitle 'cloudofficeprint 21.2.1 API' -notimestamp -quiet -windowtitle 'cloudofficeprint 21.2.1 API' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Response.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Mimetype.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/ServerResource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/RESTResource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/HTMLResource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/ExternalResource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/Resource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/URLResource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/Base64Resource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Resources/GraphQLResource.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/PrintJob.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Examples/GeneralExamples/Examples.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Examples/PDFSignature/PDFSignatureExample.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Examples/OrderConfirmation/OrderConfirmationExample.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Examples/SpaceX/SpaceXExample.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Examples/MultipleRequestMerge/MultipleRequestMergeExample.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Examples/SolarSystem/SolarSystemExample.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Server.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Printer.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Commands.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Server/Command.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/COPChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/PDF/PDFImage.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/PDF/PDFInsertObject.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/PDF/PDFImages.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/PDF/PDFFormData.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/PDF/PDFText.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/PDF/PDFTexts.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/PageBreak.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/MarkDownContent.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/HTML.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/ElementCollection.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Property.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/Code.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/EmailQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/VCardQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/WifiQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/SMSQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/EventQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/TelephoneNumberQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/MECardQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/GeolocationQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/QRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/BarCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Codes/URLQRCode.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/FootNote.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/TextBox.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/COPChartDateOptions.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/ChartOptions.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/ChartAxisOptions.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/ChartTextStyle.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/ScatterSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedPercentSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/RadarSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/PieSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedPercentSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/ColumnStackedSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/BarSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/XYSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/StockSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/ColumnSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/AreaSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/BarStackedSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/BubbleSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Series/LineSeries.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/Chart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/Pie3DChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/DoughnutChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/StockChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/BubbleChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/BarStackedPercentChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/AreaChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedPercentChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/RadarChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/LineChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/CombinedChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/ColumnStackedChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/BarChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/ScatterChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/Charts/PieChart.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Charts/ChartDateOptions.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Cells/CellStyleXlsx.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Cells/TableCell.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Cells/CellStyle.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Cells/CellStyleDocxPpt.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/CellSpan.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Loops/TableRowLoop.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Loops/InlineDataLoop.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Loops/Loop.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Loops/Labels.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Loops/SlideLoop.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Loops/SheetLoop.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/HyperLink.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/StyledProperty.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/TableOfContents.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Watermark.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/RightToLeft.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Formula.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/D3Code.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/RawJsonArray.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Raw.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/RenderElement.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Images/ImageBase64.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Images/ImageUrl.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Images/Image.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/COPException.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/CloudAcessToken/AWSToken.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/CloudAcessToken/CloudAccessToken.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/CloudAcessToken/OAuth2Token.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/CloudAcessToken/FTPToken.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/Output.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/CsvOptions.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Output/PDFOptions.java' -'/home/jaak/COP/cloudofficeprint-java/cloudofficeprint/src/main/java/com/cloudofficeprint/Main.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\COPException.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Examples\\GeneralExamples\\Examples.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Examples\\MultipleRequestMerge\\MultipleRequestMergeExample.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Examples\\OrderConfirmation\\OrderConfirmationExample.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Examples\\PDFSignature\\PDFSignatureExample.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Examples\\SolarSystem\\SolarSystemExample.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Examples\\SpaceX\\SpaceXExample.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Main.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Mimetype.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Output\\CloudAcessToken\\AWSToken.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Output\\CloudAcessToken\\CloudAccessToken.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Output\\CloudAcessToken\\FTPToken.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Output\\CloudAcessToken\\OAuth2Token.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Output\\CsvOptions.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Output\\Output.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Output\\PDFOptions.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\PrintJob.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Cells\\CellStyle.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Cells\\CellStyleDocxPpt.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Cells\\CellStyleXlsx.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Cells\\TableCell.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\CellSpan.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\ChartAxisOptions.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\ChartDateOptions.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\ChartOptions.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\AreaChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\BarChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\BarStackedChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\BarStackedPercentChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\BubbleChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\Chart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\ColumnChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\ColumnStackedChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\ColumnStackedPercentChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\CombinedChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\DoughnutChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\LineChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\Pie3DChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\PieChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\RadarChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\ScatterChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Charts\\StockChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\ChartTextStyle.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\AreaSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\BarSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\BarStackedPercentSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\BarStackedSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\BubbleSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\ColumnSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\ColumnStackedPercentSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\ColumnStackedSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\LineSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\PieSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\RadarSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\ScatterSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\StockSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Charts\\Series\\XYSeries.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\BarCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\Code.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\EmailQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\EventQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\GeolocationQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\MECardQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\QRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\SMSQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\TelephoneNumberQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\URLQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\VCardQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Codes\\WifiQRCode.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\COPChart.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\COPChartDateOptions.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\D3Code.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\ElementCollection.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\FootNote.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Formula.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Freeze.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\HTML.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\HyperLink.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Images\\Image.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Images\\ImageBase64.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Images\\ImageUrl.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Insert.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Loops\\InlineDataLoop.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Loops\\Labels.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Loops\\Loop.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Loops\\SheetLoop.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Loops\\SlideLoop.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Loops\\TableRowLoop.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\MarkDownContent.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\PageBreak.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\PDF\\PDFFormData.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\PDF\\PDFImage.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\PDF\\PDFImages.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\PDF\\PDFInsertObject.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\PDF\\PDFText.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\PDF\\PDFTexts.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Property.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Raw.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\RawJsonArray.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\RenderElement.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\RightToLeft.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\StyledProperty.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\TableOfContents.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\TextBox.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\RenderElements\\Watermark.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\Base64Resource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\ExternalResource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\GraphQLResource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\HTMLResource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\Resource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\RESTResource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\ServerResource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Resources\\URLResource.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Response.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Server\\Command.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Server\\Commands.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Server\\Printer.java' +'C:\\Users\\Ramchandra KC\\Documents\\cloudofficeprint\\cloudofficeprint-java\\cloudofficeprint\\src\\main\\java\\com\\cloudofficeprint\\Server\\Server.java' From f22b479ccb621f2daabb59e8468a57b9504943e9 Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Mon, 20 Dec 2021 19:12:39 +0545 Subject: [PATCH 27/59] added insert as new renderElement tag --- .../RenderElements/Insert.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Insert.java diff --git a/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Insert.java b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Insert.java new file mode 100644 index 00000000..0a5a88ce --- /dev/null +++ b/cloudofficeprint/src/main/java/com/cloudofficeprint/RenderElements/Insert.java @@ -0,0 +1,44 @@ +package com.cloudofficeprint.RenderElements; + +import com.google.common.collect.ImmutableSet; +import com.google.gson.JsonObject; + +import java.util.HashSet; +import java.util.Set; + +/** + * Inside Word and PowerPoint documents, the tag {?insert fileToInsert} can be used to + * insert files like Word, Excel, PowerPoint and PDF documents. + */ +public class Insert extends RenderElement { + /** + * @param name the name of insert tag + * @param value base64 encoded file(docx, pptx, xlsx, pdf etc) to be added in output file. + */ + public Insert(String name, String value) { + setName(name); + setValue(value); + } + + /** + * @return JSONObject with the tags for this element for the Cloud Office Print + * server. + */ + @Override + public JsonObject getJSON() { + JsonObject json = new JsonObject(); + json.addProperty(getName(), getValue()); + return json; + } + + /** + * @return An immutable set containing all available template tags this element + * can replace. + */ + @Override + public Set getTemplateTags() { + Set hash_Set = new HashSet<>(); + hash_Set.add("?insert " + getName() + "}"); + return ImmutableSet.copyOf(hash_Set); + } +} From d36c87149dae7c7d10f875d07d47cf9e350bc175 Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Mon, 20 Dec 2021 19:13:03 +0545 Subject: [PATCH 28/59] added test for insert tag --- .../cloudofficeprint/RenderElementsTests.java | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java b/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java index dadda6d2..58236f3c 100644 --- a/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java +++ b/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java @@ -9,6 +9,7 @@ import com.google.gson.JsonObject; import com.google.gson.JsonParser; import org.junit.jupiter.api.Test; + import static org.junit.jupiter.api.Assertions.*; public class RenderElementsTests { @@ -164,17 +165,27 @@ public void textBox() { // System.out.println(jsonCorrect); assertEquals(jsonCorrect, prop.getJSON()); } + @Test public void freeze() { - Freeze prop = new Freeze("name","C6"); + Freeze prop = new Freeze("name", "C6"); String correct = "{'name' : 'C6' }"; - Freeze prop1 = new Freeze("name",true); + Freeze prop1 = new Freeze("name", true); String correct1 = "{'name': true }"; JsonObject jsonCorrect = JsonParser.parseString(correct).getAsJsonObject(); JsonObject jsonCorrect1 = JsonParser.parseString((correct1)).getAsJsonObject(); - assertEquals(jsonCorrect,prop.getJSON()); - assertEquals(jsonCorrect1,prop1.getJSON()); + assertEquals(jsonCorrect, prop.getJSON()); + assertEquals(jsonCorrect1, prop1.getJSON()); + } + + @Test + public void insert() { + Insert insert = new Insert("doc", "Base64 encoded file"); + String correct = "{'doc':'Base64 encoded file'}"; + JsonObject jsonCorrect = JsonParser.parseString(correct).getAsJsonObject(); + assertEquals(jsonCorrect, insert.getJSON()); } + @Test public void elementCollection() { ElementCollection data = new ElementCollection("data"); @@ -184,7 +195,7 @@ public void elementCollection() { Property prop1 = new Property("prop", "value1"); Property prop2 = new Property("prop", "value2"); - Loop element2 = new Loop("loop", new Property[] { prop1, prop2 }); + Loop element2 = new Loop("loop", new Property[]{prop1, prop2}); data.addElement(element2); From c71037f0db232321062e03b9f0edbdbbca2a1725 Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Mon, 7 Feb 2022 14:17:52 +0545 Subject: [PATCH 29/59] added autoLink tag that will insert text into the document detecting links and it's test --- .../RenderElements/AutoLink.class | Bin 0 -> 1824 bytes .../RenderElementsTests.class | Bin 10578 -> 11107 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 cloudofficeprint/build/classes/java/main/com/cloudofficeprint/RenderElements/AutoLink.class diff --git a/cloudofficeprint/build/classes/java/main/com/cloudofficeprint/RenderElements/AutoLink.class b/cloudofficeprint/build/classes/java/main/com/cloudofficeprint/RenderElements/AutoLink.class new file mode 100644 index 0000000000000000000000000000000000000000..ad61397cc38ef1a2fa69600a8b1d5ad0afa58920 GIT binary patch literal 1824 zcma)6+fo}x6zq{OE5w3;aIqaju#IgbFp6_eMDRs10V0Eg2refNsX-c~h1HH~cSIGH z%75fDk{6uVRr!E?R4To@QY?_-_+e+~a;E#7o}T&Z@0Wi9C}2O01d4qV_7% zJabH)y}(GyE^xaKQ=j~YaT|9mEZWE-CouAwl5{*JW`9B7Sf@hv`!tqu*TRa8Jl-c^ zm#FMEC~HN#E;Y?>HX1D>4_p;t4pwyYbmvguK|95$!eSijXs?hhy&Y6RV4$e0G(d)q zP}{A>f%5l49)XFHu1I%Z`c61*PY#&6Lupnb{Qom<$7mso7ujs0_oM_aorJcEeX>>F z*%p|iPr3@YV6YJGh;|dW_U5Pz-L$6~O;;M`Ut`|m9Ro&!QA=W_>U74Bk*=9Iy{^US z^CFx!J3`z%AG+FG*c!2i%1+IbrscD|TNk0t>Hivg4iTW7WRUvB}qE#b}=w>6dPMw*zC)4e3=~ z6)cprK5jJ&y`^={oZGlZefos|&=ueDe%DkRq9|Rr>=;!@VTa27l#_g?=Ectf_NM14 zzv#*!P=SSAYS~j_zsxP{(MxX*<$D^JiR*la5_}kdBxp*^vc1RA^YF>$Ka+a_ky|>0 zm0Lc;$ZwoV-~+Z37+^cab{a#N!6+`{L(a^{+wc)S=7<3J1fLQ#?0v>wg8k3&MVn@q z(INfxD~vsV!P~c#JHtEtX3lVR=~u4AY@-qCJd?eSN!*B-rsJJ$rW7+MV3oK6Ut*1G zVHwB#hxoIvFh~6P82=?v@CR-s@NDUKL^R2$sF-GnG|MdKZWqn$zcf?0j|U`qNLZWy n6h*j?N9+}&biZP%kE7l?zUDv0l?{H|c*;?ly>C&*cewHoh;!O_ literal 0 HcmV?d00001 diff --git a/cloudofficeprint/build/classes/java/test/cloudofficeprint/RenderElementsTests.class b/cloudofficeprint/build/classes/java/test/cloudofficeprint/RenderElementsTests.class index 2356e3e46321efabd8b7ee19edb82cfba5b6c7b1..e37d762e6c3107ff054445347409ea0ec800f698 100644 GIT binary patch delta 4169 zcma)9d3+S*8Ghbmvpc()Tr=bXBnyEoWE03?utcGRpoZq)QgK0rCE0|9&F;FHa7A3t zs(4f!ty*vEEh>lXMpjS+JP?h=qiV%!wN`7jcWZ5H`+l>NP2w;1*FQ2d-}QXY^Stl( zew$-UK03>Bv7;wWJ}mhII+()xZG9mbp1bzU0b4d>_N0 zMaW(2UGJR{@CLhPEZx+j`ML?|p;L&A$p zt2YvG-~f)u$iT~lSyT0a%*osCE}&QRuQF#_51_<`*Yr@DOFwU1&PfuE5i&II>VQwe z8*FuZD5&{@T91Uc2#(%hhcD989*X!J7{J>C^BqFHfvF#r3+Wg7$Fj#hAVA+I7_rmW zW;xUkm~2nj8(bOmb~Ey?2vha1v!-S{a2y{Cm|qj788Eg53#OeV;WzrHSz+sO0rXq_ zyzG;rza!+d_x5NjJN*%UCUL&xP|WvrhZ=bx)a{G3F}eeviBSKMkk#f5_I9^!@`Zw3 zYeS-cp@hE>EH!muO*H=|<7_lb_==4$?d+_o>g*KVE5zfUGX8~mJkaCQ=7j>$4$=9I zjQ@yEJ9jS7ya9hZ_Y%pJCVFM=JySTuDJN)iby2y)^k>o{WJE1at8CjndgX79#h=V zo%Dm$WJ5&XLD|R_kA)Hyavnr{9o(W~nZ}AuB;Lft9#2TCs}h3~WGWdPT;}i4nCC!+*pt#tx*p1w`3iq03SSBEy59-YQ{Y&6$< z1HC>6H3*v;giSx-)L3oytq^_7Bx+;p>Z+!2ix$bWSQwDQD$a;_gPhM1U$A|X7@Hu` z8SGR|ooJLww2W}L&t+_*&mHruy+P1fZi>_g##<{TI)@iD&UBE6)0I|omh`zqR=b>B zmKtZeoLhK^ynHxlwZ1BU+=LF^+MH7F)FQn;V}=0k8U)^#FFE|oxFggq(K>w~zsTAt z(1ZFH`IGFOV($5bI-`o5QlRGdu;LCcryqr>R~*A;8*MO(!PNzMb2bsI{%%gtY6qKYBlzHAH(~tG$qOlpb z5Ni7LtfK048~tSWokh)QoN@OQPLT#Li`}1$ZAo8rE7JHn0dl~V4OS4{#;qCLB7SF- z$3Z*!BaLq7ClB*8hwk8~oSZ;+(p}slx|>JS=r;Y53DsUPw}9aQmFJCN@B$Q~2qh>s z)|SJ!Z=#3IUB;BmrQ7v0OG*|B zE+-m$%}C*u(j)XJ;}xTTw$o#bHy)~ioQ^4cBn7hNTgZ=_$OlWlWaM4WE22Zl$4z7j zZ!+=|jQm0h`A7=+_0f@GA~VlztXn9rPT*0G@|f~O96MW-U9G$Dq&tSaF(fMbp~O(s z#y!zWZdZ!_eoP#S!35YCp_P4YW4{)%#zmNj#h8jEsKU}={#K{_n8GgXF#Mfl`a2Q1 zqx!ou=>qStIm)IAvXc@x;86}Lhm{xNc&SA>+B!&5kb89mxn$6nA)9ZGJS=B&=PL>MDlZlE;t@fQ4n=);id7$f2~wpA40x2EDX-gPcp$AUc?fV@J>$Vznp5YO~3Ttvc>eeyMzD&4}Zp z7Uh!>q&^*m)H=2*z!n7AsxVu1{t&4sMtT+dA6^ZSil;~&Gm~w30-t%5&y_FY_0XTW~6(Sb&Q;UoV9Rmkp`K@>I6A(dE<+uAK`~ znX&jgLhw{d?EzEm;sj-TRLWIJiPIR?+Y+OEmQWC*B7TjF(Fy!=#%L11ru0);jNIhxuEQy~9&>R6ns6f@ z%A1CXTb#=JMi#f1BRMyvt?4_oMH4A;7n(=0EJ1ZF?j)6FsdRFjX1Ay`XNWNqo;!kY z@;Khg`E?ueaR*MoU0na}9!9LpB$kJKCiXNF%O4~b<>{jr;e9D$`%Tx|64b!N8dW+q zPNyebZ(@TN#HiVwD;w^%aJw}|3zPOQ;n&g_ovG4UBLtkC5)c))NYe8A*z)_?@(0-R z2Qe8B!HtJegGVq6+cBFf?5WtnHF4)KWo;?T=d!Z>tZeq6GM+uUuxC=jUV$ZQ6x!1h zL zwTI73jN=mLn~CS)DU@R`-(v}8`7}<$KDr~y)0&bTOetBYXDQDbbzr7h$j8G?2e>bt zLCWYkzC0}qb%IgcGZ;{%gM8UpzjfIiN(t>VBUqZCPLALjmDa{7z(TvDBjOTD#bxMn zKfqymj*t66uBeCjBpe=Q|6oPU=EOQghncgIvj4jZ>hpuFXg=$XN^HO_2?{fQN9&(xJOI#a{aM^pA zf8-qH6n&M`a{vu^jc>tYScNy>!&?a9Z7z)OauIwFm*IV`86V(gd}#Q#1cqQU)|v2J zOFi@g8&`yj=tX*of5p_GlY@OP2b+I=(-Ho%F#H^PnT~RW@S)a73M+3j%}4;-x5EAk J6HTL6{|l<{cZC1| delta 3681 zcmai1d3+Pc8GWBEOKVxac74ehENrkaGKWoUiYPAF9Hzbq1dJdYvMnDVTaGMq21F7< z(p(g_A!*1#(==(zjfrGX0wg6Nr3s;sqgQ$*J<@~TEj^O-o7Ez0esTMUcXs9*y?O6_ z-^{GvUvg=o`TWNxPXU-t14qrZNi;!C&lsa_$xC!fI7CS7*x2Lodpo<=N;pDDiFH>6 zJR1TMjuGPf{9ZHmSX9(uL?pBY#x5el8m~jFx3&?K~oB~q)C^?&6Q8QCqi6;c+ zYlISw?A{c!a-OO7_PD!Ob-TM5_;tcK)sZ?b#f)>fAW+^U6bls7{Q1R8Bz#x3ruG=m z37ogoovBlU?+{X3`g#Ma+B*IGjKX}6kT%=X<*Vj^ugl|aU~n@oBSpdw3CRua?!K=2 zjUHcj`x>7ZZ#u7W+j%F2nj6#O36ah2jNWDrY9yi{}rG7{p- zCyStDp~P#!rq0$theSynoT3GjEtDdH?0_{;;}H}MRW*Q_(n&UvV!;f`P(PH%Co)o& zg|aC}%~Qtaaxd3HBj94)yy!w-z#ZuHbxSl-U9KE3F~fWl+0>MbNz)6Me(RJ~ExuNd zL}PfVfQJ(v?G_P~<#xBd#8z5jD=V>0DY4m`?JLZbkK+;*s~a+AC*}*N5`se%-{M=? zg(}|$i6#o9X5WUWNi>;@S?jKId;2_Qa}i;r8r2EsFIy2D;ML*63tTEGtV0xV*S}H#jdW*k{ok+MsjN^G@S6S=kh{z7(oWedUB*~L{@ zYNpi!sEy0Q?G0$>2M?gozrXmHFljiPrNEygpx#nF6#?DBq+;avJD%)og7~T84aqAGFXm^>%A+ z!kvV&&1$8!G~Ptp``@(I#`V|c&5vJj7vlI>1X94~6^tOdn|qVEN8Bci4}*^KOC0Us zCx`i&O84;75}iQz(igZ#bRS3K=x+6c{8G1=o5gT|!t*ka%DrslARkukx8q^pm`(pJ z&!GG10me&3Iz31aF{NxI(oXs!;%OJp6ts48OQhy6b(5ZV|kMaWWx=}kLt){M_*y&jDmZD*OA}TktMv%$X{mUb1~%e zG33j`AU_sGW}cgvr%+xH!G4!~P(Cal4WqwK4%L?oKn@|NVS*!sfdPzW&x5+@Q6uX) zLk&pB0v5Fpqp@g^kp()v6gF}X?PYrDF(a+R82NaN)MkDYqzWTA;gTcrizfMW7%$ZY z<+DR*y&9!8gjEx#Y$;?cLoRMb0agrRRj9K{)mS~jtmGK0++kQf8Dq5x!6+^E>YPjd zw)`DqLKtt<$rp!^y7Vce+-y}dThPi@wXs$0gGddv>Z$)_RWMd``(msvvQxsVr4d|q z$#2W=hVlJ6hx~&Oe&mqf3*jdY`DY=#?=TEtS_mKL?XMj1TK_kC`+JA{#}NK3|80nr ze+-dQfnYK(w3hdemyPS<-P4Ux@SzAjn26g@0Y56yi`nSIJgi3}Hlhie25DUy+Yfc* zqpz^md9egE4wHbVV^U8Cb*+sNTy@F+lK&IN$E>w3gijm_Aw+T9B!tMsjX6XXZc+y* zEkv1)w95myIYd^4@&-$!Q9~q7L=r39$_j(5a2sdq4%l!f?6?c1*dBxvJ6Phqn2Y4nyqO7_n2j}HR#GxFq4%%$I52Jl+77N+1F#r-e6@W&i1?r zRlDRwh31559@|}0A004+>GKT=)jJLPN$5-nT6q_VL(yrpCa{u5R$?_yh`wCElZueY zxciZe1DuzGe9|A{J%1SEafI)Mqs;Oc7f`>Zq$bKiSCR}TEBOX1Nk@f#@8rQj-{i4) zj1HoR_VZe;^|7m*o8Y`O3!X>up(FiSLR=0*}WnF|; z^J_C-LDX7bqL3#s^KX+;bWt6yWH(gco^M{Deg=gVnGo zOdFgD4l5r9YZThd`7-L6Gg(cXxh*V~%d8?)AM{n6nij5s|q78Q>+z$>4vn2m}wk^ F{|kg2-ADic From 59d0744f8afeca31ef5ae1a0b9739c4f2d783008 Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Mon, 7 Feb 2022 14:19:35 +0545 Subject: [PATCH 30/59] added test for autoLink tag --- .../java/cloudofficeprint/RenderElementsTests.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java b/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java index 58236f3c..56a64444 100644 --- a/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java +++ b/cloudofficeprint/src/test/java/cloudofficeprint/RenderElementsTests.java @@ -72,6 +72,16 @@ public void cellStylePropertyXlsx() { assertEquals(jsonCorrect, cell.getJSON()); } + @Test + public void autoLink() { + AutoLink cell = new AutoLink("autoLink", "sample text with multiple hyperlinks"); + String correct = "{'autoLink': 'sample text with multiple hyperlinks'}"; + // System.out.println(cell.getJSON()); + JsonObject jsonCorrect = JsonParser.parseString(correct).getAsJsonObject(); + // System.out.println(jsonCorrect); + assertEquals(jsonCorrect, cell.getJSON()); + } + @Test public void hyperLink() { HyperLink cell = new HyperLink("hyperlink", "hyperlink_text", "url"); From 913b8db21a35e8f0b1ce242d2ff30e2820bb6dbe Mon Sep 17 00:00:00 2001 From: ram-arthasoft Date: Mon, 7 Feb 2022 14:19:51 +0545 Subject: [PATCH 31/59] updated javadoc --- .../build/docs/javadoc/allclasses-index.html | 238 ++++++++-------- .../RenderElements/AutoLink.html | 259 ++++++++++++++++++ .../RenderElements/HyperLink.html | 10 +- .../RenderElements/RenderElement.html | 2 +- .../RenderElements/package-summary.html | 48 ++-- .../RenderElements/package-tree.html | 1 + .../build/docs/javadoc/index-all.html | 12 + .../build/docs/javadoc/member-search-index.js | 2 +- .../build/docs/javadoc/overview-tree.html | 1 + .../build/docs/javadoc/type-search-index.js | 2 +- 10 files changed, 430 insertions(+), 145 deletions(-) create mode 100644 cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/AutoLink.html diff --git a/cloudofficeprint/build/docs/javadoc/allclasses-index.html b/cloudofficeprint/build/docs/javadoc/allclasses-index.html index 981da61e..69df90a1 100644 --- a/cloudofficeprint/build/docs/javadoc/allclasses-index.html +++ b/cloudofficeprint/build/docs/javadoc/allclasses-index.html @@ -15,7 +15,7 @@ - + + + + + + +
    + +
    +
    + +
    + +

    Class AutoLink

    +
    +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.AutoLink
    +
    +
    +
    +
    +
    public class AutoLink
    +extends RenderElement
    +
    Class representing an autoLink for templates.
    +
    +
    +
      + +
    • +
      +

      Constructor Summary

      +
      + + + + + + + + + + + + + + +
      Constructors
      ConstructorDescription
      AutoLink​(java.lang.String name, +java.lang.String value) +
      Element to insert a footnote in a template.
      +
      +
      +
      +
    • + +
    • +
      +

      Method Summary

      +
      +
      +
      + + + + + + + + + + + + + + + + + + + + +
      Modifier and TypeMethodDescription
      com.google.gson.JsonObjectgetJSON() 
      java.util.Set<java.lang.String>getTemplateTags() 
      +
      +
      +
      +

      Methods inherited from class com.cloudofficeprint.RenderElements.RenderElement

      +getName, getValue, setName, setValue
      +
      +

      Methods inherited from class java.lang.Object

      +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      +
      +
    • +
    +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        AutoLink

        +
        public AutoLink​(java.lang.String name, +java.lang.String value)
        +
        Element to insert a footnote in a template.
        +
        +
        Parameters:
        +
        name - Name of this footnote for the tag.
        +
        value - Value for the autoLink (will replace the tag in the template). + This may or may not have hyperlinks.
        +
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getJSON

        +
        public com.google.gson.JsonObject getJSON()
        +
        +
        Specified by:
        +
        getJSON in class RenderElement
        +
        Returns:
        +
        JSONObject with the tags for this element for the Cloud Office Print + server.
        +
        +
        +
      • +
      • +
        +

        getTemplateTags

        +
        public java.util.Set<java.lang.String> getTemplateTags()
        +
        +
        Specified by:
        +
        getTemplateTags in class RenderElement
        +
        Returns:
        +
        An immutable set containing all available template tags this element + can replace.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    + +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html index df894f3c..dfc52631 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/HyperLink.html @@ -189,7 +189,7 @@

    HyperLink

    text - Text of the hyperlink (will replace the tag in the template). (Optional: if null the URL will replace the tag)
    url - URL to hyperlink to. Note : In Excel you can hyperlink to a cell. - The URLshould then be of structure: "SheetName!Cell".
    + The URL should then be of structure: "SheetName!Cell".
    @@ -205,7 +205,7 @@

    Method Details

    getUrl

    public java.lang.String getUrl()
    -
    Note : In Excel you can hyperlink to a cell. The URLshould then be of +
    Note : In Excel you can hyperlink to a cell. The URL should then be of structure: "SheetName!Cell".
    Returns:
    @@ -217,7 +217,7 @@

    getUrl

    setUrl

    public void setUrl​(java.lang.String url)
    -
    Note : In Excel you can hyperlink to a cell. The URLshould then be of +
    Note : In Excel you can hyperlink to a cell. The URL should then be of structure: "SheetName!Cell".
    Parameters:
    @@ -234,7 +234,7 @@

    getJSON

    getJSON in class RenderElement
    Returns:
    JSONObject with the tags for this element for the Cloud Office Print - server.
    + server.
    @@ -247,7 +247,7 @@

    getTemplateTags

    getTemplateTags in class RenderElement
    Returns:
    An immutable set containing all available template tags this element - can replace.
    + can replace.
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html index 6f1326bf..53b64c54 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/RenderElement.html @@ -81,7 +81,7 @@

    Class RenderElement

    Direct Known Subclasses:
    -
    CellSpan, Chart, Code, COPChart, D3Code, ElementCollection, ExternalResource, FootNote, Formula, Freeze, HTML, HyperLink, Image, Insert, Loop, MarkDownContent, PageBreak, PDFFormData, PDFImages, PDFTexts, Property, Raw, RawJsonArray, RightToLeft, StyledProperty, TableCell, TableOfContents, TextBox, Watermark
    +
    AutoLink, CellSpan, Chart, Code, COPChart, D3Code, ElementCollection, ExternalResource, FootNote, Formula, Freeze, HTML, HyperLink, Image, Insert, Loop, MarkDownContent, PageBreak, PDFFormData, PDFImages, PDFTexts, Property, Raw, RawJsonArray, RightToLeft, StyledProperty, TableCell, TableOfContents, TextBox, Watermark

    public abstract class RenderElement
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html
    index f7b3616f..61d1fd03 100644
    --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html
    +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-summary.html
    @@ -66,137 +66,143 @@ 

    Package com.cloudofficeprint.RenderElemen +AutoLink + +
    Class representing an autoLink for templates.
    + + + CellSpan
    Only available for Excel and HTML templates.
    - + COPChart
    Supported in Word, Excel and Powerpoint templates.
    - + COPChartDateOptions
    Date options for an COPChart (different from ChartDateOptions for the other Charts).
    - + D3Code
    With Word/Excel/PowerPoint documents, it's possible to let Cloud Office Print execute some JavaScript code to generate a D3 image (Data Driven Documents).
    - + ElementCollection
    A collection used to group multiple RenderElements together.
    - + FootNote
    Only supported in Word and Excel templates.
    - + Formula
    Only supported in Excel.
    - + Freeze
    This tag will allow you to utilize freeze pane property of the Excel.Three options are available.
    - + HTML
    Only supported in Word, Excel, HTML and Md templates.
    - + HyperLink
    Class representing a hyperlink for templates.
    - + Insert
    Inside Word and PowerPoint documents, the tag {?insert fileToInsert} can be used to insert files like Word, Excel, PowerPoint and PDF documents.
    - + MarkDownContent
    Only supported in Word.
    - + PageBreak
    Only supported in Word and Excel.
    - + Property
    The most basic RenderElement.
    - + Raw
    Only available for HTML and Markdown templates.
    - + RawJsonArray
    Represents a raw JsonArray to include in the data.
    - + RenderElement
    Abstract class for renderElements.
    - + RightToLeft
    Only supported in Word templates, might work in other templates but behaviour is not predictable.
    - + StyledProperty
    Only supported in Word and Powerpoint templates.
    - + TableOfContents
    Only supported in Word templates.
    - + TextBox
    This tag will allow you to insert a text box starting in the cell containing the tag in Excel.
    - + Watermark
    It is possible to use your own Watermark with font, size, opacity, color, width, height and rotation.
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html index e35ccd4e..3f4350ed 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/package-tree.html @@ -64,6 +64,7 @@

    Class Hierarchy

  • com.cloudofficeprint.RenderElements.COPChartDateOptions
  • com.cloudofficeprint.RenderElements.RenderElement
  • - diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html index 64c34875..31d1d51b 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/Output/package-tree.html @@ -1,9 +1,9 @@ - - + com.cloudofficeprint.Output Class Hierarchy (cloudofficeprint 21.2.1 API) + @@ -24,28 +24,25 @@
    @@ -59,36 +56,17 @@

    Hierarchy For Package com.cloudofficeprint.Output

    Class Hierarchy

    -
    diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html index 23c9a96b..cdb3a726 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/PrintJob.html @@ -1,9 +1,9 @@ - - + PrintJob (cloudofficeprint 21.2.1 API) + @@ -15,10 +15,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + +
    + +
    +
    + +
    + +

    Class Embed

    +
    +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.Embed
    +
    +
    +
    +
    +
    public class Embed +extends RenderElement
    +
    This tag is used to append the content of docx file to the template by using {?embed fileToEmbed}. + This is only supported in docx, and we can only embed docx file. + The content of document are not rendered.
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        Embed

        +
        public Embed(String name, + String value)
        +
        In docx, it is possible to copy the content of one docx file to another.
        +
        +
        Parameters:
        +
        name - The name of the tag.
        +
        value - The docx file to embed. File source could beW base64 encoded, ftp, sftp or url.
        +
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getJSON

        +
        public com.google.gson.JsonObject getJSON()
        +
        +
        Specified by:
        +
        getJSON in class RenderElement
        +
        Returns:
        +
        JSONObject with the tags for this element for the Cloud Office Print + server.
        +
        +
        +
      • +
      • +
        +

        getTemplateTags

        +
        public Set<String> getTemplateTags()
        +
        +
        Specified by:
        +
        getTemplateTags in class RenderElement
        +
        Returns:
        +
        An immutable set containing all available template tags this element + can replace.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ExcelInsert.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ExcelInsert.html new file mode 100644 index 00000000..f6969a6f --- /dev/null +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/ExcelInsert.html @@ -0,0 +1,517 @@ + + + + +ExcelInsert (cloudofficeprint 21.2.1 API) + + + + + + + + + + + + + + +
    + +
    +
    + +
    + +

    Class ExcelInsert

    +
    +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.ExcelInsert
    +
    +
    +
    +
    +
    public class ExcelInsert +extends RenderElement
    +
    Inside Excel, it is possible to insert word, PowerPoint, excel and pdf file using AOP tag {?insert fileToInsert}. + Options available are: you can provide dynamic icon and icon position. + you can preview the document in Excel.
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        ExcelInsert

        +
        public ExcelInsert(String name, + String value)
        +
        +
        Parameters:
        +
        name - Name of insert tag. Ex(fileToInsert)
        +
        value - File to insert of path to file. (Source can be FTP, SFTP, URL or base64encoded file.)
        +
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getPreview

        +
        public Boolean getPreview()
        +
        Allows you to see the preview of the document. + Set it to true for preview. Defaults to false.
        +
        +
        Returns:
        +
        value for isPreview.
        +
        +
        +
      • +
      • +
        +

        setPreview

        +
        public void setPreview(Boolean preview)
        +
        Allows you to see the preview of the document. + Set it to true for preview. Defaults to false.
        +
        +
        Parameters:
        +
        preview - value for isPreview
        +
        +
        +
      • +
      • +
        +

        getIcon

        +
        public String getIcon()
        +
        Icon to be showed as the document, when clicked on it, redirects it to file. Default icon is taken if not provided.
        +
        +
        Returns:
        +
        value for the icon. Source can be FTP, SFTP, URL or base64 encoded string.
        +
        +
        +
      • +
      • +
        +

        setIcon

        +
        public void setIcon(String icon)
        +
        Icon to be showed as the document, when clicked on it, redirects it to file. Default icon is taken if not provided.
        +
        +
        Parameters:
        +
        icon - value for the icon. Source can be FTP, SFTP, URL or base64 encoded string.
        +
        +
        +
      • +
      • +
        +

        getFromRow

        +
        public String getFromRow()
        +
        Position for top of icon. Defaults to row of the tag.
        +
        +
        Returns:
        +
        value for fromRow.
        +
        +
        +
      • +
      • +
        +

        setFromRow

        +
        public void setFromRow(String fromRow)
        +
        Position for top of icon. Defaults to row of the tag.
        +
        +
        Parameters:
        +
        fromRow - value for fromRow.
        +
        +
        +
      • +
      • +
        +

        getFromCol

        +
        public String getFromCol()
        +
        Position for left of icon. Defaults to column of the tag.
        +
        +
        Returns:
        +
        value for fromCol.
        +
        +
        +
      • +
      • +
        +

        setFromCol

        +
        public void setFromCol(String fromCol)
        +
        Position for left of icon. Defaults to column of the tag.
        +
        +
        Parameters:
        +
        fromCol - value for fromCol.
        +
        +
        +
      • +
      • +
        +

        getFromRowOff

        +
        public String getFromRowOff()
        +
        Space after the value of from Row. Defaults to 0. Values can be in cm, px, inch or points.
        +
        +
        Returns:
        +
        value for fromRow.
        +
        +
        +
      • +
      • +
        +

        setFromRowOff

        +
        public void setFromRowOff(String fromRowOff)
        +
        Space after the value of from Row. Defaults to 0. Values can be in cm, px, inch or points.
        +
        +
        Parameters:
        +
        fromRowOff - value for fromRow.
        +
        +
        +
      • +
      • +
        +

        getFromColOff

        +
        public String getFromColOff()
        +
        Space after the value of fromCol. Defaults to 0. Values can be in cm, px, inch or points.
        +
        +
        Returns:
        +
        value for fromColOff.
        +
        +
        +
      • +
      • +
        +

        setFromColOff

        +
        public void setFromColOff(String fromColOff)
        +
        Space after the value of fromCol. Defaults to 0. Values can be in cm, px, inch or points.
        +
        +
        Parameters:
        +
        fromColOff - value for fromColOff.
        +
        +
        +
      • +
      • +
        +

        getToRow

        +
        public String getToRow()
        +
        Position for bottom of icon. Defaults to row of the tag + 3.
        +
        +
        Returns:
        +
        value for toRow.
        +
        +
        +
      • +
      • +
        +

        setToRow

        +
        public void setToRow(String toRow)
        +
        Position for bottom of icon. Defaults to row of the tag + 3.
        +
        +
        Parameters:
        +
        toRow - value for toRow.
        +
        +
        +
      • +
      • +
        +

        getToCol

        +
        public String getToCol()
        +
        Position for right side of icon. Defaults to column of the tag.
        +
        +
        Returns:
        +
        value for toCol.
        +
        +
        +
      • +
      • +
        +

        setToCol

        +
        public void setToCol(String toCol)
        +
        Position for right side of icon. Defaults to column of the tag.
        +
        +
        Parameters:
        +
        toCol - value for toCol.
        +
        +
        +
      • +
      • +
        +

        getToRowOff

        +
        public String getToRowOff()
        +
        Space after toRow value. Defaults to 20px. Values can be in cm, px, inch or points.
        +
        +
        Returns:
        +
        value for toRowOff.
        +
        +
        +
      • +
      • +
        +

        setToRowOff

        +
        public void setToRowOff(String toRowOff)
        +
        Space after toRow value. Defaults to 20px. Values can be in cm, px, inch or points.
        +
        +
        Parameters:
        +
        toRowOff - value for toRowOff.
        +
        +
        +
      • +
      • +
        +

        getToColOff

        +
        public String getToColOff()
        +
        Space after toCol value. Defaults to 50px. Values can be in cm, px, inch or points.
        +
        +
        Returns:
        +
        value for toColOff.
        +
        +
        +
      • +
      • +
        +

        setToColOff

        +
        public void setToColOff(String toColOff)
        +
        Space after toCol value. Defaults to 50px. Values can be in cm, px, inch or points.
        +
        +
        Parameters:
        +
        toColOff - value for toColOff.
        +
        +
        +
      • +
      • +
        +

        getJSON

        +
        public com.google.gson.JsonObject getJSON()
        +
        +
        Specified by:
        +
        getJSON in class RenderElement
        +
        Returns:
        +
        JSONObject with the tags for this element for the Cloud Office Print + server.
        +
        +
        +
      • +
      • +
        +

        getTemplateTags

        +
        public Set<String> getTemplateTags()
        +
        +
        Specified by:
        +
        getTemplateTags in class RenderElement
        +
        Returns:
        +
        An immutable set containing all available template tags this element + can replace.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html index f41dd329..cf932a26 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/FootNote.html @@ -1,9 +1,9 @@ - - + FootNote (cloudofficeprint 21.2.1 API) + @@ -15,10 +15,8 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + +
    + +
    +
    + +
    + +

    Class ProtectSheet

    +
    +
    java.lang.Object +
    com.cloudofficeprint.RenderElements.RenderElement +
    com.cloudofficeprint.RenderElements.ProtectSheet
    +
    +
    +
    +
    +
    public class ProtectSheet +extends RenderElement
    +
    +
    + +
    +
    +
      + +
    • +
      +

      Constructor Details

      +
        +
      • +
        +

        ProtectSheet

        +
        public ProtectSheet(String name)
        +
        You can protect sheet just by introducing protect tag in template and name for that tag can be provided from here.
        +
        +
        Parameters:
        +
        name - Name of the protect tag.
        +
        +
        +
      • +
      +
      +
    • + +
    • +
      +

      Method Details

      +
        +
      • +
        +

        getAutoFilter

        +
        public Boolean getAutoFilter()
        +
        +
        Returns:
        +
        autoFilter lock auto filter
        +
        +
        +
      • +
      • +
        +

        setAutoFilter

        +
        public void setAutoFilter(Boolean autoFilter)
        +
        +
        Parameters:
        +
        autoFilter - lock auto filter.
        +
        +
        +
      • +
      • +
        +

        getDeleteColumns

        +
        public Boolean getDeleteColumns()
        +
        +
        Returns:
        +
        lock delete columns
        +
        +
        +
      • +
      • +
        +

        setDeleteColumns

        +
        public void setDeleteColumns(Boolean deleteColumns)
        +
        +
        Parameters:
        +
        deleteColumns - lock delete columns
        +
        +
        +
      • +
      • +
        +

        getDeleteRows

        +
        public Boolean getDeleteRows()
        +
        +
        Returns:
        +
        lock delete rows.
        +
        +
        +
      • +
      • +
        +

        setDeleteRows

        +
        public void setDeleteRows(Boolean deleteRows)
        +
        +
        Parameters:
        +
        deleteRows - lock delete rows.
        +
        +
        +
      • +
      • +
        +

        getFormatCells

        +
        public Boolean getFormatCells()
        +
        +
        Returns:
        +
        lock format cells.
        +
        +
        +
      • +
      • +
        +

        setFormatCells

        +
        public void setFormatCells(Boolean formatCells)
        +
        +
        Parameters:
        +
        formatCells - lock format cells.
        +
        +
        +
      • +
      • +
        +

        getFormatColumns

        +
        public Boolean getFormatColumns()
        +
        +
        Returns:
        +
        lock format columns.
        +
        +
        +
      • +
      • +
        +

        setFormatColumns

        +
        public void setFormatColumns(Boolean formatColumns)
        +
        +
        Parameters:
        +
        formatColumns - lock format columns.
        +
        +
        +
      • +
      • +
        +

        getFormatRows

        +
        public Boolean getFormatRows()
        +
        +
        Returns:
        +
        lock format columns.
        +
        +
        +
      • +
      • +
        +

        setFormatRows

        +
        public void setFormatRows(Boolean formatRows)
        +
        +
        Parameters:
        +
        formatRows - lock format rows.
        +
        +
        +
      • +
      • +
        +

        getInsertColumns

        +
        public Boolean getInsertColumns()
        +
        +
        Returns:
        +
        lock insert columns.
        +
        +
        +
      • +
      • +
        +

        setInsertColumns

        +
        public void setInsertColumns(Boolean insertColumns)
        +
        +
        Parameters:
        +
        insertColumns - lock insert columns.
        +
        +
        +
      • +
      • +
        +

        getInsertHyperlinks

        +
        public Boolean getInsertHyperlinks()
        +
        +
        Returns:
        +
        lock insert hyperlinks.
        +
        +
        +
      • +
      • +
        +

        setInsertHyperlinks

        +
        public void setInsertHyperlinks(Boolean insertHyperlinks)
        +
        +
        Parameters:
        +
        insertHyperlinks - lock insert hyperlinks.
        +
        +
        +
      • +
      • +
        +

        getInsertRows

        +
        public Boolean getInsertRows()
        +
        +
        Returns:
        +
        lock insert rows.
        +
        +
        +
      • +
      • +
        +

        setInsertRows

        +
        public void setInsertRows(Boolean insertRows)
        +
        +
        Parameters:
        +
        insertRows - lock insert rows.
        +
        +
        +
      • +
      • +
        +

        getPassword

        +
        public String getPassword()
        +
        +
        Returns:
        +
        password to lock with.
        +
        +
        +
      • +
      • +
        +

        setPassword

        +
        public void setPassword(String password)
        +
        +
        Parameters:
        +
        password - password to lock with.
        +
        +
        +
      • +
      • +
        +

        getPivotTables

        +
        public Boolean getPivotTables()
        +
        +
        Returns:
        +
        lock pivot tables.
        +
        +
        +
      • +
      • +
        +

        setPivotTables

        +
        public void setPivotTables(Boolean pivotTables)
        +
        +
        Parameters:
        +
        pivotTables - lock pivot tables.
        +
        +
        +
      • +
      • +
        +

        getSelectLockedCells

        +
        public Boolean getSelectLockedCells()
        +
        +
        Returns:
        +
        lock select locked cells.
        +
        +
        +
      • +
      • +
        +

        setSelectLockedCells

        +
        public void setSelectLockedCells(Boolean selectLockedCells)
        +
        +
        Parameters:
        +
        selectLockedCells - lock select locked cells.
        +
        +
        +
      • +
      • +
        +

        getSelectUnlockedCells

        +
        public Boolean getSelectUnlockedCells()
        +
        +
        Returns:
        +
        lock select unlocked cells.
        +
        +
        +
      • +
      • +
        +

        setSelectUnlockedCells

        +
        public void setSelectUnlockedCells(Boolean selectUnlockedCells)
        +
        +
        Parameters:
        +
        selectUnlockedCells - select unlocked cells.
        +
        +
        +
      • +
      • +
        +

        getSort

        +
        public Boolean getSort()
        +
        +
        Returns:
        +
        lock sort.
        +
        +
        +
      • +
      • +
        +

        setSort

        +
        public void setSort(Boolean sort)
        +
        +
        Parameters:
        +
        sort - lock sort.
        +
        +
        +
      • +
      • +
        +

        getJSON

        +
        public com.google.gson.JsonObject getJSON()
        +
        +
        Specified by:
        +
        getJSON in class RenderElement
        +
        Returns:
        +
        JSONObject with the tags for this element for the Cloud Office Print + server.
        +
        +
        +
      • +
      • +
        +

        getTemplateTags

        +
        public Set<String> getTemplateTags()
        +
        +
        Specified by:
        +
        getTemplateTags in class RenderElement
        +
        Returns:
        +
        An immutable set containing all available template tags this element + can replace.
        +
        +
        +
      • +
      +
      +
    • +
    +
    + +
    +
    +
    + + diff --git a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html index 21a137f5..bf45db4f 100644 --- a/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html +++ b/cloudofficeprint/build/docs/javadoc/com/cloudofficeprint/RenderElements/Raw.html @@ -1,9 +1,9 @@ - - + Raw (cloudofficeprint 21.2.1 API) + @@ -15,10 +15,8 @@ - - - - - - - - - - - - - - - - - - - - - -