Package | Description |
---|---|
org.eth.cyril.bugfixer.input |
Modifier and Type | Interface and Description |
---|---|
interface |
MixedInput<T> |
Modifier and Type | Method and Description |
---|---|
Input<T> |
InputGeneratorImpl.getInputFromReader(java.io.Reader reader,
char separator) |
Input<T> |
InputGenerator.getInputFromReader(java.io.Reader reader,
char separator)
Gets a reader input generator from the given reader.
|
Input<T> |
InputGeneratorImpl.getInputFromUser(javax.swing.JPanel panel) |
Input<T> |
InputGenerator.getInputFromUser(javax.swing.JPanel panel)
Gets an input generator taking input from the user.
|
default Input<T> |
InputGenerator.getMixedInputUntyped(java.util.List<Input<?>> inputs)
Untyped version of
InputGenerator.getMixedInput(List) , for the case when the actual
generic type is unknown. |
default Input<T> |
InputGenerator.getRandomInput(Bound<T> bound)
Gets an input generator generating random input from a single bound.
|
Input<T> |
InputGeneratorImpl.getRandomInput(java.util.List<Bound<T>> bounds) |
Input<T> |
InputGenerator.getRandomInput(java.util.List<Bound<T>> bounds)
Gets an input generator generating random input from multiple bounds.
|
default Input<T> |
InputGenerator.getRandomInputUntyped(java.util.List<Bound<?>> bounds)
Untyped version of
InputGenerator.getRandomInput(List) , for the case when the actual
generic type is unknown. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Input<T>> |
MixedInput.getActiveInputs()
Gets the inputs contained in this MixedInput instance.
|
Modifier and Type | Method and Description |
---|---|
void |
MixedInput.setActive(Input<?> input)
Set the input, which must be one of the active inputs, to be currently active.
|
Modifier and Type | Method and Description |
---|---|
MixedInput<T> |
InputGeneratorImpl.getMixedInput(java.util.List<Input<T>> inputs) |
MixedInput<T> |
InputGenerator.getMixedInput(java.util.List<Input<T>> inputs)
Gets an input which mixes the given inputs,
|
default Input<T> |
InputGenerator.getMixedInputUntyped(java.util.List<Input<?>> inputs)
Untyped version of
InputGenerator.getMixedInput(List) , for the case when the actual
generic type is unknown. |