|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Prompt.java | - | - | - | - |
|
1 |
package org.codehaus.groovy.sandbox.ui;
|
|
2 |
|
|
3 |
import java.io.IOException;
|
|
4 |
|
|
5 |
public interface Prompt { |
|
6 |
String readLine() throws IOException;
|
|
7 |
|
|
8 |
void setCompleter(Completer completer);
|
|
9 |
|
|
10 |
void setPrompt(String prompt);
|
|
11 |
|
|
12 |
void close();
|
|
13 |
} |
|
14 |
|
|