I'm not sure I understand the exact problem, but I do see something that
seems like it might be relevant.
I don't think the method getbfData() conforms to the JavaBeans naming
standard. If I ask for the "bfData" property, I am pretty sure that
there needs to be a method named getBfData() [note the case of the 'B']
or I am going to get an exception.
-Max
On Thu, 2003-09-11 at 10:31, Gregory F. March wrote:
> On Sep 11, 2003, "Gregory F. March" <[EMAIL PROTECTED]> wrote:
>
> |=============================================================================
> |My action (BfPerformSearch.java):
> |
> | BfSearchAdapter bfsa = new BfSearchAdapter(ad, bfsc);
> |
> | request.setAttribute("bfData", bfsa.getbfData());
> |
> |=============================================================================
> |My adapter (BfSearchAdapter.java):
> |
> | BankFullEntryData[] bed = SomeFunction();
> |
> | bflist = new Vector();
> |
> | for(int i = 0; i < bed.length; i++) {
> | BfFullEntryData bffed = new BfFullEntryData();
> | bffed.setName(bed[i].NameAndAddress);
> |
> |LOOK HERE - #1 !!!
> |
> | bffed.setWireData(bed[i].WireInfo);
> |
> | bflist.add(bffed);
> | }
> | }
>
> Sorry, I should have mentioned that bfsa.getbfData() returns bflist.
>
> /greg
>
> --
> Gregory F. March -=- http://www.gfm.net:81/~march -=- AIM:GfmNet
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
--
Max Cooper <[EMAIL PROTECTED]>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]