MCPcopy Create free account
hub / github.com/GraxCode/zelixkiller / isPublic

Method isPublic

src/me/lpk/util/AccessHelper.java:17–19  ·  view source on GitHub ↗

Tells whether a given access modifier is public @param mod The access modifier to check @return True if the access modifier is public, false otherwise

(int mod)

Source from the content-addressed store, hash-verified

15 * @return True if the access modifier is public, false otherwise
16 */
17 public static boolean isPublic(int mod) {
18 return (mod & ACC_PUBLIC) != 0;
19 }
20
21 /**
22 * Tells whether a given access modifier is protected

Callers 4

preTransformMethod · 0.95
linkMappingsMethod · 0.95
visitMethodMethod · 0.95
visitMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected