1 36 package jline; 37 38 import java.io.*; 39 import java.util.*; 40 41 53 public class CandidateCycleCompletionHandler 54 implements CompletionHandler 55 { 56 public boolean complete (final ConsoleReader reader, final List candidates, 57 final int position) 58 throws IOException 59 { 60 throw new IllegalStateException ( 61 "CandidateCycleCompletionHandler unimplemented"); 62 } 63 } 64 65 | Popular Tags |