Typo: inspect_jpegs, not inspect-jpegs in form
[privoxy.git] / src / java / org / privoxy / activityconsole / Stat.java
1 /*********************************************************************
2  *
3  * File        :  $Source$
4  *
5  * Purpose     :  A structification of a statistic element: a key
6  *                associated with a value.
7  *
8  * Copyright   :  Written by and Copyright (C) 2003 the SourceForge
9  *                Privoxy team. http://www.privoxy.org/
10  *
11  *                Based on the Internet Junkbuster originally written
12  *                by and Copyright (C) 1997 Anonymous Coders and
13  *                Junkbusters Corporation.  http://www.junkbusters.com
14  *
15  *                This program is free software; you can redistribute it
16  *                and/or modify it under the terms of the GNU General
17  *                Public License as published by the Free Software
18  *                Foundation; either version 2 of the License, or (at
19  *                your option) any later version.
20  *
21  *                This program is distributed in the hope that it will
22  *                be useful, but WITHOUT ANY WARRANTY; without even the
23  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
24  *                PARTICULAR PURPOSE.  See the GNU General Public
25  *                License for more details.
26  *
27  *                The GNU General Public License should be included with
28  *                this file.  If not, you can view it at
29  *                http://www.gnu.org/copyleft/gpl.html
30  *                or write to the Free Software Foundation, Inc., 59
31  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
32  *
33  * Revisions   :
34  *    $Log$
35  *********************************************************************/
36
37 package org.privoxy.activityconsole;
38
39 /** 
40  * A structification of a statistic element: a key associated with a value.
41  * @author Last Modified By: $Author$
42  * @version $Rev$-$Date$$State$
43  */
44 public class Stat
45 {
46   private static final String
47     COPYRIGHT = org.privoxy.activityconsole.Copyright.COPYRIGHT;
48
49   int _key = -1, _value = 0;
50
51   public Stat(int key, int value)
52   {
53     _key = key;
54     _value = value;
55   }
56
57   public int getKey()
58   {
59     return _key;
60   }
61
62   public int getValue()
63   {
64     return _value;
65   }
66 }