Can someone please explain why Application.class.getDeclaredFields() returns nothing?
Field[] fields = Application.class.getDeclaredFields();
The Field object is empty after the call. Are there any restrictions in java.lang.reflect that prevent this call from returning anything other than null?
Thank you