source: java/main/src/main/java/com/framsticks/params/ParamFlags.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 767 bytes
Line 
1package com.framsticks.params;
2
3/** This class contains constants regarding parameter attributes.
4 *
5 * Based on c++ defines located in: cpp/gdk/param.h
6 *
7 * @author Jarek Szymczak <name.surname@gmail.com>
8 * (please replace name and surname with my personal data)
9 *
10 * @@author Piotr Sniegowski
11 */
12public final class ParamFlags {
13
14        public static final int READONLY = 1;
15
16        public static final int DONTSAVE = 2;
17
18        public static final int USERREADONLY = 16;
19
20        public static final int USERHIDDEN = 32;
21
22        public static final int MUTALLOCENTRY = 64;
23
24        public static final int MUTALLOCDATA = 128;
25
26        public static final int NOSTATIC = 256;
27
28        public static final int CONST = 512;
29
30        public static final int CANOMITNAME = 1024;
31
32        public static final int DONTLOAD = 2048;
33
34}
Note: See TracBrowser for help on using the repository browser.