Tells whether a given access modifier is static @param mod The access modifier to check @return True if the access modifier is static, false otherwise
(int mod)
| 48 | * @return True if the access modifier is static, false otherwise |
| 49 | */ |
| 50 | public static boolean isStatic(int mod) { |
| 51 | return (mod & ACC_STATIC) != 0; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Tells whether a given access modifier is native |
no outgoing calls
no test coverage detected