Re: Appropriate coding methodology

2001-11-28 Thread Stefan Bodewig
On Wed, 28 Nov 2001, Peter Donald <[EMAIL PROTECTED]> wrote: > Both are equally bad ;) +1 even though I've been the one who introduced the bad code 8-) Stefan -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Appropriate coding methodology

2001-11-28 Thread Jose Alberto Fernandez
From: "Peter Donald" <[EMAIL PROTECTED]> > On Wed, 28 Nov 2001 01:13, Jose Alberto Fernandez wrote: > > While going through the code and taking a look at what Erik was saying > > about the behavior of I noticed that in several parts of that code we > > use the following pattern: > > > > Prope

Re: Appropriate coding methodology

2001-11-28 Thread Peter Donald
On Wed, 28 Nov 2001 01:13, Jose Alberto Fernandez wrote: > Hi guys, > > While going through the code and taking a look at what Erik was saying > about the behavior of I noticed that in several parts of that code we > use the following pattern: > > Property p = (Property) project.createTask("pr

Appropriate coding methodology

2001-11-27 Thread Jose Alberto Fernandez
Hi guys, While going through the code and taking a look at what Erik was saying about the behavior of I noticed that in several parts of that code we use the following pattern: Property p = (Property) project.createTask("property"); p.setName(...); p.setValue(...); or something li