Examples of PdfSignatureBuildProperties


Examples of com.itextpdf.text.pdf.security.PdfSignatureBuildProperties

   * not it adds a new one and returns this.
   *
   * @return {@link PdfSignatureBuildProperties}
   */
  PdfSignatureBuildProperties getPdfSignatureBuildProperties() {
    PdfSignatureBuildProperties buildPropDic = (PdfSignatureBuildProperties) getAsDict(PdfName.PROP_BUILD);
    if (buildPropDic == null) {
      buildPropDic = new PdfSignatureBuildProperties();
      put(PdfName.PROP_BUILD, buildPropDic);
    }
    return buildPropDic;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.