Hey you guys...
At last week's AGM, Mike Cowlishaw was elected a Fellow of the Royal Academy of Engineering. This Academy is comparable with the US NAE and election is fiercely competitive. No more than two or three of the 49 so chosen come from the IT-related world. Congratulations, Mike. They got a good man. -- /--------------------\ | Jerry McBride | | [hidden email] | \--------------------/ -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to [hidden email] with the following message in the body of the note unsubscribe ibm-netrexx <e-mail address> |
Three cheer's, Let's all raise a toast to this long overdue honor.
----- Original Message ----- From: Jerry McBride <[hidden email]> To: <[hidden email]> Cc: <[hidden email]> Sent: Wednesday, July 28, 1999 3:13 PM Subject: Mike Cowlishaw elected to the Royal Academy of Engineering > Hey you guys... > > At last week's AGM, Mike Cowlishaw was elected a Fellow of the Royal > Academy of Engineering. This Academy is comparable with the US NAE and > election is fiercely competitive. No more than two or three of the 49 so > chosen come from the IT-related world. > > Congratulations, Mike. They got a good man. > > -- > > /--------------------\ > | Jerry McBride | > | [hidden email] | > \--------------------/ > > > -- > > ~ > To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to > [hidden email] > with the following message in the body of the note > unsubscribe ibm-netrexx <e-mail address> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to [hidden email] with the following message in the body of the note unsubscribe ibm-netrexx <e-mail address> |
Hi, All!
How write in NetRexx analog of next Java code? //
i.e. 'instanceof' statement. --
|
Max Marsiglietti answered it two years ago
On Thu, 29 Jul 1999 18:30:33 +0400, Andrew Jelly wrote: > Hi, All! > > How write in NetRexx analog of next Java code? > >// > Object o = p.getContent(); > if (o instanceof String) { >// ^^^^^^^^^^^^ ? > System.out.println("This is a String"); > >i.e. 'instanceof' statement. /*Quote*/ > In Java one would use the instanceof clause like > > if (component instanceof Button) In NetRexx you do that this way: if component <= Button then -- etc /end of qoute*/ Your example goes then like this /**/ o = Object p.getContent(); if o <= String then say "This is a String" /**/ regards kp -- K.P.Kirchdoerfer Voice: +49 431 15479 24116 Kiel E-Mail: [hidden email] The Mission Is Terminated (TG 1982) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to [hidden email] with the following message in the body of the note unsubscribe ibm-netrexx <e-mail address> |
In reply to this post by Andrew Jelly
> Your example goes then like this > /**/ > o = Object p.getContent(); > if o <= String > then say "This is a String" > /**/ Or even (to be economic): if p.getContent <= String then say "This is a String" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mike Cowlishaw, IBM Fellow mailto:[hidden email] -- http://www2.hursley.ibm.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to [hidden email] with the following message in the body of the note unsubscribe ibm-netrexx <e-mail address> |
In reply to this post by mcbrides
On Wed, 28 Jul 1999 17:13:25 -0400, Jerry McBride wrote:
Thanks for the info, Jerry. >At last week's AGM, Mike Cowlishaw was elected a Fellow of the Royal >Academy of Engineering. This Academy is comparable with the US NAE and >election is fiercely competitive. No more than two or three of the 49 so >chosen come from the IT-related world. > >Congratulations, Mike. They got a good man. He deserves what he got. Hopefully the other way round for the Royal Academy :) Herzlichen Glückwunsch, Mike. kp -- K.P.Kirchdoerfer Voice: +49 431 15479 24116 Kiel E-Mail: [hidden email]..de The Mission Is Terminated (TG 1982) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list ( ibm-netrexx ), please send a note to [hidden email] with the following message in the body of the note unsubscribe ibm-netrexx <e-mail address> |
Free forum by Nabble | Edit this page |