Raphaël Piéroni | 18 Jul 22:58

[groovy-user] Usage of Factory to extend SwingBuilder

Hi folks,

I'd like to enhance the SwingBuilder with s custom made factory.

I successfully had
animatedPane = panel {
                imageLabel = label(id: 'imageLabel', text: 'Image goes here')
            }
            imageTransition = animate(duration: 1000, acceleration:
0.3f, deceleration: 0.15f, component: animatedPane, closure: {
                animatedPane.removeAll()
                animatedPane.add label(icon: model.image)
                animatedPane.revalidate()
            })

in my swing builder script.

I registered a factory to animate which override newInstance only
    Object newInstance(FactoryBuilderSupport builder, def name, def
value, Map attributes) {
        def animator = new Animator(attributes.duration)
        animator.acceleration = attributes.acceleration
        animator.deceleration = attributes.deceleration
        new ScreenTransition(attributes.component, attributes.closure
as TransitionTarget, animator)
    }

I would like to enable
animate(...) {...}
and give retreive the closure
(Continue reading)

Andres Almiray | 19 Jul 01:31
Favicon
Gravatar

Re: [groovy-user] Usage of Factory to extend SwingBuilder


Raphaël wrote:
> 
> I'd like to enhance the SwingBuilder with s custom made factory.
> 

This means you'd like to contribute animate() to SwingBuilder? if so I'd
recommend you first review animation support available in SwingXBuilder.

Raphaël wrote:
> 
> I would like to enable
> animate(...) {...}
> and give retreive the closure
> 
> I also would like to have deault values whe not given. 
> 

I'm a bit lost on this one too, but I think that groovy.util.Factory already
provides a way for factories to be able to handle the closure by themselves.
Problem is that factories _should_ be stateless as there is no guarantee of
a 1:1 mapping between a node and a factory, and definitely not a guarantee
of a node instance per factory. What I'm saying is that you may intercept
the closure in the factory but save it in some other place to later retrieve
it.
--

-- 
View this message in context: http://www.nabble.com/Usage-of-Factory-to-extend-SwingBuilder-tp18537655p18539403.html
Sent from the groovy - user mailing list archive at Nabble.com.

---------------------------------------------------------------------
(Continue reading)

Danno Ferrin | 19 Jul 02:39
Favicon
Gravatar

Re: [groovy-user] Usage of Factory to extend SwingBuilder

Is this hand coded or via the TimingFramework?  I had a timing framework based solution in the 1.5 tree for a while but I withdrew it because of the additional library support.  It now lives in SwingXBuilder.

On Fri, Jul 18, 2008 at 3:02 PM, Raphaël Piéroni <raphaelpieroni <at> gmail.com> wrote:
Hi folks,

I'd like to enhance the SwingBuilder with s custom made factory.

I successfully had
animatedPane = panel {
               imageLabel = label(id: 'imageLabel', text: 'Image goes here')
           }
           imageTransition = animate(duration: 1000, acceleration:
0.3f, deceleration: 0.15f, component: animatedPane, closure: {
               animatedPane.removeAll()
               animatedPane.add label(icon: model.image)
               animatedPane.revalidate()
           })

in my swing builder script.

I registered a factory to animate which override newInstance only
   Object newInstance(FactoryBuilderSupport builder, def name, def
value, Map attributes) {
       def animator = new Animator(attributes.duration)
       animator.acceleration = attributes.acceleration
       animator.deceleration = attributes.deceleration
       new ScreenTransition(attributes.component, attributes.closure
as TransitionTarget, animator)
   }

I would like to enable
animate(...) {...}
and give retreive the closure

I also would like to have deault values whe not given.

Regards,


Raphaël



--
------------------------------------------------------
I'm Danno Ferrin, and I approved this message.
Raphaël Piéroni | 19 Jul 21:13

Re: [groovy-user] Usage of Factory to extend SwingBuilder

It is based on timing framework and animated transitions.

I get a look in the swing x builder;

Is there a functionnal documentation of how a builder works, i am a
bit confused of what method to override and what context is propagated
in the building.

Regards,

Raphaël

2008/7/19, Danno Ferrin <danno.ferrin <at> shemnon.com>:
> Is this hand coded or via the TimingFramework?  I had a timing framework
> based solution in the 1.5 tree for a while but I withdrew it because of the
> additional library support.  It now lives in SwingXBuilder.
>
>
> On Fri, Jul 18, 2008 at 3:02 PM, Raphaël Piéroni <raphaelpieroni <at> gmail.com>
> wrote:
> > Hi folks,
> >
> > I'd like to enhance the SwingBuilder with s custom made factory.
> >
> > I successfully had
> > animatedPane = panel {
> >                imageLabel = label(id: 'imageLabel', text: 'Image goes
> here')
> >            }
> >            imageTransition = animate(duration: 1000, acceleration:
> > 0.3f, deceleration: 0.15f, component: animatedPane, closure: {
> >                animatedPane.removeAll()
> >                animatedPane.add label(icon: model.image)
> >                animatedPane.revalidate()
> >            })
> >
> > in my swing builder script.
> >
> > I registered a factory to animate which override newInstance only
> >    Object newInstance(FactoryBuilderSupport builder, def
> name, def
> > value, Map attributes) {
> >        def animator = new Animator(attributes.duration)
> >        animator.acceleration = attributes.acceleration
> >        animator.deceleration = attributes.deceleration
> >        new ScreenTransition(attributes.component,
> attributes.closure
> > as TransitionTarget, animator)
> >    }
> >
> > I would like to enable
> > animate(...) {...}
> > and give retreive the closure
> >
> > I also would like to have deault values whe not given.
> >
> > Regards,
> >
> >
> > Raphaël
> >
>
>
>
> --
> ------------------------------------------------------
> I'm Danno Ferrin, and I approved this message.
Raphaël Piéroni | 19 Jul 21:40

Re: [groovy-user] Usage of Factory to extend SwingBuilder

I just checked the swing x builder factory for timing framework.

I don't understand it.

But it seems that the animate i added is different as based on
animated transition and the one in swing x is based on the timing
framework only.

i should rename the key to 'transition'

Raphaël

2008/7/19, Raphaël Piéroni <raphaelpieroni <at> gmail.com>:
> It is based on timing framework and animated transitions.
>
>  I get a look in the swing x builder;
>
>  Is there a functionnal documentation of how a builder works, i am a
>  bit confused of what method to override and what context is propagated
>  in the building.
>
>  Regards,
>
>
>  Raphaël
>
>  2008/7/19, Danno Ferrin <danno.ferrin <at> shemnon.com>:
>
> > Is this hand coded or via the TimingFramework?  I had a timing framework
>  > based solution in the 1.5 tree for a while but I withdrew it because of the
>  > additional library support.  It now lives in SwingXBuilder.
>  >
>  >
>  > On Fri, Jul 18, 2008 at 3:02 PM, Raphaël Piéroni <raphaelpieroni <at> gmail.com>
>  > wrote:
>  > > Hi folks,
>  > >
>  > > I'd like to enhance the SwingBuilder with s custom made factory.
>  > >
>  > > I successfully had
>  > > animatedPane = panel {
>  > >                imageLabel = label(id: 'imageLabel', text: 'Image goes
>  > here')
>  > >            }
>  > >            imageTransition = animate(duration: 1000, acceleration:
>  > > 0.3f, deceleration: 0.15f, component: animatedPane, closure: {
>  > >                animatedPane.removeAll()
>  > >                animatedPane.add label(icon: model.image)
>  > >                animatedPane.revalidate()
>  > >            })
>  > >
>  > > in my swing builder script.
>  > >
>  > > I registered a factory to animate which override newInstance only
>  > >    Object newInstance(FactoryBuilderSupport builder, def
>  > name, def
>  > > value, Map attributes) {
>  > >        def animator = new Animator(attributes.duration)
>  > >        animator.acceleration = attributes.acceleration
>  > >        animator.deceleration = attributes.deceleration
>  > >        new ScreenTransition(attributes.component,
>  > attributes.closure
>  > > as TransitionTarget, animator)
>  > >    }
>  > >
>  > > I would like to enable
>  > > animate(...) {...}
>  > > and give retreive the closure
>  > >
>  > > I also would like to have deault values whe not given.
>  > >
>  > > Regards,
>  > >
>  > >
>  > > Raphaël
>  > >
>  >
>  >
>  >
>  > --
>  > ------------------------------------------------------
>  > I'm Danno Ferrin, and I approved this message.
>
Danno Ferrin | 21 Jul 20:19
Favicon
Gravatar

Re: [groovy-user] Usage of Factory to extend SwingBuilder

So then you are using animated transitions from https://animatedtransitions.dev.java.net/ ?  I think renaming it transition would be better.  Although animate may be re-named tween when I start seriously looking at the JavaFX core layer (which is where the evolution of the timing framework ended up).  But animated transitions also uses the timing framework as well.

On Sat, Jul 19, 2008 at 1:40 PM, Raphaël Piéroni <raphaelpieroni <at> gmail.com> wrote:
I just checked the swing x builder factory for timing framework.

I don't understand it.

But it seems that the animate i added is different as based on
animated transition and the one in swing x is based on the timing
framework only.

i should rename the key to 'transition'


Raphaël

2008/7/19, Raphaël Piéroni <raphaelpieroni-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>:
> It is based on timing framework and animated transitions.
>
>  I get a look in the swing x builder;
>
>  Is there a functionnal documentation of how a builder works, i am a
>  bit confused of what method to override and what context is propagated
>  in the building.
>
>  Regards,
>
>
>  Raphaël
>
>  2008/7/19, Danno Ferrin <danno.ferrin-uuMoq9TLNRJBDgjK7y7TUQ@public.gmane.org>:
>
> > Is this hand coded or via the TimingFramework?  I had a timing framework
>  > based solution in the 1.5 tree for a while but I withdrew it because of the
>  > additional library support.  It now lives in SwingXBuilder.
>  >
>  >
>  > On Fri, Jul 18, 2008 at 3:02 PM, Raphaël Piéroni <raphaelpieroni-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>  > wrote:
>  > > Hi folks,
>  > >
>  > > I'd like to enhance the SwingBuilder with s custom made factory.
>  > >
>  > > I successfully had
>  > > animatedPane = panel {
>  > >                imageLabel = label(id: 'imageLabel', text: 'Image goes
>  > here')
>  > >            }
>  > >            imageTransition = animate(duration: 1000, acceleration:
>  > > 0.3f, deceleration: 0.15f, component: animatedPane, closure: {
>  > >                animatedPane.removeAll()
>  > >                animatedPane.add label(icon: model.image)
>  > >                animatedPane.revalidate()
>  > >            })
>  > >
>  > > in my swing builder script.
>  > >
>  > > I registered a factory to animate which override newInstance only
>  > >    Object newInstance(FactoryBuilderSupport builder, def
>  > name, def
>  > > value, Map attributes) {
>  > >        def animator = new Animator(attributes.duration)
>  > >        animator.acceleration = attributes.acceleration
>  > >        animator.deceleration = attributes.deceleration
>  > >        new ScreenTransition(attributes.component,
>  > attributes.closure
>  > > as TransitionTarget, animator)
>  > >    }
>  > >
>  > > I would like to enable
>  > > animate(...) {...}
>  > > and give retreive the closure
>  > >
>  > > I also would like to have deault values whe not given.
>  > >
>  > > Regards,
>  > >
>  > >
>  > > Raphaël
>  > >
>  >
>  >
>  >
>  > --
>  > ------------------------------------------------------
>  > I'm Danno Ferrin, and I approved this message.
>



--
------------------------------------------------------
I'm Danno Ferrin, and I approved this message.
Raphaël Piéroni | 22 Jul 01:31

Re: [groovy-user] Usage of Factory to extend SwingBuilder

2008/7/21 Danno Ferrin <danno.ferrin <at> shemnon.com>:
> So then you are using animated transitions from
> https://animatedtransitions.dev.java.net/ ?

That is exactly that

> I think renaming it transition
> would be better.  Although animate may be re-named tween when I start
> seriously looking at the JavaFX core layer (which is where the evolution of
> the timing framework ended up).  But animated transitions also uses the
> timing framework as well.
>
> On Sat, Jul 19, 2008 at 1:40 PM, Raphaël Piéroni <raphaelpieroni <at> gmail.com>
> wrote:
>>
>> I just checked the swing x builder factory for timing framework.
>>
>> I don't understand it.
>>
>> But it seems that the animate i added is different as based on
>> animated transition and the one in swing x is based on the timing
>> framework only.
>>
>> i should rename the key to 'transition'
>>
>>
>> Raphaël
>>
>> 2008/7/19, Raphaël Piéroni <raphaelpieroni <at> gmail.com>:
>> > It is based on timing framework and animated transitions.
>> >
>> >  I get a look in the swing x builder;
>> >
>> >  Is there a functionnal documentation of how a builder works, i am a
>> >  bit confused of what method to override and what context is propagated
>> >  in the building.
>> >
>> >  Regards,
>> >
>> >
>> >  Raphaël
>> >
>> >  2008/7/19, Danno Ferrin <danno.ferrin <at> shemnon.com>:
>> >
>> > > Is this hand coded or via the TimingFramework?  I had a timing
>> > > framework
>> >  > based solution in the 1.5 tree for a while but I withdrew it because
>> > of the
>> >  > additional library support.  It now lives in SwingXBuilder.
>> >  >
>> >  >
>> >  > On Fri, Jul 18, 2008 at 3:02 PM, Raphaël Piéroni
>> > <raphaelpieroni <at> gmail.com>
>> >  > wrote:
>> >  > > Hi folks,
>> >  > >
>> >  > > I'd like to enhance the SwingBuilder with s custom made factory.
>> >  > >
>> >  > > I successfully had
>> >  > > animatedPane = panel {
>> >  > >                imageLabel = label(id: 'imageLabel', text: 'Image
>> > goes
>> >  > here')
>> >  > >            }
>> >  > >            imageTransition = animate(duration: 1000, acceleration:
>> >  > > 0.3f, deceleration: 0.15f, component: animatedPane, closure: {
>> >  > >                animatedPane.removeAll()
>> >  > >                animatedPane.add label(icon: model.image)
>> >  > >                animatedPane.revalidate()
>> >  > >            })
>> >  > >
>> >  > > in my swing builder script.
>> >  > >
>> >  > > I registered a factory to animate which override newInstance only
>> >  > >    Object newInstance(FactoryBuilderSupport builder, def
>> >  > name, def
>> >  > > value, Map attributes) {
>> >  > >        def animator = new Animator(attributes.duration)
>> >  > >        animator.acceleration = attributes.acceleration
>> >  > >        animator.deceleration = attributes.deceleration
>> >  > >        new ScreenTransition(attributes.component,
>> >  > attributes.closure
>> >  > > as TransitionTarget, animator)
>> >  > >    }
>> >  > >
>> >  > > I would like to enable
>> >  > > animate(...) {...}
>> >  > > and give retreive the closure
>> >  > >
>> >  > > I also would like to have deault values whe not given.
>> >  > >
>> >  > > Regards,
>> >  > >
>> >  > >
>> >  > > Raphaël
>> >  > >
>> >  >
>> >  >
>> >  >
>> >  > --
>> >  > ------------------------------------------------------
>> >  > I'm Danno Ferrin, and I approved this message.
>> >
>
>
>
> --
> ------------------------------------------------------
> I'm Danno Ferrin, and I approved this message.
Andres Almiray | 22 Jul 06:09
Favicon
Gravatar

Re: [groovy-user] Usage of Factory to extend SwingBuilder


Raphaël wrote:
> 
> Is there a functionnal documentation of how a builder works, i am a
> bit confused of what method to override and what context is propagated
> in the building.
> 

Well, there is ample documentation in Groovy's site on builders and
FactoryBuilderSupport. Also there are a couple of books that cover
BuilderSupport (like GinA). I can also recommends Venkat's book: Programming
Groovy as it covers both BuilderSupport and FactoryBuilderSupport. Other
than that the javadocs should be pretty explanatory.

But in any case, if you find something is not quite well explained please
let us know =)
--

-- 
View this message in context: http://www.nabble.com/Usage-of-Factory-to-extend-SwingBuilder-tp18537655p18581998.html
Sent from the groovy - user mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Raphaël Piéroni | 22 Jul 09:47

Re: [groovy-user] Usage of Factory to extend SwingBuilder

OK i will recheck my Gina.

What i lacked on the site was some
sequence diagram showing which method
of a factory is called parsing some input.

Thanks,

Raphaël

2008/7/22 Andres Almiray <aalmiray <at> yahoo.com>:
>
>
> Raphaël wrote:
>>
>> Is there a functionnal documentation of how a builder works, i am a
>> bit confused of what method to override and what context is propagated
>> in the building.
>>
>
> Well, there is ample documentation in Groovy's site on builders and
> FactoryBuilderSupport. Also there are a couple of books that cover
> BuilderSupport (like GinA). I can also recommends Venkat's book: Programming
> Groovy as it covers both BuilderSupport and FactoryBuilderSupport. Other
> than that the javadocs should be pretty explanatory.
>
> But in any case, if you find something is not quite well explained please
> let us know =)
> --
> View this message in context: http://www.nabble.com/Usage-of-Factory-to-extend-SwingBuilder-tp18537655p18581998.html
> Sent from the groovy - user mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>
Dierk König | 22 Jul 10:00
Favicon
Gravatar

RE: [groovy-user] Usage of Factory to extend SwingBuilder

If you have Groovy in Action, you will find it under
8.6.1 Subclassing BuilderSupport

cheers
Dierk

http://groovy.canoo.com/gina

| -----Original Message-----
| From: Raphaël Piéroni [mailto:raphaelpieroni@...]
| Sent: Dienstag, 22. Juli 2008 9:48
| To: user@...
| Subject: Re: [groovy-user] Usage of Factory to extend SwingBuilder
|
| OK i will recheck my Gina.
|
| What i lacked on the site was some
| sequence diagram showing which method
| of a factory is called parsing some input.
|
| Thanks,
|
| Raphaël
|
| 2008/7/22 Andres Almiray <aalmiray@...>:
| >
| >
| > Raphaël wrote:
| >>
| >> Is there a functionnal documentation of how a builder
| works, i am a
| >> bit confused of what method to override and what context is
| >> propagated in the building.
| >>
| >
| > Well, there is ample documentation in Groovy's site on builders and
| > FactoryBuilderSupport. Also there are a couple of books that cover
| > BuilderSupport (like GinA). I can also recommends Venkat's book:
| > Programming Groovy as it covers both BuilderSupport and
| > FactoryBuilderSupport. Other than that the javadocs should
| be pretty explanatory.
| >
| > But in any case, if you find something is not quite well explained
| > please let us know =)
| > --
| > View this message in context:
| >
| http://www.nabble.com/Usage-of-Factory-to-extend-SwingBuilder-tp185376
| > 55p18581998.html Sent from the groovy - user mailing list
| archive at
| > Nabble.com.
| >
| >
| >
| ---------------------------------------------------------------------
| > To unsubscribe from this list, please visit:
| >
| >    http://xircles.codehaus.org/manage_email
| >
| >
| >
|

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Raphaël Piéroni | 22 Jul 11:21

Re: [groovy-user] Usage of Factory to extend SwingBuilder

2008/7/22 Dierk König <dierk.koenig <at> canoo.com>:
> If you have Groovy in Action, you will find it under
> 8.6.1 Subclassing BuilderSupport
Is it still accurate ? the one i have has 1 year old (by the time of groovy 1.0)

Thanks,

Raphaël

>
> cheers
> Dierk
>
> http://groovy.canoo.com/gina
>
> | -----Original Message-----
> | From: Raphaël Piéroni [mailto:raphaelpieroni <at> gmail.com]
> | Sent: Dienstag, 22. Juli 2008 9:48
> | To: user <at> groovy.codehaus.org
> | Subject: Re: [groovy-user] Usage of Factory to extend SwingBuilder
> |
> | OK i will recheck my Gina.
> |
> | What i lacked on the site was some
> | sequence diagram showing which method
> | of a factory is called parsing some input.
> |
> | Thanks,
> |
> | Raphaël
> |
> | 2008/7/22 Andres Almiray <aalmiray <at> yahoo.com>:
> | >
> | >
> | > Raphaël wrote:
> | >>
> | >> Is there a functionnal documentation of how a builder
> | works, i am a
> | >> bit confused of what method to override and what context is
> | >> propagated in the building.
> | >>
> | >
> | > Well, there is ample documentation in Groovy's site on builders and
> | > FactoryBuilderSupport. Also there are a couple of books that cover
> | > BuilderSupport (like GinA). I can also recommends Venkat's book:
> | > Programming Groovy as it covers both BuilderSupport and
> | > FactoryBuilderSupport. Other than that the javadocs should
> | be pretty explanatory.
> | >
> | > But in any case, if you find something is not quite well explained
> | > please let us know =)
> | > --
> | > View this message in context:
> | >
> | http://www.nabble.com/Usage-of-Factory-to-extend-SwingBuilder-tp185376
> | > 55p18581998.html Sent from the groovy - user mailing list
> | archive at
> | > Nabble.com.
> | >
> | >
> | >
> | ---------------------------------------------------------------------
> | > To unsubscribe from this list, please visit:
> | >
> | >    http://xircles.codehaus.org/manage_email
> | >
> | >
> | >
> |
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>
Andres Almiray | 22 Jul 19:59
Favicon
Gravatar

Re: [groovy-user] Usage of Factory to extend SwingBuilder


Raphaël wrote:
> 
> 2008/7/22 Dierk König <dierk.koenig@...>:
>> If you have Groovy in Action, you will find it under
>> 8.6.1 Subclassing BuilderSupport
> Is it still accurate ? the one i have has 1 year old (by the time of
> groovy 1.0)
> 

Sure! BuilderSupport's contract has been fairly stable since the early days.
FBS on the other hand is a remix of BuilderSupport and the lessons learned
from SwingBuilder, then it received a shot of mutagen(tm) and a bit of pixie
dust, turning it into a better base builder ;-)
--

-- 
View this message in context: http://www.nabble.com/Usage-of-Factory-to-extend-SwingBuilder-tp18537655p18595256.html
Sent from the groovy - user mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email

Danno Ferrin | 22 Jul 19:48
Favicon
Gravatar

Re: [groovy-user] Usage of Factory to extend SwingBuilder

SwingBuilder in 1.5 has moved on to FactoryBuilderSupport, which is much more involved sequence wise.

Here's some stuff I did for JavaOne, slide 19.  Not UML, but optimized for a slide show.
http://www.slideshare.net/shemnon/bof5110-extending-the-groovy-swingbuilder


On Tue, Jul 22, 2008 at 2:00 AM, Dierk König <dierk.koenig-vS5zOjhOW+wAvxtiuMwx3w@public.gmane.org> wrote:
If you have Groovy in Action, you will find it under
8.6.1 Subclassing BuilderSupport

cheers
Dierk

http://groovy.canoo.com/gina

| -----Original Message-----
| From: Raphaël Piéroni [mailto:raphaelpieroni-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org]
| Sent: Dienstag, 22. Juli 2008 9:48
| To: user-i9PBDF1N6cxnkHa44VUL00B+6BGkLq7r@public.gmane.org
| Subject: Re: [groovy-user] Usage of Factory to extend SwingBuilder
|
| OK i will recheck my Gina.
|
| What i lacked on the site was some
| sequence diagram showing which method
| of a factory is called parsing some input.
|
| Thanks,
|
| Raphaël
|
| 2008/7/22 Andres Almiray <aalmiray-/E1597aS9LQAvxtiuMwx3w@public.gmane.org>:
| >
| >
| > Raphaël wrote:
| >>
| >> Is there a functionnal documentation of how a builder
| works, i am a
| >> bit confused of what method to override and what context is
| >> propagated in the building.
| >>
| >
| > Well, there is ample documentation in Groovy's site on builders and
| > FactoryBuilderSupport. Also there are a couple of books that cover
| > BuilderSupport (like GinA). I can also recommends Venkat's book:
| > Programming Groovy as it covers both BuilderSupport and
| > FactoryBuilderSupport. Other than that the javadocs should
| be pretty explanatory.
| >
| > But in any case, if you find something is not quite well explained
| > please let us know =)
| > --
| > View this message in context:
| >
| http://www.nabble.com/Usage-of-Factory-to-extend-SwingBuilder-tp185376
| > 55p18581998.html Sent from the groovy - user mailing list
| archive at
| > Nabble.com.
| >
| >
| >
| ---------------------------------------------------------------------
| > To unsubscribe from this list, please visit:
| >
| >    http://xircles.codehaus.org/manage_email
| >
| >
| >
|

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email





--
------------------------------------------------------
I'm Danno Ferrin, and I approved this message.

Gmane