reordered pages

This commit is contained in:
Sampo Niskanen 2011-11-21 21:09:16 +00:00
parent 8f3b051d61
commit c4fb82a577

View File

@ -3,29 +3,30 @@
*/ */
package net.sf.openrocket.gui.print; package net.sf.openrocket.gui.print;
import net.sf.openrocket.l10n.Translator;
import net.sf.openrocket.startup.Application;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import net.sf.openrocket.l10n.Translator;
import net.sf.openrocket.startup.Application;
/** /**
* This enumeration identifies the various types of information that may be printed. * This enumeration identifies the various types of information that may be printed.
*/ */
public enum OpenRocketPrintable { public enum OpenRocketPrintable {
// Design Report
DESIGN_REPORT("OpenRocketPrintable.DesignReport", false, 1),
// Parts detail // Parts detail
PARTS_DETAIL("OpenRocketPrintable.Partsdetail", true, 1), PARTS_DETAIL("OpenRocketPrintable.Partsdetail", true, 2),
// Finset shape // Nose Cone Templates
FIN_TEMPLATE("OpenRocketPrintable.Fintemplates", true, 2), NOSE_CONE_TEMPLATE("OpenRocketPrintable.Noseconetemplates", false, 3),
// Fin marking guide.
FIN_MARKING_GUIDE("OpenRocketPrintable.Finmarkingguide", false, 3),
// Transition Templates // Transition Templates
TRANSITION_TEMPLATE("OpenRocketPrintable.Transitiontemplates", false, 4), TRANSITION_TEMPLATE("OpenRocketPrintable.Transitiontemplates", false, 4),
// Nose Cone Templates // Finset shape
NOSE_CONE_TEMPLATE("OpenRocketPrintable.Noseconetemplates", false, 5), FIN_TEMPLATE("OpenRocketPrintable.Fintemplates", true, 5),
// Design Report // Fin marking guide.
DESIGN_REPORT("OpenRocketPrintable.DesignReport", false, 6); FIN_MARKING_GUIDE("OpenRocketPrintable.Finmarkingguide", false, 6);
private static final Translator trans = Application.getTranslator(); private static final Translator trans = Application.getTranslator();