From 28c9b3b8e79a901a86679ddb7a9645383fdb98ff Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 2 Nov 2016 23:21:04 +0100 Subject: [PATCH] Minor update Added method to get file of a supplied class. --- src/com/tofvesson/reflection/SafeReflection.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/com/tofvesson/reflection/SafeReflection.java b/src/com/tofvesson/reflection/SafeReflection.java index 6c9d75e..548a9b5 100644 --- a/src/com/tofvesson/reflection/SafeReflection.java +++ b/src/com/tofvesson/reflection/SafeReflection.java @@ -124,4 +124,11 @@ public class SafeReflection { * @return True if class is nested otherwise false. */ public static boolean isNestedClass(Class c){ return c.getEnclosingClass()!=null; } + + /** + * Get class file based on class name. + * @param c Class to find file of. + * @return File if class file exists. + */ + public static java.io.File getClassFile(Class c){ return new java.io.File(c.getResource(c.getSimpleName()+".class").getFile()); } }