*
* @param args
*/
public static void main(String[] args) {
setLookAndFeel();
MainWindow w = new MainWindow(ExecutionMode.STAND_ALONE);
for( String s : args ) {
String sFilename = s.trim();
if( sFilename.length() > 0 ) {
w.getFileOpener().openFile( new File(sFilename) );
}
}
w.setVisible(true);
}