e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 10 (0.0030 seconds)
Class: com.technoetic.xplanner.wiki.SimpleWikiAdapter  ©, Rating: 100% of 1, C1

07 String url = new XPlannerProperties().get().getProperty("twiki.scheme.wiki"); 08 if (url != null) { 09 url = url.replaceAll("\\$1", wikiWord); 10 return "<a href='" + url + "'>" + wikiWord + "</a>"; 11 } else {

Class: com.technoetic.xplanner.tags.AccessKeyTransformer  ©, Rating: 0% of 0, C1

07 return text.replaceFirst("&(.)", "<span class=\"mnemonic\">$1</span>"); 08 } 09 return text.replaceAll("&&", "&"); 10 } 11

Class: com.technoetic.xplanner.wiki.ExternalTwikiAdapter  ©, Rating: 0% of 0, C1

30 String url = urlPattern; 31 url = url.replaceAll("\\$\\{subwiki\\}", subwiki + "/"); 32 url = url.replaceAll("\\$\\{word\\}", word); 33 return url; 34 }

Class: com.technoetic.xplanner.wiki.ExternalTwikiAdapter  ©, Rating: 0% of 0, C1

29 private String substitute(String subwiki, String word, String urlPattern) { 30 String url = urlPattern; 31 url = url.replaceAll("\\$\\{subwiki\\}", subwiki + "/"); 32 url = url.replaceAll("\\$\\{word\\}", word); 33 return url;

Class: com.technoetic.xplanner.wiki.GenericWikiAdapter  ©, Rating: 0% of 0, C1

47 48 private String substituteWikiWord(String wikiWord, String text) { 49 return text.replaceAll("\\$\\{word\\}", wikiWord); 50 } 51

Class: com.technoetic.xplanner.domain.repository.AttributeRepositoryImpl  ©, Rating: 0% of 0, C2

63 String name = attribute.getName(); 64 if (StringUtils.isNotEmpty(prefix)) { 65 name = name.replaceAll("^"+prefix, ""); 66 } 67 attributes.put(name, attribute.getValue());

Class: com.technoetic.xplanner.db.AggregateTimesheetQuery  ©, Rating: 0% of 0, C2

066 } 067 inClause.append(")"); 068 query = query.replaceAll(IN_CLAUSE_REPLACEMENT, inClause.toString()); 069 } 070

Class: com.technoetic.xplanner.tags.db.UseBeansTag  ©, Rating: 0% of 0, C2

047 String value = keyAndValue[1]; 048 if (value.startsWith("'")) { 049 value = value.replaceAll("^'|'$", ""); 050 } 051 queryTranslations.put(keyAndValue[0], value);

Class: com.technoetic.xplanner.export.MpxExporter  ©, Rating: 0% of 0, C1

047 048 private String filterString(String s) { 049 return s.replaceAll("\r", ""); 050 } 051

Class: com.technoetic.xplanner.tags.LinkTag  ©, Rating: 0% of 0, C2

198 String url = hrefURL.toString(); 199 if (removeQuotes) { 200 url = url.replaceAll("\"", ""); 201 } 202 ResponseUtils.write(pageContext, url);

Result Page:  1