load module
Michael Neumann
neumann@s-direktnet.de
Sat, 10 Jun 2000 09:44:19 +0200
Mark S. Miller wrote:
> 3) As an "EMaker", which is a file ending with ".emaker" and available on
> the Java CLASSPATH (or otherwise made available as a resource
according to
> the appropriate ClassLoader). EMakers are E's modules. All reusable
E
> code should be placed in *.emaker files. Unfortunately, this is not
yet
> current practice, and probably won't be until further support is
provided.
Thank you. That's exactly what I want.
Another question:
How can I create an instance (or access static's) of an inner class?
Example:
public class A {
static class B {
}
}
Here I want to get an instance of A.B .
Regards
Michael