@@ -15,6 +15,7 @@ public class jshowarch
15
15
16
16
public static void main (String argv [])
17
17
{
18
+ System .out .println ("jshowarch:starting ..." );
18
19
Frame f = new Frame ("jshowarch" );
19
20
20
21
f .addWindowListener (
@@ -30,15 +31,15 @@ public static void main(String argv[])
30
31
// cmd line args need to be: xpos ypos width height fontsize
31
32
// in this order!
32
33
startx = Integer .valueOf (argv [0 ]);
33
- System .out .println ("argv[0]=" + argv [0 ]);
34
+ System .out .println ("jshowarch: argv[0]=" + argv [0 ]);
34
35
starty = Integer .valueOf (argv [1 ]);
35
- System .out .println ("argv[1]=" + argv [1 ]);
36
+ System .out .println ("jshowarch: argv[1]=" + argv [1 ]);
36
37
width = Integer .valueOf (argv [2 ]);
37
- System .out .println ("argv[2]=" + argv [2 ]);
38
+ System .out .println ("jshowarch: argv[2]=" + argv [2 ]);
38
39
height = Integer .valueOf (argv [3 ]);
39
- System .out .println ("argv[3]=" + argv [3 ]);
40
+ System .out .println ("jshowarch: argv[3]=" + argv [3 ]);
40
41
fontsize = Integer .valueOf (argv [4 ]);
41
- System .out .println ("argv[4]=" + argv [4 ]);
42
+ System .out .println ("jshowarch: argv[4]=" + argv [4 ]);
42
43
}
43
44
}
44
45
catch (Exception e )
@@ -71,5 +72,6 @@ public static void main(String argv[])
71
72
f .setLocation (startx , starty );
72
73
f .setSize (width , height );
73
74
f .setVisible (true );
75
+ System .out .println ("jshowarch:widget ready." );
74
76
}
75
77
}
0 commit comments