public abstract class BasePatient extends BaseObject
{
/** The Peer class */
private static final PatientPeer peer =
new PatientPeer();/** The value for the patientId field */
private Integer patientId = new Integer(AUTOINCREMENT: start 1 increment 1);
The Java code doesn't compile since that "AUTOINCREMENT: start 1 increment 1" statement is not a valid argument to pass to an Integer object. Has anyone seen this before or do you know why this is doing this?
-Brandon
_________________________________________________________________
On the road to retirement? Check out MSN Life Events for advice on how to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
