/** * Sets the name of this MIDI instrument. * * @param name The new name of this MIDI instrument. */ public void setName(String name) { info.setName(name); fireInfoChanged(); }
/** * Gets the name of this MIDI instrument. * * @return The name of this MIDI instrument. */ public String getName() { return info.getName(); }