001    package org.crsh.cmdline.matcher.impl;
002    
003    import org.crsh.cmdline.CommandCompletion;
004    import org.crsh.cmdline.matcher.CmdCompletionException;
005    
006    /**
007     * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
008     */
009    abstract class Completion {
010    
011      abstract CommandCompletion complete() throws CmdCompletionException;
012    
013    }