I'm trying to create a service container, and want to know how to reflect the type used when the method is called. See below:
public class ServiceContainer {
HashMap<Type, Object> services;
public ServiceContainer() {
services = new HashMap<Type, Object>();
}
public <T> void addService(Type t, T object) {
services.put(t, object);
}
public <T> void addService(T object) {
Type type = typeof(T);
services.put(type, object);
}
}
I'd prefer to use the second addService, but if this isn't possible, it's something to fall back on.
EDIT: I think I found a solution for addService, but now there's another method that can't be solved in the same way:
public class ServiceContainer {
HashMap<Class, Object> services;
public ServiceContainer() {
services = new HashMap<Class, Object>();
}
public <T> void addObject(T object) {
Class type = object.getClass();
services.put(type, object);
}
public <T> boolean containsService() {
}
public <T> T getService() {
services.get(ServiceContainer.class.getMethod("getService", null).getGenericParameterTypes()[0]);
}
}
I'm kind of shooting in the dark now, I should go brush up on some documentation...