KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sellwin > gui > Stat


1 package sellwin.gui;
2
3 // SellWin http://sourceforge.net/projects/sellwincrm
4
//Contact support@open-app.com for commercial help with SellWin
5
//This software is provided "AS IS", without a warranty of any kind.
6

7 public class Stat {
8     public String JavaDoc dataType;
9     public String JavaDoc syncStatus;
10     public Integer JavaDoc localInserts;
11     public Integer JavaDoc localUpdates;
12
13     public Stat(String JavaDoc d, String JavaDoc s, int i, int u) {
14         dataType = d;
15         syncStatus = s;
16         localInserts = new Integer JavaDoc(i);
17         localUpdates = new Integer JavaDoc(u);
18     }
19
20     public Stat() {
21     }
22 }
23
Popular Tags