@Override
 public int hashCode() {
   final int prime = 31;
   int result = 1;
   result = prime * result + ((m_field == null) ? 0 : m_field.hashCode());
   result = prime * result + ((m_method == null) ? 0 : m_method.hashCode());
   return result;
 }
 public ResolvedField(ResolvedType context, Annotations ann,
         Field field, ResolvedType type)
 {
     super(context, ann);
     _field = field;
     _type = type;
     _hashCode = (_field == null ? 0 : _field.hashCode());
 }
 @Override
 public int hashCode() {
   return field.hashCode();
 }
Beispiel #4
0
 @Override
 public int hashCode() {
   return field != null ? field.hashCode() : 0;
 }