in maven-jxr/src/main/java/org/apache/maven/jxr/util/SimpleWordTokenizer.java [44:59]
public static List<StringEntry> tokenize(String line) {
/*
* determine where to start processing this String... this could either be the start of the line or just keep
* going until the first
*/
int start = getStart(line);
// find the first non-BREAKER char and assume that is where you want to start
if (line == null || line.length() == 0 || start == -1) {
return Collections.emptyList();
}
return tokenize(line, start);
}