if (m.find()) {
String parsedName = m.group(1);
control = EditorUtils.firstLetterSmall(parsedName);
}
if(control != null && control.startsWith(written)) {
list.add(new ControlCompletionItem(control, startOffset, startOffset + length));
}
}
}
} catch (IOException ioe) {
//Logger.getLogger("TmplCompletionQuery").warning("scanning of unnexisting file " + p.getAbsolutePath());