예제 #1
0
파일: Tags.cs 프로젝트: svejdo1/niffty
        /** Returns a copy of this Tags, with midiPerformance
         *  changed to the given value, which may be null if the tag
         *  is not present.
         */
        public Tags cloneWithMidiPerformance(MidiPerformance midiPerformance)
        {
            Tags tags = (Tags)clone();

            tags._midiPerformance = midiPerformance;
            return(tags);
        }
예제 #2
0
파일: Tags.cs 프로젝트: svejdo1/niffty
 /** Returns a copy of this Tags, with midiPerformance
  *  changed to the given value, which may be null if the tag
  *  is not present.
  */
 public Tags cloneWithMidiPerformance(MidiPerformance midiPerformance)
 {
     Tags tags = (Tags)clone();
       tags._midiPerformance = midiPerformance;
       return tags;
 }