122123124125126127128129130131
} @Override public int hashCode() { int result = 1; AnnotatedDeclaration container = getContainer(); result = 37 * result + (container == null ? 0 : container.hashCode()); result = 37 * result + getName().hashCode(); return result; }
194195196197198199200201202203