Re: WOBuilder, Bindings, XCode, Eclipse
Re: WOBuilder, Bindings, XCode, Eclipse
- Subject: Re: WOBuilder, Bindings, XCode, Eclipse
- From: Michael Holtermann <email@hidden>
- Date: Fri, 12 Aug 2005 08:15:28 +0200
Am Freitag, 12. August 2005 03:10 schrieb James Cicenia:
> However, WOBuilder just doesn't see the bindings. Is this because of
> packages? subprojects? my complete lack of experience with XCode?
Packages, I guess.
First, always use wildcard import statements, e.g.
import com.webobjects.*; instead of
import com.webobjects.NSArray.
Second, if your Application and Session were moved to a package, too, it may
be necessary to create some "stubs" in the default package to see the
application- and session-bindings in your components:
public class Application extends com.example.appl.Application {
}
public class Session extends com.example.appl.Session {
/* You need to override the constructor and call super(...) */
}
Greetings, Michael.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden