ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/uk/org/iscream/cms/conient/HostDisplayPanel.java
(Generate patch)

Comparing projects/cms/source/conient/uk/org/iscream/cms/conient/HostDisplayPanel.java (file contents):
Revision 1.31 by ajm, Sun Mar 18 16:16:16 2001 UTC vs.
Revision 1.32 by ajm, Sun Mar 18 16:51:04 2001 UTC

# Line 66 | Line 66 | public class HostDisplayPanel extends JPanel {
66          c.weighty = 1.0;
67          _center.setLayout(gridbag);
68          
69 <        add(_center, "Center");
69 >        JPanel centerHolder = new JPanel();
70 >        centerHolder.add(_center);
71 >        add(centerHolder, "Center");
72          add(_north, "North");
73  
74          addDataComponent(new StringDataComponent("Packet Type", "packet.attributes.type"));
# Line 88 | Line 90 | public class HostDisplayPanel extends JPanel {
90          addDataComponent(osRelease);
91          final StringDataComponent osSysName = new StringDataComponent("System Name", "packet.os.sysname");
92          addDataComponent(osSysName );
93 +        final StringDataComponent netbiosName = new StringDataComponent("NetBIOS Name", "packet.os.netbios_name");
94 +        addDataComponent(netbiosName );
95          final StringDataComponent osPlatform = new StringDataComponent("System Architecture", "packet.os.platform");
96          addDataComponent(osPlatform );
97                  
# Line 104 | Line 108 | public class HostDisplayPanel extends JPanel {
108                  content.add(osVer);
109                  content.add(osRelease);
110                  content.add(osSysName);
111 +                content.add(netbiosName);
112                  content.add(osPlatform);
113                  infoFrame.getContentPane().add(content, "Center");
114                  JButton close = new JButton("Close Window");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines