Package javax.sound.midi

Examples of javax.sound.midi.MidiFileFormat.properties()


        Map<String, Object> table = new Hashtable<String, Object>();
        table.put("first", "one");
        table.put("second", "two");
        MidiFileFormat format = new MidiFileFormat(1, 2.0f, 3, 4, 5L, table);
       
        table = format.properties();
        assertEquals("one", table.get("first"));
       
        try {
            table.put("first", "not one");
            fail("UnsupportedOperationException expected");
View Full Code Here

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.