On 18.03.2005 02:02, Johnson wrote: > I try > var abean = new Packages.org.odmg.Implementation.newDList();
"new" is to be used with constructors like in Java. newDList() is no constructor I assume, but a static method. So what about var abean = Packages.org.odmg.Implementation.newDList(); ?? Joerg > and here the error > Java class "org.odmg.Implementation" has no public instance field or > method named "newDList". > but I see the java doc > > org.odmg.Implementation has a method > > public DList newDList()best regardsjohnson --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
