Skip to content

Commit 330e680

Browse files
committed
Fixing JavaDoc warming.
1 parent d730536 commit 330e680

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/com/github/kwhat/jnativehook/keyboard/NativeKeyEvent.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
/**
2525
* An event which indicates that a keystroke occurred at global scope.
2626
* <p>
27-
* <p>
27+
*
2828
* This low-level event is generated by the native system when a key is pressed or released
2929
* independent of Java component focus. The event is passed to every
3030
* <code>NativeKeyListener</code> object which has been registered to receive
3131
* global key events using the {@link GlobalScreen#addNativeKeyListener(NativeKeyListener)} method.
3232
* Each <code>NativeKeyListener</code> object will receive a
3333
* <code>NativeKeyEvent</code> when the event occurs.
3434
* <p>
35-
* <p>
35+
*
3636
* All <code>NativeKeyEvent</code> objects are dependent on the native platform and keyboard layout.
3737
* <code>NATIVE_KEY_PRESSED</code> and <code>NATIVE_KEY_RELEASED</code> events are generated for
3838
* every key code received by the native system. The key being pressed or released is indicated by
@@ -48,13 +48,12 @@
4848
* note that {@link #getKeyCode()} will always return <code>VC_UNDEFINED</code> for
4949
* <code>NATIVE_KEY_TYPED</code> events.
5050
* <p>
51-
* <p>
51+
*
5252
* Virtual key codes only represent the physical key that has been pressed and should not be
5353
* mistaken with the character mapped to that key by the operating system.
5454
* <code>NATIVE_KEY_PRESSED</code> and <code>NATIVE_KEY_RELEASED</code> events should only be used
5555
* to determin phisical key state, while <code>NATIVE_KEY_TYPED</code> events can be used to
5656
* determine the Unicode representation of the <code>NativeKeyEvent</code>.
57-
* <p>
5857
*
5958
* @author Alexander Barker (<a href="mailto:[email protected]">[email protected]</a>)
6059
* @version 2.0

0 commit comments

Comments
 (0)