//----------------------------------------------------------------------------// // // // W r a p p e r // // // //----------------------------------------------------------------------------// // <editor-fold defaultstate="collapsed" desc="hdr"> // // Copyright © Hervé Bitteur and others 2000-2013. All rights reserved. // // This software is released under the GNU General Public License. // // Goto http://kenai.com/projects/audiveris to report bugs or suggestions. // //----------------------------------------------------------------------------// // </editor-fold> package omr.util; /** * Class {@code Wrapper} is used to wrap a mutable output value * * @param <T> The specific type for carried value * * @author Hervé Bitteur */ public class Wrapper<T> { //~ Instance fields -------------------------------------------------------- /** The wrapped value */ public T value; //~ Methods ---------------------------------------------------------------- //----------// // toString // //----------// @Override public String toString () { return "wrapper(" + value + ")"; } }