Ejemplo n.º 1
0
 public <T> T typeSafeGet(Class<T> cls, String string) {
   return typeSafeGet(Key.get(cls, Names.named(string)));
 }
Ejemplo n.º 2
0
 public <T> void add(Class<T> cls, String string, T value) {
   add(new Attribute<T>(Key.get(cls, Names.named(string)), value));
 }
Ejemplo n.º 3
0
 public <T> T typeSafeGet(Class<T> cls) {
   return typeSafeGet(Key.get(cls));
 }
Ejemplo n.º 4
0
 public <T> void add(Class<T> cls, T value) {
   add(new Attribute<T>(Key.get(cls), value));
 }