
bt.cli.KeyStrokeBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-cli Show documentation
Show all versions of bt-cli Show documentation
Bt Command Line Launcher
The newest version!
package bt.cli;
import com.googlecode.lanterna.input.KeyStroke;
class KeyStrokeBinding {
private KeyStroke keyStroke;
private Runnable binding;
public KeyStrokeBinding(KeyStroke keyStroke, Runnable binding) {
this.keyStroke = keyStroke;
this.binding = binding;
}
public KeyStroke getKeyStroke() {
return keyStroke;
}
public Runnable getBinding() {
return binding;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy