@Deprecated public class ReflectedUniverse extends Object
Modifier and Type | Field and Description |
---|---|
protected boolean |
force
Deprecated.
Whether to force our way past restrictive access modifiers.
|
protected ClassLoader |
loader
Deprecated.
Class loader for imported classes.
|
private static org.slf4j.Logger |
LOGGER
Deprecated.
|
protected HashMap<String,Object> |
variables
Deprecated.
Hashtable containing all variables present in the universe.
|
Constructor and Description |
---|
ReflectedUniverse()
Deprecated.
Constructs a new reflected universe.
|
ReflectedUniverse(ClassLoader loader)
Deprecated.
Constructs a new reflected universe that uses the given class loader.
|
ReflectedUniverse(URL[] urls)
Deprecated.
Constructs a new reflected universe, with the given URLs
representing additional search paths for imported classes
(in addition to the CLASSPATH).
|
Modifier and Type | Method and Description |
---|---|
Object |
exec(String command)
Deprecated.
Executes a command in the universe.
|
Object |
getVar(String varName)
Deprecated.
Returns the value of a variable or field in the universe.
|
boolean |
isAccessibilityIgnored()
Deprecated.
Gets whether access modifiers (protected, private, etc.) are ignored.
|
static boolean |
isInstance(Class<?> c,
Object o)
Deprecated.
Returns whether the given object is compatible with the
specified class for the purposes of reflection.
|
static void |
main(String[] args)
Deprecated.
Allows exploration of a reflected universe in an interactive environment.
|
void |
setAccessibilityIgnored(boolean ignore)
Deprecated.
Sets whether access modifiers (protected, private, etc.) are ignored.
|
void |
setVar(String varName,
boolean b)
Deprecated.
Registers a variable of primitive type boolean in the universe.
|
void |
setVar(String varName,
byte b)
Deprecated.
Registers a variable of primitive type byte in the universe.
|
void |
setVar(String varName,
char c)
Deprecated.
Registers a variable of primitive type char in the universe.
|
void |
setVar(String varName,
double d)
Deprecated.
Registers a variable of primitive type double in the universe.
|
void |
setVar(String varName,
float f)
Deprecated.
Registers a variable of primitive type float in the universe.
|
void |
setVar(String varName,
int i)
Deprecated.
Registers a variable of primitive type int in the universe.
|
void |
setVar(String varName,
long l)
Deprecated.
Registers a variable of primitive type long in the universe.
|
void |
setVar(String varName,
Object obj)
Deprecated.
Registers a variable in the universe.
|
void |
setVar(String varName,
short s)
Deprecated.
Registers a variable of primitive type short in the universe.
|
private static final org.slf4j.Logger LOGGER
protected HashMap<String,Object> variables
protected ClassLoader loader
protected boolean force
public ReflectedUniverse()
public ReflectedUniverse(URL[] urls)
public ReflectedUniverse(ClassLoader loader)
public static boolean isInstance(Class<?> c, Object o)
public Object exec(String command) throws ReflectException
ReflectException
public void setVar(String varName, Object obj)
public void setVar(String varName, boolean b)
public void setVar(String varName, byte b)
public void setVar(String varName, char c)
public void setVar(String varName, double d)
public void setVar(String varName, float f)
public void setVar(String varName, int i)
public void setVar(String varName, long l)
public void setVar(String varName, short s)
public Object getVar(String varName) throws ReflectException
ReflectException
public void setAccessibilityIgnored(boolean ignore)
public boolean isAccessibilityIgnored()
public static void main(String[] args) throws IOException
IOException
Copyright © 2016 Open Microscopy Environment