001    package org.shiftone.jrat.desktop;
002    
003    import org.shiftone.jrat.desktop.util.Tips;
004    import org.shiftone.jrat.util.log.LoggerFactory;
005    
006    /**
007     * @author jeff@shiftone.org (Jeff Drost)
008     */
009    public class Desktop {
010    
011        public static void main(String[] args) {
012            LoggerFactory.enableThreadBasedLogging();
013            DesktopFrame frame = new DesktopFrame();
014            frame.setVisible(true);
015            Tips.show(frame, false);
016        }
017    }