1 package com.atlassian.webtest.ui.keys;
2
3 /**
4 * <p>
5 * Represents a single key stroke into the current page.
6 *
7 * <p>
8 * This is a marker interface that all framework API methods handling key input should accept. It has two main
9 * implementations: character keys and special keys. Creating custom implementations is discouraged, as it will
10 * most likely not be handled across different implementations.
11 *
12 *
13 * @see CharacterKey
14 * @see SpecialKey
15 * @see KeySequence
16 */
17 public interface Key
18 {
19 }