Search Results

2
votes
1answer
97 views

What Java versions does Griffon support?

I want to write a Swing application in Griffon but I am not sure what versions of Java I can support. …
1
vote

How can I convince GroovyShell to maintain state over eval() calls?

I am not sure about what you mean about declared classes not existing between evals, the following two scripts work as expected when evaled one after another: class C {{println 'hi' …
2
votes

How to check if element in groovy array/hash/collection/list?

.contains() is the best method for lists, but for maps you will need to use .containsKey() or .containsValue() [a:1,b:2,c:3].containsValue(3) [a:1,b:2,c:3].containsKey('a') …
2
votes

Getting Groovy’s Grape Going!!!

There is still some kinks in working out the startup/kill switch routine. For Beta-2 do this in it's own script first: groovy.grape.Grape.initGrape() Another issu …
7
votes

Best pattern for simulating “continue” in Groovy closure

You can only support continue cleanly, not break. Especially with stuff like eachLine and each. The inability to support break has to do with how those methods are evaluated, there is no consider …
1
vote

Where is groovy.swing.factory.BindProxyFactory?

It's in the Groovy 1.6 builds, not the 1.5.7 builds. Apparently GfxBuilder 6.1 was built against the Groovy 1.6 codebase. …
1
vote

Java Swing Table size problem

@jfpoilpret is correct in that the preferredScrollableViewpoet size needs to be managed. The groovy way would be to bind it to the preferred size of the table. So if this was added inside of the …
0
votes

How to show a second MVC group as a dialog box in griffon

The easiest way would be to use the view panel as the root of a dialog in the parent MVC group. In the view for the group that yor code snippet is the controller of you could do something like this …
0
votes

favourite IDE for griffon development

Griffon apps have some rudimentry hooks already for IDE integration. First, a .classpath and .project file are generated that mark the expected source and test d …