Skip to content

Commit cc61ebd

Browse files
hansonrhansonr
authored andcommitted
cleanup
1 parent 218c6b4 commit cc61ebd

File tree

1 file changed

+15
-6
lines changed
  • sources/net.sf.j2s.java.core/src/swingjs/a2s

1 file changed

+15
-6
lines changed
Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
package swingjs.a2s;
22

3-
import java.awt.Graphics;
4-
3+
//import java.awt.Color;
4+
//import java.awt.Component;
5+
//import java.awt.Font;
56

67
public class Util {
7-
8-
public static void drawString(Graphics g, String text, int x, int y) {
9-
g.drawString(text, x, y);
10-
}
8+
// public int junk =1;
9+
// static Color CONTROL = new Color(238,238,238); // #EEEEEE
10+
// static Color CONTROL_TEXT = new Color(51,51,51); // #333333
11+
// static void setAWTWindowDefaults(Component c) {
12+
// c.setBackground(CONTROL);
13+
// c.setForeground(CONTROL_TEXT);
14+
// c.setFont(new Font(Font.DIALOG, Font.PLAIN, 12));
15+
// }
16+
//
17+
// public static void drawString(Graphics g, String text, int x, int y) {
18+
// g.drawString(text, x, y);
19+
// }
1120
}

0 commit comments

Comments
 (0)