1 18 19 package org.objectweb.jac.aspects.gui.swing; 20 21 import java.util.List ; 22 23 27 28 public class DefaultCompletionEngine extends CompletionEngine { 29 30 37 38 public List getContextualChoices(String text, int position, 39 String writtenText) { 40 return baseWords; 41 } 42 43 46 47 public boolean isAutomaticCompletionChar(char c) { 48 return false; 49 } 50 51 55 56 public void runAutomaticCompletion(SHEditor editor, 57 String text, 58 int position, 59 char c) {} 60 61 } 62 | Popular Tags |