csdl.jblanket.modifier

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 » Code Analyzer » JBlanket » csdl.jblanket.modifier 
csdl.jblanket.modifier
Contains the classes used during method instrumentation.

Java methods are modified such that their type signatures are stored in XML files when they are invoked. Modifiable methods include non-abstract and non-native methods. Constructors or methods containing one line of source code can also be excluded from coverage to measure XC.

Byte code in .class or .jar files can be instrumented. When modifying .class files, packages or individual classes can be either included or excluded. When modifying JAR files, either all packages or specific package may be included by specifying a package prefix.

In addition, all methods to be included in the coverage measurement are counted. These methods are later compared against those methods that are invoked during testing to calculate method coverage.

Java Source File NameTypeComment
ClassModifier.javaClass Provides a Modifer for Java byte code in class files.
MethodCollector.javaClass Collects the type signatures of methods invoked during JUnit testing.

This class is used during the second step in JBlanket -- recording the method invocations per JUnit test class with storeMethodTypeSignature.

MethodCounter.javaClass Provides a counter for all of the methods in the system.
MethodModifier.javaClass Provides a Modifier for methods in .class files.
Modifier.javaClass Provides the command line interface to modify byte code in a Java class or JAR files. This is the first step in using JBlanket.

The following tags are required command line arguments for the main methods:

    'classDir' - the directory containing all .class or .jar files to modify
    For example: -classDir c:\cvs\jblanket\build\classes

    'include' - file(s) to be modified located in classDir
    For example: -include csdl\jblanket\example\foo\Foo.class

    'exclude' - file(s) to remain untouched in classDir
    For example: -exclude csdl\jblanket\example\foo\TestFoo2.class

    'testGrammar' - grammar describing the names of the Test classes
    For example: -testGrammar Test*.class

The following tags are optional command line arguments:

    'verbose' - describes if instrumentation should execute in verbose mode
    For example: -verbose true

    'excludeOneLineMethods' - describes if one-line methods should be excluded
    For example: -excludeOneLineMethods false

    'excludeConstructors' - describes if constructors should be excluded
    For example: -excludeConstructors false

    'totalFile' - name of the XML file for all methods included in the coverage measurement
    For example: -totalFile totalMethods.xml

    'untestableFile' - name of the XML file for all abstract or native methods
    For example: -untestableFile untestableMethods.xml

    'excludedFile' - name of the XML file for all methods specifically excluded from the coverage measurement
    For example: -excludedFile excludedMethods.xml

    'oneLineFile' - name of the XML file for methods containing one line of source code
    For example: -oneLineFile oneLineMethods.xml

    'constructorFile' - name of the XML file for constructors
    For example: -constructorFile constructorMethods.xml

    'packagePrefix' - name of a package prefix to include in the coverage measurement
    For example: -packagePrefix csdl.jblanket.

Classes are modified inside the 'classDir' directory.

TestClassModifier.javaClass Tests the ClassModifier class.
author:
   Joy M.
TestMethodCollector.javaClass Tests the MethodCollector class.
author:
   Joy M.
TestMethodCounter.javaClass
TestMethodModifier.javaClass Tests the MethodModifier class.
author:
   Joy M.
TestModifier.javaClass Tests the Modifier class.
author:
   Joy M.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.