1 package org.codehaus.groovy.sandbox.ui;2 3 import java.util.List ;4 5 public interface Completer {6 List findCompletions(String token);7 }8