public void setComment(String comment) {
   if (pointer == 0) throw new NullPointerException();
   StructureJNI.BASS_MIDI_FONTINFO_set_comment(
       pointer, comment == null ? null : comment.getBytes());
 }