Skip to content

Commit

Permalink
Fixed javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
afester committed Oct 26, 2016
1 parent 299a47f commit 41ff607
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ public class LiveTextFieldTableCell<S, T> extends TableCell<S,T> {
private TextField textField;

/**
* Creates a new table cell for direct text editing.
*
* @param inlineEditCol
* @return
* @return A new table cell for inline text editing.
*/
public static <S,T> Callback<TableColumn<S,T>, TableCell<S,T>> forTableColumn() {
return list -> new LiveTextFieldTableCell<S,T>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
* </ul>
* then the following events are delivered:
*
* <ul><li>KeyStateEvent(CURSOR_DOWN) => now CURSOR_DOWN is active</li>
* <li>KeyStateEvent(CURSOR_LEFT) => now CURSOR_LEFT is active</li>
* <li>KeyStateEvent(null) => no key is active anymore.</li>
* <ul><li>KeyStateEvent(CURSOR_DOWN) =&gt; now CURSOR_DOWN is active</li>
* <li>KeyStateEvent(CURSOR_LEFT) =&gt; now CURSOR_LEFT is active</li>
* <li>KeyStateEvent(null) =&gt; no key is active anymore.</li>
* </ul>
* The KeyStateManager does not yet support tracking more than one key at the same time -
* even though all currently pressed keys are known inside the KeyStateManager.
Expand Down

0 comments on commit 41ff607

Please sign in to comment.