Update of /cvsroot/firebug/firebug/project/zaurus/vu/isis/nest/zaurus
In directory sc8-pr-cvs1:/tmp/cvs-serv16456/vu/isis/nest/zaurus
Modified Files:
ZCanvas.java ZMain.java
Log Message:
ant now builds several pieces of the source tree
separately.
Index: ZCanvas.java
===================================================================
RCS file: /cvsroot/firebug/firebug/project/zaurus/vu/isis/nest/zaurus/ZCanvas.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ZCanvas.java 21 Jul 2003 17:09:29 -0000 1.2
--- ZCanvas.java 29 Jul 2003 21:28:19 -0000 1.3
***************
*** 93,96 ****
--- 93,98 ----
}
+ public ZCanvas () {
+ }
// Methods to set the various attributes of the component
Index: ZMain.java
===================================================================
RCS file: /cvsroot/firebug/firebug/project/zaurus/vu/isis/nest/zaurus/ZMain.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ZMain.java 21 Jul 2003 17:45:09 -0000 1.5
--- ZMain.java 29 Jul 2003 21:28:19 -0000 1.6
***************
*** 11,15 ****
private static final int height = 280;
! public static void main (String[]args) {
System.out.println ("In main()...");
--- 11,15 ----
private static final int height = 280;
! public static void main (String[]args) {
System.out.println ("In main()...");
***************
*** 18,24 ****
zf.setLocation(0, 0);
- //Canvas c = new Canvas();
- //c.setSize(236,280);
-
Panel panel = new Panel();
panel.setSize(width,height);
--- 18,21 ----
***************
*** 40,51 ****
Color color = new Color((float).5,(float).55,(float).5);
!
! String packetdata = "Mote ID : 13\n"
! + "Temp : 72.3\n"
! + "Baro : 29.2\n"
! + "Humidity: 99%\n";
!
!
! ZCanvas zcanvas = new ZCanvas(packetdata);
zcanvas.setSize(cwidth-50,cheight-50);
zcanvas.setBackground(color);
--- 37,41 ----
Color color = new Color((float).5,(float).55,(float).5);
! ZCanvas zcanvas = new ZCanvas();
zcanvas.setSize(cwidth-50,cheight-50);
zcanvas.setBackground(color);
***************
*** 60,68 ****
msg.set_temp((float)73.13);
! packetdata = msg.toString();
zcanvas.setLabel(packetdata);
}
}
-
--- 50,57 ----
msg.set_temp((float)73.13);
! String packetdata = msg.toString();
zcanvas.setLabel(packetdata);
}
}
|