on 9/27/01 12:13 PM, "Jason Kary" <[EMAIL PROTECTED]> wrote:
> Ok. So in the bean if we had the code: > > Intake intake = (IntakeTool)context.get( "intake" ); > Group grp = intake.get( "NewRep", IntakeTool.DEFAULT_KEY ); > NewRep rep = new NewRep(); > > grp.setProperties( rep ); > > ... > > Would there be a race condition for the name field? Would both field > records set the name value? > > Take Care > Jason Kary In a bean, you should not reference Intake. Intake should be considered "external" to the bean. You use intake to set the fields of a bean. -jon --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
