org.apache.pdfbox.pdmodel.common.filespecification
public class: PDSimpleFileSpecification [javadoc |
source]
java.lang.Object
org.apache.pdfbox.pdmodel.common.filespecification.PDFileSpecification
org.apache.pdfbox.pdmodel.common.filespecification.PDSimpleFileSpecification
All Implemented Interfaces:
COSObjectable
A file specification that is just a string.
Methods from org.apache.pdfbox.pdmodel.common.filespecification.PDFileSpecification: |
---|
createFS, getFile, setFile |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.pdfbox.pdmodel.common.filespecification.PDSimpleFileSpecification Detail: |
public COSBase getCOSObject() {
return file;
}
Convert this standard java object to a COS object. |
public String getFile() {
return file.getString();
}
This will get the file name. |
public void setFile(String fileName) {
file = new COSString( fileName );
}
This will set the file name. |