Horus Doc || Java GUI Reference || Doxygen's quick Index  

StubInfoPanel Class Reference

List of all members.

Public Methods

 StubInfoPanel (StubInfo info)

Constructor & Destructor Documentation

StubInfoPanel::StubInfoPanel StubInfo    info [inline]
 

00024 {
00025     super();
00026 
00027     createContents();
00028 
00029     PropertyPanel pane = new PropertyPanel(3);
00030     for(int i=0; i<info.items.length; i++) {
00031         JTextField tf = new JTextField(info.items[i].value);
00032         //tf.setColumns(20);
00033         tf.setEditable(false);
00034         tf.addFocusListener(new SelectIORListener(info.items[i].pos,
00035                 info.items[i].length));
00036         pane.addPair(info.items[i].name, tf);
00037     }
00038     _ior.setText(info.ior);
00039     _ior.setCaretPosition(0);
00040 
00041     _iorInfo.add(pane, BorderLayout.CENTER);
00042 }


The documentation for this class was generated from the following file:
Generated on Mon Jan 27 15:11:27 2003 for JavaReference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001