GUTS FAQ
General
GUTS vs BSAF?
http://kenai.com/jira/browse/GUTS-2
http://en.wikipedia.org/wiki/Swing_Application_Framework
GUTS and JSR-295?
http://kenai.com/projects/guts/lists/development/archive/2010-08/message/18
Event Bus Performance?
http://kenai.com/jira/browse/GUTS-23
How should I handle login?
http://kenai.com/jira/browse/GUTS-39
How can I get underlying injector?
http://kenai.com/projects/guts/lists/development/archive/2010-08/message/6
Why my TaskListener does not work?
http://kenai.com/projects/guts/lists/development/archive/2010-08/message/15
Injection of 3rd-party components?
http://kenai.com/projects/guts/lists/development/archive/2010-08/message/27
Guts ResourceManager is extensible to manage injection of 3rd-party components. For an example check out how JFileChooser resource injection is currently supported; more precisely, in net.guts.gui.resource package, you should take a look at: - JFileChooserInjector - ResourceModule: to see how JFileChooserInjector is bound
How should I inject a TaskAction?
http://kenai.com/projects/guts/lists/development/archive/2010-08/message/27
http://code.google.com/p/google-guice/wiki/ProviderBindings
Injecting the Injector should always be "the last resort" if everything else did not work! In your case, I guess that:
- making sure TA_LoginTask isn't defined as a singleton (because IIRC Tasks are not supposed to be reused but must be "one shot")
- injecting a Provider <TA_LoginTask>
- calling get() on that provider in your perform() method (instead of guiceInjector.getInstance())
Shall just work, and is a better way (the best way? always hard to tell with Guice, but one of the best I would say;-)) than "injecting the injector".
Develipment
Approval Process
http://kenai.com/projects/guts/lists/development/archive/2010-08/message/91
How do I edit kenai web site?
#!/bin/bash SITE="https://kenai.com/website/guts" DISK="/media/webdav" sudo apt-get install davfs2 sudo mount.davfs "$SITE" "$DISK"
SessionManager
SessionManager and final fields?
http://kenai.com/jira/browse/GUTS-36
SessionManager and encryption?
http://kenai.com/jira/browse/GUTS-37





