001package jmri.jmrix.loconet; 002 003import jmri.DccThrottle; 004import org.slf4j.Logger; 005import org.slf4j.LoggerFactory; 006 007/** 008 * Specialization of a ThrottleManager for the Intellibox. 009 * 010 * @author Bob Jacobsen Copyright (C) 2014 011 */ 012public class Ib2ThrottleManager extends jmri.jmrix.loconet.LnThrottleManager { 013 014 /** 015 * Constructor. 016 * @param memo system connection. 017 */ 018 public Ib2ThrottleManager(LocoNetSystemConnectionMemo memo) { 019 super(memo); 020 log.debug("Ib2ThrottleManager created"); 021 } 022 023 @Override 024 DccThrottle createThrottle(LocoNetSystemConnectionMemo memo, LocoNetSlot s) { 025 return new Ib2Throttle(memo, s); 026 } 027 028 private final static Logger log = LoggerFactory.getLogger(Ib2ThrottleManager.class); 029 030}