MCPcopy Index your code
hub / github.com/evernat/dead-code-detector / isJavaClass

Method isJavaClass

src/main/java/dcd/DcdHelper.java:55–60  ·  view source on GitHub ↗
(String asmClassName)

Source from the content-addressed store, hash-verified

53 }
54
55 static boolean isJavaClass(String asmClassName) {
56 // si commence par java/, javax/ ou org/xml/sax/ (packages java.* ou javax.*
57 // ou org.xml.sax.* et pas javassist.*) alors c'est une classe du core java
58 return asmClassName.startsWith("java/") || asmClassName.startsWith("javax/")
59 || asmClassName.startsWith("org/xml/sax/");
60 }
61
62 static Set<String> getJavaMethods(String asmClassName) {
63 Class<?> clazz;

Callers 6

visitMethodInsnMethod · 0.95
visitFieldInsnMethod · 0.95
excludeJavaMethodsMethod · 0.95
filterJavaMethodsMethod · 0.95
methodCalledMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected