Package com.pcmsolutions.system

Examples of com.pcmsolutions.system.TipFieldFormatter


        links = numLinks();
        voices = numVoices();
        zones = numZones();
        samples = referencedSampleSet().size();

        TipFieldFormatter ttip = new TipFieldFormatter();

        ttip.add(Integer.toString(voices) + (voices == 1 ? " voice" : " voices"));
        ttip.add(Integer.toString(zones) + (zones == 1 ? " zone" : " zones"));
        ttip.add(Integer.toString(links) + (links == 1 ? " link" : " links"));
        ttip.add(Integer.toString(samples) + (samples == 1 ? " sample" : " samples"));
        ttip.add("NOTES: " + notes);
        return ttip.toString();
    }
View Full Code Here

TOP

Related Classes of com.pcmsolutions.system.TipFieldFormatter

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.