/**
* Constructs a Burst object.
*/
public CompressDecompressPageContent() {
FileArgument f = new FileArgument(this, "srcfile", "The file you want to compress/decompress", false, new PdfFilter());
f.setLabel(new PdfInformationPanel());
arguments.add(f);
arguments.add(new FileArgument(this, "destfile", "The file to which the compressed/decompressed PDF has to be written", true, new PdfFilter()));
OptionArgument oa = new OptionArgument(this, "compress", "compress");
oa.addOption("Compress page content", "true");
oa.addOption("Decompress page content", "false");