(int keyCode)
| 3054 | |
| 3055 | /// {@inheritDoc} |
| 3056 | @Override |
| 3057 | protected void longKeyPress(int keyCode) { |
| 3058 | if (focused != null) { |
| 3059 | if (focused.getComponentForm() == this) { //NOPMD CompareObjectsWithEquals |
| 3060 | focused.longKeyPress(keyCode); |
| 3061 | } |
| 3062 | } |
| 3063 | } |
| 3064 | |
| 3065 | /// {@inheritDoc} |
| 3066 | @Override |