Update of /cvsroot/javanetsim/javaNetSim/guiUI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8697/guiUI
Modified Files:
MainScreen.java TelnetEmulator.java
Log Message:
Index: MainScreen.java
===================================================================
RCS file: /cvsroot/javanetsim/javaNetSim/guiUI/MainScreen.java,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** MainScreen.java 22 Feb 2006 20:04:27 -0000 1.32
--- MainScreen.java 23 Feb 2006 15:13:53 -0000 1.33
***************
*** 1052,1056 ****
public void printLayerInfo(boolean header){
! pnlConsole.append("\n");
Vector vecRecordedInfo = Sim.getRecordedInfo();
--- 1052,1056 ----
public void printLayerInfo(boolean header){
! if(header) pnlConsole.append("\n");
Vector vecRecordedInfo = Sim.getRecordedInfo();
***************
*** 1893,1897 ****
System.out.println("testitng code open");
!
chooser.setDialogTitle("Open File ...");
--- 1893,1897 ----
System.out.println("testitng code open");
! printLayerInfo(false);
chooser.setDialogTitle("Open File ...");
Index: TelnetEmulator.java
===================================================================
RCS file: /cvsroot/javanetsim/javaNetSim/guiUI/TelnetEmulator.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TelnetEmulator.java 23 Feb 2006 14:46:59 -0000 1.2
--- TelnetEmulator.java 23 Feb 2006 15:13:53 -0000 1.3
***************
*** 103,106 ****
--- 103,107 ----
String s = String.valueOf(c).toString();
sendData(s);
+ printInfo();
}
});
|