001    /*
002      Renaud Pawlak, pawlak@cnam.fr, CEDRIC Laboratory, Paris, France.
003      Lionel Seinturier, Lionel.Seinturier@lip6.fr, LIP6, Paris, France.
004    
005      JAC-Core is free software. You can redistribute it and/or modify it
006      under the terms of the GNU Library General Public License as
007      published by the Free Software Foundation.
008      
009      JAC-Core is distributed in the hope that it will be useful, but
010      WITHOUT ANY WARRANTY; without even the implied warranty of
011      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
012    
013      This work uses the Javassist system - Copyright (c) 1999-2000
014      Shigeru Chiba, University of Tsukuba, Japan.  All Rights Reserved.  */
015    
016    package org.objectweb.jac.core.dist.utils;
017    
018    /**
019     * IntHolder is used as a container for integers.
020     *
021     * @see org.objectweb.jac.core.dist.RemoteContainer
022     *
023     * @author <a href="http://cedric.cnam.fr/~pawlak/index-english.html">Renaud Pawlak</a>
024     * @author <a href="http://www-src.lip6.fr/homepages/Lionel.Seinturier/index-eng.html">Lionel Seinturier</a>
025     */
026     
027    public class IntHolder {
028    
029       public int value = 0;
030    }