Lines Matching defs:PUBLIC
8 * under the terms of the GNU General Public License as published by the Free
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along
29 * <code>PACKAGE_VISIBLE</code>, <code>PROTECTED</code>, and <code>PUBLIC</code>.
33 public class AccessUtil
35 public static final int PRIVATE = 0;
36 public static final int PACKAGE_VISIBLE = 1;
37 public static final int PROTECTED = 2;
38 public static final int PUBLIC = 3;
53 * <code>PUBLIC</code>.
55 public static int accessLevel(int accessFlags)
62 case ClassConstants.INTERNAL_ACC_PUBLIC: return PUBLIC;
71 * or <code>PUBLIC</code>.
77 public static int accessFlags(int accessLevel)
84 case PUBLIC: return ClassConstants.INTERNAL_ACC_PUBLIC;
94 public static int replaceAccessFlags(int accessFlags, int newAccessFlags)