//----------------------------------------------------------------------------// // // // H o r i z o n t a l S i d e // // // //----------------------------------------------------------------------------// // <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; /** * Enum {@code HorizontalSide} is meant to ease programmatic use of * left and right sides of staves, lines, etc... * * @author Hervé Bitteur */ public enum HorizontalSide { LEFT, RIGHT; }