Re: Question about abstract instance variables

2006-04-14 Thread Nima Boustanian
ahhh. You learn new something everyday :) Nima Boustanian wrote: Hey all Encountered this piece of code on the Tapestry reference page... public final static Integer SMALL = new Integer(1); public final static Integer MEDIUM = new Integer(2); public final static Integer LARGE = new Integer(

RE: Question about abstract instance variables

2006-04-14 Thread James Carman
Those are not instance variables. They're static. -Original Message- From: Nima Boustanian [mailto:[EMAIL PROTECTED] Sent: Friday, April 14, 2006 9:37 AM To: Tapestry users Subject: Question about abstract instance variables Hey all Encountered this piece of code on the Tap

Question about abstract instance variables

2006-04-14 Thread Nima Boustanian
Hey all Encountered this piece of code on the Tapestry reference page... public final static Integer SMALL = new Integer(1); public final static Integer MEDIUM = new Integer(2); public final static Integer LARGE = new Integer(3); public abstract Integer getOrderSize(); public void doSubmit