I must be brain-dead right now.  Can anyone tell me how to call an array
setter method?

ex.

ResponseProcessForm:

        private String[] msgCode = null;

        public void setMsgCode(String[] msgCode) {
                this.msgCode = msgCode;
        }

        public String[] getMsgCode() {
                return msgCode;
        }

ResponseProcessAction:

        /*
         *This does not work, but not sure how to call the method??
         */
        responseProcessForm.setMsgCode(gridDeterminations.getMessageCode());



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

Reply via email to