Properties of Class not showing?
Properties of Class not showing?
- Subject: Properties of Class not showing?
- From: Jeffrey Pearson <email@hidden>
- Date: Wed, 22 Mar 2006 13:32:58 -0800
OK. Im following the Webobjects for Windows Developers' manual with
their guestbook tutorial. I have created a customn class called User.
It is in package com.metrohero.entities. I made sure it mirrored the
Guest class in the tutorial.
package com.metrohero.entities;
import com.metrohero.entities.Person;
public class User extends Object{
protected String userID;
protected String userName;
protected String password;
protectged Person person;
protected String userRoleID;
User() {
userID = "";
userName = "";
password = "";
userRoleID = "";
person = new Person();
}
}
When I go to WebObjects Builder and add the key to Main, it sees User
as a type. But after I add it, it does not see the properties so I
can bind them to my login page.
Any idea from the info above why it is not cooperating? It looks like
I have followed the tutorial exactly and I have all of the pieces in
place......
Jeff Pearson
_______________________________________________
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