示例#1
0
 private List<ProducedType> getInternalSatisfiedTypes() {
   List<ProducedType> satisfiedTypes = new ArrayList<ProducedType>();
   for (ProducedType st : getDeclaration().getSatisfiedTypes()) {
     satisfiedTypes.add(st.substituteInternal(getTypeArguments()));
   }
   return satisfiedTypes;
 }
示例#2
0
 private List<ProducedType> getInternalCaseTypes() {
   if (getDeclaration().getCaseTypes() == null) {
     return null;
   } else {
     List<ProducedType> caseTypes = new ArrayList<ProducedType>();
     for (ProducedType ct : getDeclaration().getCaseTypes()) {
       caseTypes.add(ct.substituteInternal(getTypeArguments()));
     }
     return caseTypes;
   }
 }
示例#3
0
 private ProducedType getInternalExtendedType() {
   ProducedType extendedType = getDeclaration().getExtendedType();
   return extendedType == null ? null : extendedType.substituteInternal(getTypeArguments());
 }
示例#4
0
 private ProducedType getInternalSelfType() {
   ProducedType selfType = getDeclaration().getSelfType();
   return selfType == null ? null : selfType.substituteInternal(getTypeArguments());
 }