Exemple #1
0
 private static String parseTypeInfo(URIString pUriStr) {
   URIString uriStr = pUriStr.deepCopy();
   if (!uriStr.cutStarting('(')) return null;
   String typeInfo = uriStr.removeTill(')', true, true);
   if (typeInfo == null) return null;
   pUriStr.set(uriStr);
   return typeInfo;
 }