On Feb 9, 2006, at 12:03 PM, Chuck Hill wrote:

Let's collect these.  I've added one more:

http://www.wodev.com/cgi-bin/WebObjects/WODev.woa//wa/Main? wikiPage=WebObjectsBestPractices

        The added WO Best Practice:

Rather than use
 MyEO eo = new MyEO();
 ec.insertObject(eo);
Prefer this form:
 MyEO eo = (MyEO) EOUtilities.createAndInsertInstance(ec, "MyEO");

If this is good:

MyNewPage nextPage = (MyNewPage)pageWithName(MyNewPage.class.getName ());

then why not this?

MyEO eo = (MyEO) EOUtilities.createAndInsertInstance(ec, MyEO.class.getName());

:-)

Aloha,
Art

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to