This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 'requre' under J2EE environment


Wen-Chun Ni wrote:

I thought the manual (11.5) said that I can use a "trick"
like


class Foo extends ProcedureN {

   public static final Foo myFoo  = new Foo(..);
 }

in order for Foo to be 'required.'

Yes, that should work, but I wanted to make sure you understand that the module is a ProcedureN isn't relevant to requiring it.

You might want to make sure it is named correctly:

myFoo = new Foo("foo");

   public class Foo() { super("foo"); }
--
	--Per Bothner
per@bothner.com   http://per.bothner.com/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]