private List<String> archetypes = new ArrayList<String>();
@Override
public int complete(final String buffer, final int cursor, final List candidates) {
StringsCompleter delegate = new StringsCompleter(archetypes);
return delegate.complete(buffer, cursor, candidates);
}
@Activate
void activate(ComponentContext componentContext) {
activateComponent();