[Javanetsim-cvs] javaNetSim/guiUI GuiRouter.java, 1.6, 1.7 MainScreen.java, 1.98, 1.99 RIPPropertie
Status: Beta
Brought to you by:
darkkey
From: QweR <qw...@us...> - 2008-10-23 17:09:00
|
Update of /cvsroot/javanetsim/javaNetSim/guiUI In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29132/guiUI Modified Files: GuiRouter.java MainScreen.java Removed Files: RIPProperties.java Log Message: RIP gui was deleted Index: MainScreen.java =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/guiUI/MainScreen.java,v retrieving revision 1.98 retrieving revision 1.99 diff -C2 -d -r1.98 -r1.99 *** MainScreen.java 22 Oct 2008 08:54:15 -0000 1.98 --- MainScreen.java 23 Oct 2008 17:08:27 -0000 1.99 *************** *** 718,726 **** } - public void showRIPDialog(String inNodeName) { - new RIPProperties(this, Sim, Sandbox, inNodeName); - - } - public String getDeviceTypeDialog(String title, String msg, String[] choices) { String optbtn = (String) UIManager.get("OptionPane.cancelButtonText"); --- 718,721 ---- --- RIPProperties.java DELETED --- Index: GuiRouter.java =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/guiUI/GuiRouter.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GuiRouter.java 6 Oct 2008 13:20:39 -0000 1.6 --- GuiRouter.java 23 Oct 2008 17:08:27 -0000 1.7 *************** *** 96,111 **** private JMenuItem mnuTelnetNoListen = new JMenuItem("Stop telnet server."); - private JMenuItem mnuRIPcfg = new JMenuItem("Configure RIP..."); - public GuiRouter(String inName, MainScreen inMainScreen) { super(inName, inMainScreen, "images/simulation/router.png"); // router_large.gif - mnuRIPcfg.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - controller.showRIPDialog(lblNodeName.getText()); - } - }); - mnuTelnetListen.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { --- 96,103 ---- *************** *** 122,127 **** mnuAppLayer.add(mnuTelnetListen); mnuAppLayer.add(mnuTelnetNoListen); - mnuAppLayer.addSeparator(); - mnuAppLayer.add(mnuRIPcfg); } --- 114,117 ---- |