1 /* 2 * Copyright (C) The MX4J Contributors. 3 * All rights reserved. 4 * 5 * This software is distributed under the terms of the MX4J License version 1.0. 6 * See the terms of the MX4J License in the documentation provided with this software. 7 */ 8 9 package test; 10 11 /** 12 * @version $Revision: 1.3 $ 13 * @see 14 */ 15 public class MutableLong 16 { 17 private long m_value; 18 19 public MutableLong(long value) 20 { 21 m_value = value; 22 } 23 24 public long get() 25 { 26 return m_value; 27 } 28 29 public void set(long value) 30 { 31 m_value = value; 32 } 33 } 34