Re: [java:Conditional Operators]

2006-03-31 Thread Martin Gainty
Agreed..I like to simplify the situation to make it maintainable- Thanks, Martin- - Original Message - From: "Slattery, Tim - BLS" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, March 30, 2006 3:52 PM Subject: RE: [java:Conditional Operators

Re: [java:Conditional Operators]

2006-03-30 Thread Martin Gainty
orm(from above) else assign vForwardName to value of variable vWorkForwardName Nez pas? Martin-- - Original Message - From: "temp temp" <[EMAIL PROTECTED]> To: Sent: Thursday, March 30, 2006 3:46 PM Subject: [java:Conditional Operators] I did not understand the foll

Re: [java:Conditional Operators]

2006-03-30 Thread Michael Jouravlev
On 3/30/06, temp temp <[EMAIL PROTECTED]> wrote: > I did not understand the following code with multiple conditional operators. > boolean vIsForm=true; > String vForwardName = (aActionMapping.findForward(vWorkForwardName) > == null) > ? (vIsForm) ? "form" : "task"

RE: [java:Conditional Operators]

2006-03-30 Thread Slattery, Tim - BLS
> I did not understand the following code with multiple > conditional operators. > boolean vIsForm=true; > String vForwardName = > (aActionMapping.findForward(vWorkForwardName) == null) > ? (vIsForm) ? "form" : "task" > : vWorkForwardName; > >

[java:Conditional Operators]

2006-03-30 Thread temp temp
I did not understand the following code with multiple conditional operators. boolean vIsForm=true; String vForwardName = (aActionMapping.findForward(vWorkForwardName) == null) ? (vIsForm) ? "form" : "task" : vWorkForwardName; Can some body expla