Java Code Examples for com.sun.org.apache.bcel.internal.Constants#ACC_SUPER
The following examples show how to use
com.sun.org.apache.bcel.internal.Constants#ACC_SUPER .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Utility.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 2
Source File: Utility.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 3
Source File: Utility.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 4
Source File: Utility.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 5
Source File: Utility.java From JDKSourceCode1.8 with MIT License | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 6
Source File: Utility.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 7
Source File: Utility.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 8
Source File: Utility.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 9
Source File: Utility.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 10
Source File: Utility.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Convert bit field of flags into string such as `static final'. * * Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. * * @param access_flags Access flags * @param for_class access flags are for class qualifiers ? * @return String representation of flags */ public static final String accessToString(int access_flags, boolean for_class) { StringBuffer buf = new StringBuffer(); int p = 0; for(int i=0; p < Constants.MAX_ACC_FLAG; i++) { // Loop through known flags p = pow2(i); if((access_flags & p) != 0) { /* Special case: Classes compiled with new compilers and with the * `ACC_SUPER' flag would be said to be "synchronized". This is * because SUN used the same value for the flags `ACC_SUPER' and * `ACC_SYNCHRONIZED'. */ if(for_class && ((p == Constants.ACC_SUPER) || (p == Constants.ACC_INTERFACE))) continue; buf.append(Constants.ACCESS_NAMES[i] + " "); } } return buf.toString().trim(); }
Example 11
Source File: JavaClass.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 12
Source File: JavaClass.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 13
Source File: JavaClass.java From hottub with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 14
Source File: JavaClass.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 15
Source File: JavaClass.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 16
Source File: JavaClass.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 17
Source File: JavaClass.java From JDKSourceCode1.8 with MIT License | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 18
Source File: JavaClass.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 19
Source File: JavaClass.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }
Example 20
Source File: JavaClass.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
public final boolean isSuper() { return (access_flags & Constants.ACC_SUPER) != 0; }