1 51 package org.apache.fop.pdf; 52 53 56 public class PDFInternalLink extends PDFAction { 57 58 59 String goToReference; 60 61 66 public PDFInternalLink(String goToReference) { 67 68 this.goToReference = goToReference; 69 } 70 71 76 public String getAction() { 77 return goToReference; 78 } 79 80 85 public byte[] toPDF() { 86 return new byte[0]; 87 } 88 89 } 90 | Popular Tags |