|
From: Dan C. <cor...@us...> - 2010-01-17 17:12:13
|
Update of /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv11523/src/org/jcommander/ui/filepanel Modified Files: FilePanelPlugin.java Log Message: Added support for a new cmd line parameter: -profile nc/wc and a new property definition -Dorg.jcommander.profile nc/wc This was needed for bypassing the first dialog when starting the application with an empty workspace. SWTBot can not handle the dialog until the workbench is fully started. See ID: 2932702 Index: FilePanelPlugin.java =================================================================== RCS file: /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel/FilePanelPlugin.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** FilePanelPlugin.java 6 Aug 2006 10:33:25 -0000 1.21 --- FilePanelPlugin.java 17 Jan 2010 17:12:03 -0000 1.22 *************** *** 18,21 **** --- 18,26 ---- private static FilePanelPlugin plugin; + //Constants used for selecting the look and feel of the application + //TODO Change the project's java compiler to 1.5 and replace these with an enumeration + public static final String PROFILE_NORTON_COMMANDER = "nc"; + public static final String PROFILE_WINDOWS_EXPLORER = "we"; + //Resource bundle. private ResourceBundle resourceBundle; |