| package rebelkeithy.mods.metallurgy.api; |
| import java.lang.reflect.Field; |
| public class MetallurgyAPI |
| // Values for name: "base", "precious", "nether", "fantasy", "ender", |
| public static IMetalSet getMetalSet(String name) |
| final Class metallurgyMetals = Class.forName("rebelkeithy.mods.metallurgy.metals.MetallurgyMetals"); |
| final Field set = metallurgyMetals.getField(name + "Set"); |
| return (IMetalSet) set.get(null); |
| } catch (final NoSuchFieldException e) |
| // TODO Auto-generated catch block |
| } catch (final SecurityException e) |
| // TODO Auto-generated catch block |
| } catch (final ClassNotFoundException e) |
| // TODO Auto-generated catch block |
| } catch (final IllegalArgumentException e) |
| // TODO Auto-generated catch block |
| } catch (final IllegalAccessException e) |
| // TODO Auto-generated catch block |
| public static String[] getMetalSetNames() |
| // TODO maybe put something to get runtime list here |
| { "base", "precious", "nether", "fantasy", "ender", "utility" }; |