Skip to content

Commit 2b8bbd5

Browse files
hansonrhansonr
authored andcommitted
menu improvements -- now ui.j2smenu
1 parent 801fa41 commit 2b8bbd5

File tree

9 files changed

+314
-202
lines changed

9 files changed

+314
-202
lines changed

sources/net.sf.j2s.java.core/src/javax/swing/KeyboardManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public void registerKeyStroke(KeyStroke k, JComponent c) {
106106
return;
107107
Object tmp = keyMap.get(k);
108108
if (tmp == null) {
109-
System.out.println(">>>>>>>KM>>>>>reg " + k + " " + c);
109+
// System.out.println(">>>>>>>KM>>>>>reg " + k + " " + c);
110110
keyMap.put(k,c);
111111
} else if (tmp instanceof Vector) { // if there's a Vector there then add to it.
112112
Vector v = (Vector)tmp;

sources/net.sf.j2s.java.core/src/swingjs/jquery/JQueryUI.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
77
* Note that if you change one of the JavaScript files in this directory,
88
* the transpiler will not transfer it to the site directory unless you touch this java file.
99
*
10-
* @author Bob Hanson
11-
*
12-
*/
13-
public class JQueryUI {
14-
15-
public JQueryUI() {
10+
* @author Bob Hanson
11+
*
12+
*
13+
*/
14+
public class JQueryUI {
15+
16+
public JQueryUI() {
1617
// for reflection
1718
}
1819
static {
19-
20-
/**
20+
21+
/**
2122
*
2223
* @j2sNative
2324
*

0 commit comments

Comments
 (0)