summaryrefslogtreecommitdiff
path: root/src/src/main/java/jline/CandidateCycleCompletionHandler.java
blob: a0bf208cdcbe043de459e2e445fefc7b42963708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (c) 2002-2007, Marc Prud'hommeaux. All rights reserved.
 *
 * This software is distributable under the BSD license. See the terms of the
 * BSD license in the documentation provided with this software.
 */
package jline;

import java.io.*;
import java.util.*;

/**
 *  <p>
 *  A {@link CompletionHandler} that deals with multiple distinct completions
 *  by cycling through each one every time tab is pressed. This
 *  mimics the behavior of the
 *  <a href="http://packages.qa.debian.org/e/editline.html">editline</a>
 *  library.
 *  </p>
 *  <p><strong>This class is currently a stub; it does nothing</strong></p>
 *  @author  <a href="mailto:mwp1@cornell.edu">Marc Prud'hommeaux</a>
 */
public class CandidateCycleCompletionHandler implements CompletionHandler {
    public boolean complete(final ConsoleReader reader, final List candidates,
                            final int position) throws IOException {
        throw new IllegalStateException("CandidateCycleCompletionHandler unimplemented");
    }
}