Java Doc for MethodModifier.java in  » Code-Analyzer » JBlanket » csdl » jblanket » modifier » 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 » Code Analyzer » JBlanket » csdl.jblanket.modifier 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   csdl.jblanket.modifier.MethodModifier

MethodModifier
public class MethodModifier (Code)
Provides a Modifier for methods in .class files. Methods are either instrumented or recorded for exclusion from coverage. Modifying a method here is performed unconditionally. Therefore, without first checking at the ClassModifier level to see if a class as a whole has been previously modified can result in numerous modifications to a method.

Recording a method for exclusion from coverage leaves its byte code unchanged.
author:
   Joy M. Agustin
version:
   $Id: MethodModifier.java,v 1.5 2005/03/08 08:02:01 timshadel Exp $




Constructor Summary
public  MethodModifier(boolean verbose, String testGrammar, boolean excludeOneLineMethods, boolean excludeIndividualMethods, boolean excludeConstructors, MethodGen method)
     Constructs a new MethodModifier object.

Method Summary
public  voidexcludeMethod(MethodSet excludeSet)
     Records this method to exclude from coverage and stores it in excludeSet.
public  booleanhasLineNumbers()
     Checks if a method contains line numbers.
public  booleanisConstructor()
     Checks if method is a constructor.
public  booleanisOneLine()
     Checks if method contains one line of source code.
public  MethodprocessMethod(ConstantPoolGen pool, boolean isModified)
     Processes a method.


Constructor Detail
MethodModifier
public MethodModifier(boolean verbose, String testGrammar, boolean excludeOneLineMethods, boolean excludeIndividualMethods, boolean excludeConstructors, MethodGen method)(Code)
Constructs a new MethodModifier object.
Parameters:
  verbose - describes if JBlanket should execute in verbose mode.
Parameters:
  testGrammar - the grammar describing test class names.
Parameters:
  excludeOneLineMethods - describes exclusion of one-line methods.
Parameters:
  excludeIndividualMethods - describes exclusion of individual methods.
Parameters:
  excludeConstructors - describes exclusion of constructors.
Parameters:
  method - the method to modify.




Method Detail
excludeMethod
public void excludeMethod(MethodSet excludeSet)(Code)
Records this method to exclude from coverage and stores it in excludeSet.
Parameters:
  excludeSet - the container storing methods to exclude from coverage.



hasLineNumbers
public boolean hasLineNumbers()(Code)
Checks if a method contains line numbers. If so, then it is valid. If not, then the method is invalid. Line numbers are added by enabling debugging when compiling. true if method contains line numbers, false otherwise.



isConstructor
public boolean isConstructor()(Code)
Checks if method is a constructor. It does not matter if it's implemented by the programmer or automatically generated by the compiler. If it is a constructor, method is stored. Valid constructor method name is <init>. true if method is a constructor, false otherwise.



isOneLine
public boolean isOneLine()(Code)
Checks if method contains one line of source code. If so, method is stored. true if method contains one line, false otherwise.



processMethod
public Method processMethod(ConstantPoolGen pool, boolean isModified)(Code)
Processes a method. The method represented by this MethodModifier is not modified if it is abstract or native. Furthermore, it is not modified if excludeConstructors or excludeOneLineMethods is set. Otherwise, the this method is modified.
Parameters:
  pool - the ConstantPoolGen for this method.
Parameters:
  isModified - describes if this method was previously modified. modified Method version of this MethodModified object.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.