public DvdCover() {
menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW | MENU_EXECUTE_PRINT;
arguments.add(new FileArgument(this, "destfile", "The file to which the PDF has to be written", true, new PdfFilter()));
arguments.add(new StringArgument(this, "title", "The title of the DVD", String.class.getName()));
arguments.add(new StringArgument(this, "backgroundcolor", "The backgroundcolor of the DVD Cover (for instance 0xFFFFFF)", Color.class.getName()));
arguments.add(new ImageArgument(this, "front", "The front image of the DVD Cover"));
arguments.add(new ImageArgument(this, "back", "The back image of the DVD Cover"));
arguments.add(new ImageArgument(this, "side", "The side image of the DVD Cover"));
}