
de.intarsys.pdf.postscript.PSPrimitiveObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jPod Show documentation
Show all versions of jPod Show documentation
A library for reading, writing and manipulating PDF files.
The newest version!
package de.intarsys.pdf.postscript;
public class PSPrimitiveObject extends PSObject {
public final Object object;
public PSPrimitiveObject(Object object) {
super();
this.object = object;
}
@Override
public void accept(Handler handler) {
handler.processLiteral(object);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy