}
public boolean isRightMany() {
boolean retVal = false;
JavaMethod method = getRightMethod();
EjbRelationTag tag = getLeftTag();
if (method != null) {
retVal |= method.getReturns().isA(new Type(Collection.class.getName()));
retVal |= method.getReturns().isA(new Type(Set.class.getName()));
} else {
retVal = tag.isTargetMultiple();
}
return retVal;
}