/** * Immutable.java */ package org.herac.tuxguitar.song.models; /** * Represents an immutable class, that is, one with no mutator methods. * * @author Jeffrey Finkelstein */ public @interface Immutable { // this annotation has no fields }