1 package com.atlassian.webtest.ui.keys;
2
3 /**
4 * <p>
5 * A {@link Key} extension that represents non-character keys commonly used within tests
6 * (e.g. Enter, Escape, arrows etc.).
7 *
8 * <p>
9 * All special keys should be defined by the {@link SpecialKeys} enumeration. Those should be supported by
10 * all implementations. Implementations are also free to support any additional keys, by means of providing
11 * implementations of this interface.
12 *
13 * @see Key
14 * @see SpecialKeys
15 */
16 public interface SpecialKey extends Key
17 {
18 }