Index: SwingBuilder.java
===================================================================
RCS file: /scm/cvspublic/groovy/groovy-core/src/main/groovy/swing/SwingBuilder.java,v
retrieving revision 1.5
diff -r1.5 SwingBuilder.java
140c140,149
<             InvokerHelper.setProperty(parent, "action", action);
---
>             try {
>                 InvokerHelper.setProperty(parent, "action", action);
>             }
>             catch ( groovy.lang.MissingPropertyException mpe ) {
>                 // Ignore allowing attaching to components later.
>                 // Allows actions to be used with
>                 // multiple components more easily.
>                 ;
>             }
>             
297c306
< 
---
>                     

