links = numLinks();
voices = numVoices();
zones = numZones();
samples = referencedSampleSet().size();
TipFieldFormatter ttip = new TipFieldFormatter();
ttip.add(Integer.toString(voices) + (voices == 1 ? " voice" : " voices"));
ttip.add(Integer.toString(zones) + (zones == 1 ? " zone" : " zones"));
ttip.add(Integer.toString(links) + (links == 1 ? " link" : " links"));
ttip.add(Integer.toString(samples) + (samples == 1 ? " sample" : " samples"));
ttip.add("NOTES: " + notes);
return ttip.toString();
}