On 7/12/06, Monkeyden <[EMAIL PROTECTED]> wrote:

No getter method for property: "hPlayer1Team1Name" of bean: "
com.foo.web.action.captain.ScoreSubmitForm"
...
public String getHPlayer1Team1Name() {
  return this.hPlayer1Team1Name;

The usual... consult the JavaBeans specification for property naming
conventions. :)

If a property name begins with two uppercase letters, it is not
decapitalized.  The introspector is likely having trouble with
HPlayer1Team1Name and hPlayer1Team1Name.

(aside:  wouldn't you rather pass the player and team numbers as parameters?)

I'd have to play with it to make sure, but try either
* rename it to have two lowercase letters at the beginning, or
* use HPlayer1TeamName everywhere

--
Wendy

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to