[Tinyos-2-commits] CVS: tinyos-2.x/apps/Oscilloscope/java Window.java, 1.4, 1.5 Oscilloscope.java, 1.3, 1.4

Jan Beutel beutel at users.sourceforge.net
Thu Sep 6 05:21:36 PDT 2007


Update of /cvsroot/tinyos/tinyos-2.x/apps/Oscilloscope/java
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv32198/apps/Oscilloscope/java

Modified Files:
	Window.java Oscilloscope.java 
Log Message:
no more trailing tabs. checkstyle test

Index: Window.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/Oscilloscope/java/Window.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Window.java	6 Sep 2007 12:10:50 -0000	1.4
--- Window.java	6 Sep 2007 12:21:34 -0000	1.5
***************
*** 68,74 ****
          }
      public boolean isCellEditable(int row, 
!     		int col) { return col == 1; }
          public synchronized void setValueAt(Object value, 
!         		int row, int col) {
          colors.set(row, value);
              fireTableCellUpdated(row, col);
--- 68,74 ----
          }
      public boolean isCellEditable(int row, 
!             int col) { return col == 1; }
          public synchronized void setValueAt(Object value, 
!                   int row, int col) {
          colors.set(row, value);
              fireTableCellUpdated(row, col);
***************
*** 164,168 ****
      moteList.setDefaultRenderer(Color.class, new MoteColor());
      moteList.setDefaultEditor(Color.class, 
!     		new ColorCellEditor("Pick Mote Color"));
      moteList.setPreferredScrollableViewportSize(new Dimension(100, 400));
      JScrollPane motePanel = new JScrollPane();
--- 164,168 ----
      moteList.setDefaultRenderer(Color.class, new MoteColor());
      moteList.setDefaultEditor(Color.class, 
!               new ColorCellEditor("Pick Mote Color"));
      moteList.setPreferredScrollableViewportSize(new Dimension(100, 400));
      JScrollPane motePanel = new JScrollPane();
***************
*** 261,268 ****
          if (!graph.setYAxis(Integer.parseInt(min), Integer.parseInt(max))) {
              error("Invalid range " 
!             		+ min 
!             		+ " - " 
!             		+ max 
!             		+ " (expected values between 0 and 65535)");
          }
          return;
--- 261,268 ----
          if (!graph.setYAxis(Integer.parseInt(min), Integer.parseInt(max))) {
              error("Invalid range " 
!                       + min 
!                       + " - " 
!                       + max 
!                       + " (expected values between 0 and 65535)");
          }
          return;

Index: Oscilloscope.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-2.x/apps/Oscilloscope/java/Oscilloscope.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Oscilloscope.java	6 Sep 2007 10:26:05 -0000	1.3
--- Oscilloscope.java	6 Sep 2007 12:21:34 -0000	1.4
***************
*** 64,68 ****
  
      public synchronized void messageReceived(int dest_addr, 
!     		Message msg) {
      if (msg instanceof OscilloscopeMsg) {
          OscilloscopeMsg omsg = (OscilloscopeMsg)msg;
--- 64,68 ----
  
      public synchronized void messageReceived(int dest_addr, 
!             Message msg) {
      if (msg instanceof OscilloscopeMsg) {
          OscilloscopeMsg omsg = (OscilloscopeMsg)msg;



More information about the Tinyos-2-commits mailing list