Type information is now available.
[utils] / support / general / src / main / java / org / wamblee / reflection / Accessor.java
index 5285e738e79c4f663be161357e3fa4d82ba220f6..f3a4bd505139999120eea64b66484ab6f7b1fb16 100644 (file)
@@ -36,5 +36,11 @@ public interface Accessor<T> {
      * @return Value
      */
     T get(Object aObject);
+    
+    /**
+     * Gets the type of the value.
+     * @return
+     */
+    Class<T> getType();
 }