OSDN Git Service

・MIDIデバイスダイアログに時間リセットボタン追加
[midichordhelper/MIDIChordHelper.git] / src / camidion / chordhelper / mididevice / MidiTransceiverListModelList.java
index 70d713c..1c3fc70 100644 (file)
@@ -118,4 +118,11 @@ public class MidiTransceiverListModelList extends Vector<MidiTransceiverListMode
                        sequencerModel.connectToReceiverOf(firstMidiOutModel);
                }
        }
-}
\ No newline at end of file
+       /**
+        * すべてのデバイスについて、{@link MidiTransceiverListModel#resetMicrosecondPosition()}
+        * でマイクロ秒位置をリセットします。
+        */
+       public void resetMicrosecondPosition() {
+               for(MidiTransceiverListModel m : this) m.resetMicrosecondPosition();
+       }
+}