Created
May 4, 2017 20:07
-
-
Save loordgek/6765853caf6433bc9178cd9b8aa53a1c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package loordgek.extragenarators; | |
public class help { | |
static help.field field = new field(); | |
public static help getInstance() { | |
return new help(); | |
} | |
public static void getfield(){ | |
loordgek.extragenarators.help.field.getClass().getDeclaredFields(); | |
// this returns the fields inside Field i dont want that i want anint | |
} | |
public static class field { | |
public int anInt; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment