br.com.objectos.way.etc.EtcKey Maven / Gradle / Ivy
The newest version!
/*
* ConfigKey.java criado em 07/09/2012
*
* Propriedade de Objectos Fábrica de Software LTDA.
* Reprodução parcial ou total proibida.
*/
package br.com.objectos.way.etc;
/**
* @author [email protected] (Marcio Endo)
*/
class EtcKey {
private final Class> clazz;
public EtcKey(Class> clazz) {
this.clazz = clazz;
}
public Class> get() {
return clazz;
}
@Override
public int hashCode() {
return clazz.hashCode();
}
@Override
public boolean equals(Object obj) {
EtcKey other = (EtcKey) obj;
return clazz.equals(other.clazz);
}
}