| 
What this is
 Other links
 The source code
/*
 * OpenJavaFile.java
 *
 * Created on 16. srpen 2004, 13:51
 */
package gui.action;
import gui.action.OpenFiles;
/**
 *
 * @author  lm97939
 */
public class OpenJavaFile extends OpenFiles {
    
   public OpenJavaFile(String testName) {
        super(testName);
   }
   
   public OpenJavaFile(String testName, String performanceDataName) {
        super(testName, performanceDataName);
    }
    
   public void testOpeningServletFile(){
        WAIT_AFTER_OPEN = 6000;
        MEASURE_PAINT_NUMBER = 1;
        setPaintFilteringForEditor();
        setJavaEditorCaretFilteringOn();
        fileProject = "PerformanceTestData";
        filePackage = "org.netbeans.test.performance";
        fileName = "TestServlet.java";
        menuItem = OPEN;
        doMeasurement();
    }
    
}
 | 
| ... this post is sponsored by my books ... | |
         
           #1 New Release!  | 
      
         
           FP Best Seller  | 
  
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse 
URI on this website is
paid back to open source projects.