1 /* 2 Renaud Pawlak, pawlak@cnam.fr, CEDRIC Laboratory, Paris, France. 3 Lionel Seinturier, Lionel.Seinturier@lip6.fr, LIP6, Paris, France. 4 5 JAC-Core is free software. You can redistribute it and/or modify it 6 under the terms of the GNU Library General Public License as 7 published by the Free Software Foundation. 8 9 JAC-Core is distributed in the hope that it will be useful, but 10 WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 12 13 This work uses the Javassist system - Copyright (c) 1999-2000 14 Shigeru Chiba, University of Tsukuba, Japan. All Rights Reserved. */ 15 16 package org.objectweb.jac.core.dist.utils; 17 18 /** 19 * IntHolder is used as a container for integers. 20 * 21 * @see org.objectweb.jac.core.dist.RemoteContainer 22 * 23 * @author <a HREF="http://cedric.cnam.fr/~pawlak/index-english.html">Renaud Pawlak</a> 24 * @author <a HREF="http://www-src.lip6.fr/homepages/Lionel.Seinturier/index-eng.html">Lionel Seinturier</a> 25 */ 26 27 public class IntHolder { 28 29 public int value = 0; 30 } 31