You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2001/10/12 13:51:41 UTC

cvs commit: xml-axis/java/src/org/apache/axis/utils tcpmon.java

dims        01/10/12 04:51:41

  Modified:    java/src/org/apache/axis/utils tcpmon.java
  Log:
  - Make latest Jikes compiler happy
  
  Revision  Changes    Path
  1.15      +5 -5      xml-axis/java/src/org/apache/axis/utils/tcpmon.java
  
  Index: tcpmon.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/utils/tcpmon.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- tcpmon.java	2001/10/03 15:30:08	1.14
  +++ tcpmon.java	2001/10/12 11:51:41	1.15
  @@ -118,7 +118,7 @@
               JPanel     buttons   = null ;
               JButton    addButton = null ;
   
  -            setLayout( new BorderLayout() );
  +            this.setLayout( new BorderLayout() );
               noteb = notebook ;
   
               GridBagLayout       layout        = new GridBagLayout();
  @@ -162,7 +162,7 @@
               c.gridwidth = 1 ;
               mainPane.add( proxyBox = new JCheckBox( "Act As A Proxy" ), c );
               
  -            add( new JScrollPane( mainPane ), BorderLayout.CENTER );
  +            this.add( new JScrollPane( mainPane ), BorderLayout.CENTER );
   
               // addButton.setEnabled( false );
               addButton.addActionListener( new ActionListener() {
  @@ -605,7 +605,7 @@
               notebook = _notebook ;
               if ( name == null ) name = "Port " + listenPort ;
   
  -            setLayout( new BorderLayout() );
  +            this.setLayout( new BorderLayout() );
   
               // 1st component is just a row of labels and 1-line entry fields
               /////////////////////////////////////////////////////////////////////
  @@ -647,7 +647,7 @@
                   };
                   });
   
  -            add( top, BorderLayout.NORTH );
  +            this.add( top, BorderLayout.NORTH );
   
               // 2nd component is a split pane with a table on the top
               // and the request/response text areas on the bottom
  @@ -816,7 +816,7 @@
               pane1.setTopComponent( tablePane );
               pane1.setBottomComponent( pane2 );
               pane1.setDividerLocation( 150 );
  -            add( pane1, BorderLayout.CENTER );
  +            this.add( pane1, BorderLayout.CENTER );
   
               // 
               /////////////////////////////////////////////////////////////////////