package com.framsticks.params; /** This class contains constants regarding parameter attributes. * * Based on c++ defines located in: cpp/gdk/param.h * * @author Jarek Szymczak * (please replace name and surname with my personal data) * * @@author Piotr Sniegowski */ public final class ParamFlags { public static final int READONLY = 1; public static final int DONTSAVE = 2; public static final int USERREADONLY = 16; public static final int USERHIDDEN = 32; public static final int MUTALLOCENTRY = 64; public static final int MUTALLOCDATA = 128; public static final int NOSTATIC = 256; public static final int CONST = 512; public static final int CANOMITNAME = 1024; public static final int DONTLOAD = 2048; }