You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by le...@apache.org on 2002/03/05 05:13:46 UTC

cvs commit: jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui ProfilerFrame.java

leif        02/03/04 20:13:46

  Modified:    src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui
                        ProfilerFrame.java
  Log:
  Convert tabs to spaces. no other changes.
  
  Revision  Changes    Path
  1.2       +21 -21    jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui/ProfilerFrame.java
  
  Index: ProfilerFrame.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/src/scratchpad/org/apache/avalon/excalibur/altprofile/profiler/gui/ProfilerFrame.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ProfilerFrame.java	3 Mar 2002 15:59:44 -0000	1.1
  +++ ProfilerFrame.java	5 Mar 2002 04:13:46 -0000	1.2
  @@ -23,7 +23,7 @@
   /**
    *
    * @author <a href="mailto:leif@silveregg.co.jp">Leif Mortenson</a>
  - * @version CVS $Revision: 1.1 $ $Date: 2002/03/03 15:59:44 $
  + * @version CVS $Revision: 1.2 $ $Date: 2002/03/05 04:13:46 $
    * @since 4.1
    */
   public class ProfilerFrame
  @@ -35,15 +35,15 @@
       private MenuBar m_menuBar;
       
       /*---------------------------------------------------------------
  -	 * Constructors
  -	 *-------------------------------------------------------------*/
  +     * Constructors
  +     *-------------------------------------------------------------*/
       /**
  -	 * Creates a new ProfilerFrame.
  -	 *
  -	 * @param profilerManager The ProfilerManager which the ProfilerFrame's
  -	 *                        data is obtained from.
  -	 * @param title The title for the frame.
  -	 */
  +     * Creates a new ProfilerFrame.
  +     *
  +     * @param profilerManager The ProfilerManager which the ProfilerFrame's
  +     *                        data is obtained from.
  +     * @param title The title for the frame.
  +     */
       public ProfilerFrame( ProfilerManager profilerManager, String title )
       {
           super( title );
  @@ -54,8 +54,8 @@
       }
       
       /*---------------------------------------------------------------
  -	 * Methods
  -	 *-------------------------------------------------------------*/
  +     * Methods
  +     *-------------------------------------------------------------*/
       private void init()
       {
           getContentPane().setLayout(new BorderLayout());
  @@ -81,21 +81,21 @@
           return m_desktopPane;
       }
       
  -	void openProfileSampleFrame( final ProfilableDescriptor profilableDescriptor,
  -								 final ProfilePointDescriptor profilePointDescriptor,
  -								 final ProfileSampleDescriptor profileSampleDescriptor )
  +    void openProfileSampleFrame( final ProfilableDescriptor profilableDescriptor,
  +                                 final ProfilePointDescriptor profilePointDescriptor,
  +                                 final ProfileSampleDescriptor profileSampleDescriptor )
       {
           SwingUtilities.invokeLater(new Runnable() {
               public void run() {
                   String title = profilableDescriptor.getDescription() + " : " +
  -					profilePointDescriptor.getDescription() + " : " +
  -					profileSampleDescriptor.getDescription();
  +                    profilePointDescriptor.getDescription() + " : " +
  +                    profileSampleDescriptor.getDescription();
                   
  -				ProfileSampleFrame frame = new ProfileSampleFrame( title, profileSampleDescriptor,
  -					m_profilerManager, ProfilerFrame.this );
  -				
  -				frame.addToDesktop( m_desktopPane );
  -				frame.show();
  +                ProfileSampleFrame frame = new ProfileSampleFrame( title, profileSampleDescriptor,
  +                    m_profilerManager, ProfilerFrame.this );
  +                
  +                frame.addToDesktop( m_desktopPane );
  +                frame.show();
               }
           });
       }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>