Well, fortunately and unfortunately, that was it.
Thanks again, Peter, for finding my mistake. And sorry again for
cluttering up the list with my poor proofreading skills.
Andy
On Fri, 2008-04-11 at 12:41 -0400, Andy Huhn wrote:
> Oh, brother. If that's it, take my keyboard away from me. :o)
:) If you don't have unused parameters warnings turned on in your IDE,
now would be the time!
On Fri, Apr 11, 2008 at 9:41 AM, Andy Huhn <[EMAIL PROTECTED]> wrote:
>
> Oh, brother. If that's it, take my keyboard away from me. :o)
>
> I'll check as soon as I get on tonight. If that's it, sorry
Oh, brother. If that's it, take my keyboard away from me. :o)
I'll check as soon as I get on tonight. If that's it, sorry for troubling
the list.
Andy
On Fri, 11 Apr 2008 11:20:43 -0400, "Peter Beshai" <[EMAIL PROTECTED]>
wrote:
> Unless there's a typo in your post:
>
> public void setAgeRa
Unless there's a typo in your post:
public void setAgeRangeSrvd( AgeRange ageRangeeSrvd )
{ this.ageRangeSrvd = ageRangeSrvd; }
The parameter's name is 'ageRangeeSrvd' not ageRangeSrvd, so you're not
setting it.
e.g. You're doing:
private String _name;
public void setName(String
That's odd.
What does your page class/template look like?
-Filip
On 2008-04-11 10:15, Andy Huhn wrote:
Hello,
I have what I thought was a fairly straightforward piece of code, but I
can't seem to get it working.
I have an enum defined as:
public enum AgeRange {
K6, M
Hello,
I have what I thought was a fairly straightforward piece of code, but I
can't seem to get it working.
I have an enum defined as:
public enum AgeRange {
K6, MiddleSchool, HighSchool, K12, MiddleHighSchool
}
I reference this enum in one of my POJOs: