Ignore:
Timestamp:
10/08/08 13:59:53 (16 years ago)
Author:
bjn8
Message:

Improved widget linking... track-link coversion command

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src_apollo/org/apollo/util/Mutable.java

    r349 r352  
    1010 */
    1111public class Mutable {
    12        
    1312        private static Mutable instance = new Mutable();
    1413        private Mutable() {}
     
    2120        }
    2221       
     22        public class Long {
     23                public Long(long val) {
     24                        this.value = val;
     25                }
     26                public long value;
     27        }
     28       
    2329        public static Integer createMutableInteger(int val) {
    2430                return instance.new Integer(val);
    2531        }
    26 
     32       
     33        public static Long createMutableLong(long val) {
     34                return instance.new Long(val);
     35        }
    2736}
Note: See TracChangeset for help on using the changeset viewer.