Tells whether a given access modifier is protected @param mod The access modifier to check @return True if the access modifier is protected, false otherwise
(int mod)
| 26 | * @return True if the access modifier is protected, false otherwise |
| 27 | */ |
| 28 | public static boolean isProtected(int mod) { |
| 29 | return (mod & ACC_PROTECTED) != 0; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Tells whether a given access modifier is private |
no outgoing calls
no test coverage detected