Beispiel #1
0
 protected String doPrintComplexReferenceType(ASTComplexReferenceType type) {
   String ret = "";
   if (type != null && type.getSimpleReferenceTypes() != null) {
     return doPrintSimpleReferenceTypeList(type.getSimpleReferenceTypes());
   }
   return ret;
 }
Beispiel #2
0
 protected String doPrintComplexReferenceTypeWithoutTypeArguments(ASTComplexReferenceType type) {
   if (type != null && type.getSimpleReferenceTypes() != null) {
     return doPrintSimpleReferenceTypeListWithoutTypeArguments(type.getSimpleReferenceTypes());
   }
   return "";
 }