|
static Object | get (String key) |
|
static boolean | exists (String key) |
|
◆ exists()
static boolean org.turro.plugin.PluginChecker.exists |
( |
String |
key | ) |
|
|
static |
Definition at line 83 of file PluginChecker.java.
84 for(String p[] : plugs) {
85 if(key.equals(p[0])) {
86 return ReflectionUtil.classCheck(p[1]) !=
null;
◆ get()
static Object org.turro.plugin.PluginChecker.get |
( |
String |
key | ) |
|
|
static |
Definition at line 74 of file PluginChecker.java.
75 for(String p[] : plugs) {
76 if(key.equals(p[0])) {
77 return ReflectionUtil.instance(ReflectionUtil.classCheck(p[1]));
The documentation for this class was generated from the following file: