This is just the flex vo side.  No change to the java transfer object is
necessary; for transient fields that live only in the flex app.

-TH

--- In flexcoders@yahoogroups.com, Josh McDonald <j...@...> wrote:
>
> That still requires adding the fields to the Flex object. Marking the
field
> @Transient in Java will affect Hibernate, unless Blaze / LCDS have
their own
> @Transient I'm not aware of. There's also this blazeds annotations
add-on:
> http://is.gd/sETx
>
> SmartyPants-J will do this, but it's nowhere near escaping yet :)
>
> -Josh
>
> 2009/4/16 Tim Hoff timh...@...
>
> >
> >
> > Yep, here's an example:
> > *
> >
> > private
> > * *var* _myProperty:String;
> >
> > [Transient]
> > [*Bindable*( event=*"myPropertyChange"* )]
> > /**
> > * myProperty.
> > * @private
> > */
> > *public* *function* *get* myProperty():String
> > {
> > * return* _myProperty;
> > }
> >
> > /** @private */
> > *public* *function* *set* myProperty( value:String ):*void
> > *{
> > _myProperty = value;
> > dispatchEvent( *new* Event( *"myPropertyChange"* ) );
> > }
> >
> > -TH
> >
> > --- In flexcoders@yahoogroups.com, "Amy" amyblankenship@ wrote:
> > >
> > > --- In flexcoders@yahoogroups.com, ouaqa ab@ wrote:
> > > >
> > > >
> > > > This is an option but i was wondering if you couldn't use some
special
> > > > "ninja" keyword telling lcds not to map the field to lcds.
> > >
> > > Transient?
> > >
> >
> >
>
>
>
> --
> "Therefore, send not to know For whom the bell tolls. It tolls for
thee."
>
> Josh 'G-Funk' McDonald
> - j...@...
> - http://twitter.com/sophistifunk
> - http://flex.joshmcdonald.info/
>



Reply via email to