Package org.jsynthlib.device.model

Examples of org.jsynthlib.device.model.AbstractBankDriver


        driverDef.setDriverType(XmlDriverDef.DriverType.BANK);

        addGenericFields(driver, driverSpec, infoText);

        if (driver instanceof AbstractBankDriver) {
            AbstractBankDriver bankDriver = (AbstractBankDriver) driver;
            driverSpec.setNumPatches(getField("numPatches", int.class,
                    bankDriver, AbstractBankDriver.class));
            driverSpec.setNumColumns(getField("numColumns", int.class,
                    bankDriver, AbstractBankDriver.class));
            driverSpec.setSingleSysexID(getField("singleSysexID", String.class,
View Full Code Here

TOP

Related Classes of org.jsynthlib.device.model.AbstractBankDriver

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.