All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bt.cli.KeyStrokeBinding Maven / Gradle / Ivy

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