RE: [ValueObjects] New methods not seen

2002-09-05 Thread Skip Hovsmith
I don't think your setter should be a static method. Regards, Skip -Original Message- From: Mark Kaye [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 5:47 AM To: Struts Users Mailing List Subject: RE: [ValueObjects] New methods not seen > -Original

Re: [ValueObjects] New methods not seen

2002-09-05 Thread Eddie Bush
Might I suggest you refactor to use a singleton? :-) Regards, Eddie Mark Kaye wrote: >>-Original Message- >>From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] >> >>Let's see the method signature. >> > >>From com.getitall.vo.LoginVO: > >public static void setIsLoggedIn(boolean isLoggedIn

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Bill Willis
value of constants) when doing incremental compiles. Regards, Bill -Original Message- From: Mark Kaye [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 8:25 AM To: Struts Users Mailing List Subject: [ValueObjects] New methods not seen I use ValueObject Beans to pass data

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Morycz, Felicia V
Why is your method declared "static"? -Original Message- From: Lister, Tom (ANTS) [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 8:54 AM To: 'Struts Users Mailing List' Subject: RE: [ValueObjects] New methods not seen have you reloaded/restarted tomc

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Lister, Tom (ANTS)
September 2002 13:47 To: Struts Users Mailing List Subject: RE: [ValueObjects] New methods not seen > -Original Message- > From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] > > Let's see the method signature. >From com.getitall.vo.LoginVO: public static void setIsLoggedI

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Mark Kaye
> -Original Message- > From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] > > Let's see the method signature. >From com.getitall.vo.LoginVO: public static void setIsLoggedIn(boolean isLoggedIn) { this.isLoggedIn = isLoggedIn; } Called by this in the Business Object: if (list.si

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Lister, Tom (ANTS)
Mailing List Subject: [ValueObjects] New methods not seen I use ValueObject Beans to pass data between my struts actions and my back-end business objects. For some reason, if I add a new method to my ValueObject the rest of my business layer can't seem to see it, even though the IDE does an

RE: [ValueObjects] New methods not seen

2002-09-05 Thread Galbreath, Mark
Let's see the method signature. -Original Message- From: Mark Kaye [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 8:25 AM I use ValueObject Beans to pass data between my struts actions and my back-end business objects. For some reason, if I add a new method to my ValueObj

[ValueObjects] New methods not seen

2002-09-05 Thread Mark Kaye
I use ValueObject Beans to pass data between my struts actions and my back-end business objects. For some reason, if I add a new method to my ValueObject the rest of my business layer can't seem to see it, even though the IDE does and the classes compile just fine! Has anyone got any ideas why?