Package org.photovault.imginfo

Examples of org.photovault.imginfo.ShootingDateComparator


       
        JMenu sortMenu = new JMenu( "Sort by" );
        sortMenu.setMnemonic( KeyEvent.VK_S );
        sortMenu.setIcon( getIcon( "empty_icon.png" ) );
        JMenuItem byDateItem = new JMenuItem( new SetPhotoOrderAction( viewPane,
                new ShootingDateComparator(), "Date", null,
                "Order photos by date", KeyEvent.VK_D ));
        sortMenu.add( byDateItem );
        JMenuItem byPlaceItem = new JMenuItem( new SetPhotoOrderAction( viewPane,
                new ShootingPlaceComparator(), "Place", null,
                "Order photos by shooting place", KeyEvent.VK_P ));
View Full Code Here

TOP

Related Classes of org.photovault.imginfo.ShootingDateComparator

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.