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(
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
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