-
```
After checking out GIN, to my eclipse workspace, I run the build.xml script
and get the output in the attached file. The path to the project has spaces
in it and it appears that it is being incorr…
-
```
From review:
[google-gin] limpbizkit commented on revision r73.
Details are at http://code.google.com/p/google-gin/source/detail?r=73
Score: Positive
Line-by-line comments:
File: /trunk/src/c…
-
```
It seems, that the current GIN 2.1 is compiled with Java7.
We still use Java6 for our development so we get the "Unsupported major.minor
version 51.0" Error.
Is there an actual reason that Jav…
-
```
What version of gwt and gwt-incubator are you using?
gwt = 1.5.3
gwt-incubator = gwt-incubator_1-5_Sept_04
What OS and browser are you using?
OS = Windows XP
Browser = Firefox
Do you see this er…
-
```
Follow up on discussion here:
http://groups.google.com/group/google-gin/browse_thread/thread/a182319d8b17c73c
Basically, we could get rid of @Modules("...") by mirroring some Guice
interfaces to …
-
```
What steps will reproduce the problem?
1. Try to bind a class that has two constructors, one of them a default
constructor. Example:
public class ViewImpl implements View {
private Strin…
-
```
Trying to inject an instance of a non-public class fails weirdly. Would be
nice to support this as well as Guice does. Regardless, if it fails, it
should fail with useful error messages.
```
Orig…
-
```
For some situations, in particular when the construction of an object is
not under Gin/developer control, constructor injection is not sufficient.
An example for this issue are GWT entry points -…
-
```
With these declarations:
@GinModules({TestGinModule.class})
public interface Injector extends Ginjector {
}
public class TestGinModule extends PrivateGinModule {
@Override
protected void co…
-
```
What steps will reproduce the problem?
1. Use and @Inject on a class which isn't public (but friendly)
What is the expected output? What do you see instead?
The compilation should work. It worked…