-
```
What steps will reproduce the problem?
1. add to a GIN-managed class a method like:
@Inject(optional = true) void injectA(A object){ }
, where A is a class not configured anywhere in GIN modules
…
-
```
This is the specific example that bit us. There may be a more general case to
be found.
The visibility modifiers (or lack thereof) on A and B are important.
---
package x;
public class A {
…
-
```
This is the specific example that bit us. There may be a more general case to
be found.
The visibility modifiers (or lack thereof) on A and B are important.
---
package x;
public class A {
…
-
```
What steps will reproduce the problem?
1. Make any changes to your gin module or rename a module (in hosted mode)
2. Press refresh
What is the expected output? What do you see instead?
Expecting …
-
```
What steps will reproduce the problem?
1. Make any changes to your gin module or rename a module (in hosted mode)
2. Press refresh
What is the expected output? What do you see instead?
Expecting …
-
```
Can you seperate the server side infrastructure to run on client side for
non-gwt-rpc applicaitons. It seems like the dispatch infrastructure with
AsyncCallback with generics should be leveraged…
-
```
Add support for toInstance() injections.
Proposed Solution: Add lite runtime emulation in the package
com.google.inject.client.impl, implementing the Ginjector interface to
store the instances be…
-
```
Add support for toInstance() injections.
Proposed Solution: Add lite runtime emulation in the package
com.google.inject.client.impl, implementing the Ginjector interface to
store the instances be…
-
Hello can you add such example with gradle?
I spend few days, but can't decide it =(
```
buildscript {
dependencies {
classpath "de.richsource.gradle.plugins:gwt-gradle-plugin:${gwtGradle…
-
```
This should work:
class Foo {
@Inject Foo(@Nullable @Named("unbound") String s, @Nullable Unimplemented
unimpl);
interface Unimplemented {}
}
null should be passed for both constructor para…