reordered pages
This commit is contained in:
parent
8f3b051d61
commit
c4fb82a577
@ -3,29 +3,30 @@
|
||||
*/
|
||||
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.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.
|
||||
*/
|
||||
|
||||
public enum OpenRocketPrintable {
|
||||
// Design Report
|
||||
DESIGN_REPORT("OpenRocketPrintable.DesignReport", false, 1),
|
||||
// Parts detail
|
||||
PARTS_DETAIL("OpenRocketPrintable.Partsdetail", true, 1),
|
||||
// Finset shape
|
||||
FIN_TEMPLATE("OpenRocketPrintable.Fintemplates", true, 2),
|
||||
// Fin marking guide.
|
||||
FIN_MARKING_GUIDE("OpenRocketPrintable.Finmarkingguide", false, 3),
|
||||
PARTS_DETAIL("OpenRocketPrintable.Partsdetail", true, 2),
|
||||
// Nose Cone Templates
|
||||
NOSE_CONE_TEMPLATE("OpenRocketPrintable.Noseconetemplates", false, 3),
|
||||
// Transition Templates
|
||||
TRANSITION_TEMPLATE("OpenRocketPrintable.Transitiontemplates", false, 4),
|
||||
// Nose Cone Templates
|
||||
NOSE_CONE_TEMPLATE("OpenRocketPrintable.Noseconetemplates", false, 5),
|
||||
// Design Report
|
||||
DESIGN_REPORT("OpenRocketPrintable.DesignReport", false, 6);
|
||||
// Finset shape
|
||||
FIN_TEMPLATE("OpenRocketPrintable.Fintemplates", true, 5),
|
||||
// Fin marking guide.
|
||||
FIN_MARKING_GUIDE("OpenRocketPrintable.Finmarkingguide", false, 6);
|
||||
|
||||
|
||||
private static final Translator trans = Application.getTranslator();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user