Package com.itextpdf.text

Examples of com.itextpdf.text.Meta


   * F�gt der Seite ein paar Metadaten hinzu.
   */
  private void addMetaData() throws DocumentException {
    document.addCreator(Statics.producer);
    document.addCreationDate();
    document.add(new Meta(ElementTags.PRODUCER, Statics.producer));
    String title =
      "Familienstammbuch der Familie " + person0Name + " (" + Statics.shortProducer + " #" + documentNumber + ")";
    document.addSubject(title);
    document.addTitle(title);
    document.addKeywords("Personen, Verwandtschaft, Genealogie, Familie, Stammbaum, " + Statics.producer);
View Full Code Here

TOP

Related Classes of com.itextpdf.text.Meta

Copyright © 2018 www.massapicom. 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.