Source code: com/rsi/ipstat/UserStat.java
1 /*
2
3 This software is open-source and is distributed under the terms of the GNU
4 General Public License.
5
6 Copyright (c) 2000-2002 Sergey I. Rotar <rsi@isp.od.ua>
7
8 */
9
10 package com.rsi.ipstat;
11
12 public class UserStat {
13 public long[] bytein;
14 public long[] byteout;
15 public String[] time;
16 public int realLength = 0;
17
18 public UserStat()
19 {
20 bytein = new long[Define.ROWS];
21 byteout = new long[Define.ROWS];
22 time = new String[Define.ROWS];
23 }
24
25 public UserStat(int n)
26 {
27
28 bytein = new long[n];
29 byteout = new long[n];
30 time = new String[n];
31
32 }
33
34 }