Source Code Cross Referenced for TestFrequency.java in  » Byte-Code » PROSE » measurements » suites » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Byte Code » PROSE » measurements.suites 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        // $Id: TestFrequency.java,v 1.1.1.1 2003/07/02 15:30:46 apopovic Exp $
02:        // =====================================================================
03:        //
04:        // (history at end)
05:        //
06:
07:        package measurements.suites;
08:
09:        // used packages
10:
11:        /**
12:         * Class TestFrequency
13:         *
14:         * @version	$Revision: 1.1.1.1 $
15:         * @author	Andrei Popovici
16:         */
17:        public class TestFrequency {
18:            // putstatic      482        1x
19:            public static int PUTSTATIC = 60;
20:
21:            // invokestatic   2430       5x
22:            public static int INVOKESTATIC = 5 * PUTSTATIC;
23:
24:            // invokevirtual  8748      18x
25:            public static int INVOKEVIRTUAL = 18 * PUTSTATIC;
26:
27:            // invokespecial  5527      11x
28:            public static int INVOKESPECIAL = 12 * PUTSTATIC;
29:
30:            // invokeinterface 837
31:            public static int INVOKEINTERFACE = 11 * PUTSTATIC;
32:
33:            // getstatic      1286       3x
34:            public static int GET_ARGSSTATIC = 3 * PUTSTATIC;
35:
36:            // putfield       3227       7x
37:            public static int PUTFIELD = 6 * PUTSTATIC;
38:
39:            // getfield       8297      17x
40:            public static int GET_ARGSFIELD = 18 * PUTSTATIC;
41:
42:            // new            6197      13x
43:            public static int NEW = 13 * PUTSTATIC;
44:
45:            // checkcast      899        2x
46:            public static int CHECKCAST = 2 * PUTSTATIC;
47:
48:            // all code       171436 (355 x putstatic)
49:            public static int LOCALLOOP = PUTSTATIC * 10;
50:            public static int LOCALVAR = PUTSTATIC * 10;
51:            public static int LOCALADD = PUTSTATIC * 10;
52:
53:        }
54:
55:        //======================================================================
56:        //
57:        // $Log: TestFrequency.java,v $
58:        // Revision 1.1.1.1  2003/07/02 15:30:46  apopovic
59:        // Imported from ETH Zurich
60:        //
61:        // Revision 1.4  2003/04/17 12:49:18  popovici
62:        // Refactoring of the crosscut package
63:        //  ExceptionCut renamed to ThrowCut
64:        //  McutSignature is now SignaturePattern
65:        //
66:        // Revision 1.3  2003/04/17 08:46:59  popovici
67:        // Important functionality additions
68:        //  - Cflow specializers
69:        //  - Restructuring of the MethodCut, SetCut, ThrowCut, and GetCut (they are much smaller)
70:        //  - Transactional capabilities
71:        //  - Total refactoring of Specializer evaluation, which permits fine-grained distinction
72:        //    between static and dynamic specializers.
73:        //  - Functionality pulled up in abstract classes
74:        //  - Uniformization of advice methods patterns and names
75:        //
76:        // Revision 1.2  2003/03/04 18:36:01  popovici
77:        // Organization of imprts
78:        //
79:        // Revision 1.1  2002/03/12 09:50:16  popovici
80:        // Initial version of the Benchmark measurements
81:        //
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.