1 26 27 package org.objectweb.openccm.packaging; 28 29 import org.objectweb.apollon.gui.ApollonFrame; 30 31 37 public class ToolsGUI 38 { 39 40 46 51 public static void 52 main(String [] args) 53 { 54 ApollonFrame frame 56 = new ApollonFrame(); 57 58 frame.set_split_panel(new CCMSplitPane()); 60 61 CCMMenuBar ccm_menubar 63 = new CCMMenuBar(frame); 64 65 if (args.length !=0) 67 { 68 for (int i=0 ; i<args.length ; i++) 69 { 70 java.io.File file 71 = new java.io.File (args[i]); 72 73 FileOperations.open_file(file, frame); 74 } 75 } 76 frame.setVisible(true); 77 } 78 } 79 | Popular Tags |