コード例 #1
0
ファイル: TypesPrinter.java プロジェクト: MontiCore/monticore
 protected String doPrintComplexReferenceType(ASTComplexReferenceType type) {
   String ret = "";
   if (type != null && type.getSimpleReferenceTypes() != null) {
     return doPrintSimpleReferenceTypeList(type.getSimpleReferenceTypes());
   }
   return ret;
 }
コード例 #2
0
ファイル: TypesPrinter.java プロジェクト: MontiCore/monticore
 protected String doPrintComplexReferenceTypeWithoutTypeArguments(ASTComplexReferenceType type) {
   if (type != null && type.getSimpleReferenceTypes() != null) {
     return doPrintSimpleReferenceTypeListWithoutTypeArguments(type.getSimpleReferenceTypes());
   }
   return "";
 }