List<LookupElement> lookupElements = new ArrayList<LookupElement>();
Set<String> strings = new HashSet<String>();
for(DoctrineModelField field: EntityHelper.getModelFields(this.phpClass)) {
addCamelUnderscoreName(strings, org.apache.commons.lang.StringUtils.trim(field.getName()));
lookupElements.add(new DoctrineModelFieldLookupElement(field).withBoldness(true));
}
// provide setter fallback for non model class or unknown methods
for(Method method: this.phpClass.getMethods()) {
String name = method.getName();