Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/rsi/ipstat/MaxSum.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 MaxSum {
13    
14          public long maxin;
15    public long sumin;
16          public long maxout;
17    public long sumout;
18  
19    public MaxSum()  {
20      maxin = 0;
21      sumin = 0;
22      maxout = 0;
23      sumout = 0;
24    }
25  }