Package musicwriter.donnees

Examples of musicwriter.donnees.Selection


     * @return la sélection qui est prise par l'esquisse au
     */
    protected Selection traiterSelectionPolygoneStyloEsquisse(StyloEsquisse styloEsquisse)
    {
        if(styloEsquisse == null)
            return new Selection();

        if(styloEsquisse.isPolygon())
        {
            return getPartitionVue()
                    .getSelectionPolygone(styloEsquisse.getPolygon());
           
        }
        else
            return new Selection();
    }
View Full Code Here

TOP

Related Classes of musicwriter.donnees.Selection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.