Package org.jpos.util

Source Code of org.jpos.util.ISOBitMapDeepCopier

package org.jpos.util;

import java.util.BitSet;

import org.jpos.iso.ISOBitMap;

/**
* $Revision: 23416 $
* $Date: 2007-03-14 00:14:09 +0000 (Wed, 14 Mar 2007) $
* $Author: nsmith $
*/
class ISOBitMapDeepCopier {

    public ISOBitMap doDeepCopy(ISOBitMap map) {
        return new ISOBitMap(((Integer) map.getKey()).intValue(), (BitSet) ((BitSet) map.getValue()).clone());
    }

}
TOP

Related Classes of org.jpos.util.ISOBitMapDeepCopier

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.