Class Not Displaying in WO Builder
Class Not Displaying in WO Builder
- Subject: Class Not Displaying in WO Builder
- From: Drew Thoeni <email@hidden>
- Date: Tue, 16 Dec 2003 15:42:13 -0500
I have created several classes using EOModeler and when I construct a
new class in a WO component (in Xcode) I see the persistent variables I
defined in WOBuilder.
Example code (which works fine):
public Client newClient;
newClient = new Client();
However, I have created a class manually, that has no representation in
EOModeler to set and get local variables only used as input in the WO
component. Using similar code to the above (see similar code below) I
get the class listed in WOBuilder but no variables are listed (that is,
there is no ">" next to the object to list the non-persistent variables
in WOBuilder).
Example code (which lists newVars but does not display the actual
non-persistent variables in WOBuilder):
public Vars newVars;
newVars = new Vars();
The objective I have is to isolate the variables in a separate class,
which, from what I read as a newbie, is proper form for Java.
Any help (especially references to appropriate manuals) is greatly
appreciated.
Drew
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.