All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.intarsys.pdf.postscript.PSName Maven / Gradle / Ivy

package de.intarsys.pdf.postscript;

public class PSName extends PSObject {

	public final String name;

	public PSName(String name) {
		super();
		this.name = name;
	}

	@Override
	public void accept(Handler handler) throws ParseException {
		handler.processIdentifier(name);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy