Package com.loomcom.symon

Examples of com.loomcom.symon.MemoryRange


     */
    private Set<DeviceChangeListener> deviceChangeListeners;

    public Device(int startAddress, int endAddress, String name)
            throws MemoryRangeException {
        this.memoryRange = new MemoryRange(startAddress, endAddress);
        this.size = endAddress - startAddress + 1;
        this.name = name;
        this.deviceChangeListeners = new HashSet<DeviceChangeListener>();
    }
View Full Code Here

TOP

Related Classes of com.loomcom.symon.MemoryRange

Copyright © 2018 www.massapicom. 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.