01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the "License"). You may not use this file except
05: * in compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://jwsdp.dev.java.net/CDDLv1.0.html
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * HEADER in each file and include the License file at
14: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
15: * add the following below this CDDL HEADER, with the
16: * fields enclosed by brackets "[]" replaced with your
17: * own identifying information: Portions Copyright [yyyy]
18: * [name of copyright owner]
19: */
20:
21: package com.sun.codemodel;
22:
23: /**
24: * Modifier constants.
25: */
26: public final class JMod {
27: public final static int NONE = 0x000;
28: public final static int PUBLIC = 0x001;
29: public final static int PROTECTED = 0x002;
30: public final static int PRIVATE = 0x004;
31: public final static int FINAL = 0x008;
32: public final static int STATIC = 0x010;
33: public final static int ABSTRACT = 0x020;
34: public final static int NATIVE = 0x040;
35: public final static int SYNCHRONIZED = 0x080;
36: public final static int TRANSIENT = 0x100;
37: public final static int VOLATILE = 0x200;
38: }
|