001    /* Copyright 2000, 2001, Compaq Computer Corporation */
002    
003    package escjava.sp;
004    
005    /**
006     * This class essentially provides pointers to mutable integers.
007     */
008    
009    public class RefInt
010    {
011      public int value;
012    
013      RefInt(int value) {
014        this.value = value;
015      }
016    }