/* */ {
/* 99 */ if (obj == this)
/* 100 */ return true;
/* 101 */ if ((obj == null) || (!(obj instanceof ModuleCapability)))
/* 102 */ return false;
/* 103 */ ModuleCapability other = (ModuleCapability)obj;
/* 104 */ if (!getName().equals(other.getName()))
/* 105 */ return false;
/* 106 */ return getVersion().equals(other.getVersion());
/* */ }