de.intarsys.pdf.postscript.PSArray 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
This is a fork of http://sourceforge.net/projects/jpodlib/ as development seems to be frozen.
We're providing some bug fixes along with deployments to maven.
package de.intarsys.pdf.postscript;
import java.util.ArrayList;
import java.util.List;
public class PSArray extends PSObject {
private final List objects = new ArrayList();
@Override
public void accept(Handler handler) throws ParseException {
for (PSObject object : objects) {
object.accept(handler);
}
}
public void add(PSObject psObject) {
objects.add(psObject);
}
}