如何使用gwt/gin绑定程序/类?
代替:
bindConstant () .annotatedWith (AString.class),("XYZ");
我们需要:(显然,它不能编译)
bindConstant () .annotatedWith (AString.class), (CustomStringProvider.class);
你就不能直接bind(String.class).annotatedWith(AString.class).toProvider(CustomStringProvider.class)
吗?
如果你有一个提供商,它显然不是一个常量。