1 11 package org.eclipse.jdt.internal.compiler.env; 12 13 import org.eclipse.jdt.internal.compiler.ast.ASTNode; 14 15 19 public interface IConstants { 20 int AccDefault = 0; 21 24 int AccPublic = 0x0001; 25 int AccPrivate = 0x0002; 26 int AccProtected = 0x0004; 27 int AccStatic = 0x0008; 28 int AccFinal = 0x0010; 29 int AccSynchronized = 0x0020; 30 int AccVolatile = 0x0040; 31 int AccBridge = 0x0040; 32 int AccTransient = 0x0080; 33 int AccVarargs = 0x0080; 34 int AccNative = 0x0100; 35 int AccInterface = 0x0200; 36 int AccAbstract = 0x0400; 37 int AccStrictfp = 0x0800; 38 int AccSynthetic = 0x1000; 39 int AccAnnotation = 0x2000; 40 int AccEnum = 0x4000; 41 42 45 int AccSuper = 0x0020; 46 49 int AccAnnotationDefault = ASTNode.Bit18; int AccDeprecated = ASTNode.Bit21; 52 53 } 54 | Popular Tags |