Java Doc for CheckMethodAdapter.java in  » Net » Terracotta » com » tc » asm » util » 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 » Net » Terracotta » com.tc.asm.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.tc.asm.MethodAdapter
      com.tc.asm.util.CheckMethodAdapter

CheckMethodAdapter
public class CheckMethodAdapter extends MethodAdapter (Code)
A MethodAdapter that checks that its methods are properly used. More precisely this code adapter checks each instruction individually (i.e., each visit method checks some preconditions based only on its arguments - such as the fact that the given opcode is correct for a given visit method), but does not check the sequence of instructions. For example, in a method whose signature is void m (), the invalid instruction IRETURN, or the invalid sequence IADD L2I will not be detected by this code adapter.
author:
   Eric Bruneton



Constructor Summary
public  CheckMethodAdapter(MethodVisitor cv)
     Constructs a new CheckMethodAdapter object.

Method Summary
static  voidcheckClassSignature(String signature)
     Checks a class signature.
static  voidcheckConstant(Object cst)
     Checks that the given value is an Integer , a Float , a Long , a Double or a String .
static  voidcheckDesc(String desc, boolean canBeVoid)
     Checks that the given string is a valid type descriptor.
static  intcheckDesc(String desc, int start, boolean canBeVoid)
     Checks that a the given substring is a valid type descriptor.
Parameters:
  desc - the string to be checked.
Parameters:
  start - index of the first character of the identifier (inclusive).
Parameters:
  canBeVoid - true if V can be considered valid.
 voidcheckEndCode()
     Checks that the visitMaxs method has not been called.
 voidcheckEndMethod()
     Checks that the visitEnd method has not been called.
static  voidcheckFieldSignature(String signature)
     Checks a field signature.
static  voidcheckFrameValue(Object value)
     Checks a stack frame value.
static  voidcheckIdentifier(String name, String msg)
     Checks that the given string is a valid Java identifier.
static  voidcheckIdentifier(String name, int start, int end, String msg)
     Checks that the given substring is a valid Java identifier.
Parameters:
  name - the string to be checked.
Parameters:
  start - index of the first character of the identifier (inclusive).
Parameters:
  end - index of the last character of the identifier (exclusive).
static  voidcheckInternalName(String name, String msg)
     Checks that the given string is a valid internal class name.
static  voidcheckInternalName(String name, int start, int end, String msg)
     Checks that the given substring is a valid internal class name.
Parameters:
  name - the string to be checked.
Parameters:
  start - index of the first character of the identifier (inclusive).
Parameters:
  end - index of the last character of the identifier (exclusive).
 voidcheckLabel(Label label, boolean checkVisited, String msg)
     Checks that the given label is not null.
static  voidcheckMethodDesc(String desc)
     Checks that the given string is a valid method descriptor.
static  voidcheckMethodIdentifier(String name, String msg)
     Checks that the given string is a valid Java identifier or is equal to '<init>' or '<clinit>'.
static  voidcheckMethodSignature(String signature)
     Checks a method signature.
static  voidcheckOpcode(int opcode, int type)
     Checks that the type of the given opcode is equal to the given type.
static  voidcheckSignedByte(int value, String msg)
     Checks that the given value is a signed byte.
static  voidcheckSignedShort(int value, String msg)
     Checks that the given value is a signed short.
 voidcheckStartCode()
     Checks that the visitCode method has been called.
static  voidcheckUnsignedShort(int value, String msg)
     Checks that the given value is an unsigned short.
public  AnnotationVisitorvisitAnnotation(String desc, boolean visible)
    
public  AnnotationVisitorvisitAnnotationDefault()
    
public  voidvisitAttribute(Attribute attr)
    
public  voidvisitCode()
    
public  voidvisitEnd()
    
public  voidvisitFieldInsn(int opcode, String owner, String name, String desc)
    
public  voidvisitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack)
    
public  voidvisitIincInsn(int var, int increment)
    
public  voidvisitInsn(int opcode)
    
public  voidvisitIntInsn(int opcode, int operand)
    
public  voidvisitJumpInsn(int opcode, Label label)
    
public  voidvisitLabel(Label label)
    
public  voidvisitLdcInsn(Object cst)
    
public  voidvisitLineNumber(int line, Label start)
    
public  voidvisitLocalVariable(String name, String desc, String signature, Label start, Label end, int index)
    
public  voidvisitLookupSwitchInsn(Label dflt, int keys, Label labels)
    
public  voidvisitMaxs(int maxStack, int maxLocals)
    
public  voidvisitMethodInsn(int opcode, String owner, String name, String desc)
    
public  voidvisitMultiANewArrayInsn(String desc, int dims)
    
public  AnnotationVisitorvisitParameterAnnotation(int parameter, String desc, boolean visible)
    
public  voidvisitTableSwitchInsn(int min, int max, Label dflt, Label labels)
    
public  voidvisitTryCatchBlock(Label start, Label end, Label handler, String type)
    
public  voidvisitTypeInsn(int opcode, String type)
    
public  voidvisitVarInsn(int opcode, int var)
    


Constructor Detail
CheckMethodAdapter
public CheckMethodAdapter(MethodVisitor cv)(Code)
Constructs a new CheckMethodAdapter object.
Parameters:
  cv - the code visitor to which this adapter must delegate calls.




Method Detail
checkClassSignature
static void checkClassSignature(String signature)(Code)
Checks a class signature.
Parameters:
  signature - a string containing the signature that must be checked.



checkConstant
static void checkConstant(Object cst)(Code)
Checks that the given value is an Integer , a Float , a Long , a Double or a String .
Parameters:
  cst - the value to be checked.



checkDesc
static void checkDesc(String desc, boolean canBeVoid)(Code)
Checks that the given string is a valid type descriptor.
Parameters:
  desc - the string to be checked.
Parameters:
  canBeVoid - true if V can be considered valid.



checkDesc
static int checkDesc(String desc, int start, boolean canBeVoid)(Code)
Checks that a the given substring is a valid type descriptor.
Parameters:
  desc - the string to be checked.
Parameters:
  start - index of the first character of the identifier (inclusive).
Parameters:
  canBeVoid - true if V can be considered valid. the index of the last character of the type decriptor, plus one.



checkEndCode
void checkEndCode()(Code)
Checks that the visitMaxs method has not been called.



checkEndMethod
void checkEndMethod()(Code)
Checks that the visitEnd method has not been called.



checkFieldSignature
static void checkFieldSignature(String signature)(Code)
Checks a field signature.
Parameters:
  signature - a string containing the signature that must be checked.



checkFrameValue
static void checkFrameValue(Object value)(Code)
Checks a stack frame value.
Parameters:
  value - the value to be checked.



checkIdentifier
static void checkIdentifier(String name, String msg)(Code)
Checks that the given string is a valid Java identifier.
Parameters:
  name - the string to be checked.
Parameters:
  msg - a message to be used in case of error.



checkIdentifier
static void checkIdentifier(String name, int start, int end, String msg)(Code)
Checks that the given substring is a valid Java identifier.
Parameters:
  name - the string to be checked.
Parameters:
  start - index of the first character of the identifier (inclusive).
Parameters:
  end - index of the last character of the identifier (exclusive). -1is equivalent to name.length() if name is notnull.
Parameters:
  msg - a message to be used in case of error.



checkInternalName
static void checkInternalName(String name, String msg)(Code)
Checks that the given string is a valid internal class name.
Parameters:
  name - the string to be checked.
Parameters:
  msg - a message to be used in case of error.



checkInternalName
static void checkInternalName(String name, int start, int end, String msg)(Code)
Checks that the given substring is a valid internal class name.
Parameters:
  name - the string to be checked.
Parameters:
  start - index of the first character of the identifier (inclusive).
Parameters:
  end - index of the last character of the identifier (exclusive). -1is equivalent to name.length() if name is notnull.
Parameters:
  msg - a message to be used in case of error.



checkLabel
void checkLabel(Label label, boolean checkVisited, String msg)(Code)
Checks that the given label is not null. This method can also check that the label has been visited.
Parameters:
  label - the label to be checked.
Parameters:
  checkVisited - true to check that the label has beenvisited.
Parameters:
  msg - a message to be used in case of error.



checkMethodDesc
static void checkMethodDesc(String desc)(Code)
Checks that the given string is a valid method descriptor.
Parameters:
  desc - the string to be checked.



checkMethodIdentifier
static void checkMethodIdentifier(String name, String msg)(Code)
Checks that the given string is a valid Java identifier or is equal to '<init>' or '<clinit>'.
Parameters:
  name - the string to be checked.
Parameters:
  msg - a message to be used in case of error.



checkMethodSignature
static void checkMethodSignature(String signature)(Code)
Checks a method signature.
Parameters:
  signature - a string containing the signature that must be checked.



checkOpcode
static void checkOpcode(int opcode, int type)(Code)
Checks that the type of the given opcode is equal to the given type.
Parameters:
  opcode - the opcode to be checked.
Parameters:
  type - the expected opcode type.



checkSignedByte
static void checkSignedByte(int value, String msg)(Code)
Checks that the given value is a signed byte.
Parameters:
  value - the value to be checked.
Parameters:
  msg - an message to be used in case of error.



checkSignedShort
static void checkSignedShort(int value, String msg)(Code)
Checks that the given value is a signed short.
Parameters:
  value - the value to be checked.
Parameters:
  msg - an message to be used in case of error.



checkStartCode
void checkStartCode()(Code)
Checks that the visitCode method has been called.



checkUnsignedShort
static void checkUnsignedShort(int value, String msg)(Code)
Checks that the given value is an unsigned short.
Parameters:
  value - the value to be checked.
Parameters:
  msg - an message to be used in case of error.



visitAnnotation
public AnnotationVisitor visitAnnotation(String desc, boolean visible)(Code)



visitAnnotationDefault
public AnnotationVisitor visitAnnotationDefault()(Code)



visitAttribute
public void visitAttribute(Attribute attr)(Code)



visitCode
public void visitCode()(Code)



visitEnd
public void visitEnd()(Code)



visitFieldInsn
public void visitFieldInsn(int opcode, String owner, String name, String desc)(Code)



visitFrame
public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack)(Code)



visitIincInsn
public void visitIincInsn(int var, int increment)(Code)



visitInsn
public void visitInsn(int opcode)(Code)



visitIntInsn
public void visitIntInsn(int opcode, int operand)(Code)



visitJumpInsn
public void visitJumpInsn(int opcode, Label label)(Code)



visitLabel
public void visitLabel(Label label)(Code)



visitLdcInsn
public void visitLdcInsn(Object cst)(Code)



visitLineNumber
public void visitLineNumber(int line, Label start)(Code)



visitLocalVariable
public void visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index)(Code)



visitLookupSwitchInsn
public void visitLookupSwitchInsn(Label dflt, int keys, Label labels)(Code)



visitMaxs
public void visitMaxs(int maxStack, int maxLocals)(Code)



visitMethodInsn
public void visitMethodInsn(int opcode, String owner, String name, String desc)(Code)



visitMultiANewArrayInsn
public void visitMultiANewArrayInsn(String desc, int dims)(Code)



visitParameterAnnotation
public AnnotationVisitor visitParameterAnnotation(int parameter, String desc, boolean visible)(Code)



visitTableSwitchInsn
public void visitTableSwitchInsn(int min, int max, Label dflt, Label labels)(Code)



visitTryCatchBlock
public void visitTryCatchBlock(Label start, Label end, Label handler, String type)(Code)



visitTypeInsn
public void visitTypeInsn(int opcode, String type)(Code)



visitVarInsn
public void visitVarInsn(int opcode, int var)(Code)



Fields inherited from com.tc.asm.MethodAdapter
protected MethodVisitor mv(Code)(Java Doc)

Methods inherited from com.tc.asm.MethodAdapter
public AnnotationVisitor visitAnnotation(String desc, boolean visible)(Code)(Java Doc)
public AnnotationVisitor visitAnnotationDefault()(Code)(Java Doc)
public void visitAttribute(Attribute attr)(Code)(Java Doc)
public void visitCode()(Code)(Java Doc)
public void visitEnd()(Code)(Java Doc)
public void visitFieldInsn(int opcode, String owner, String name, String desc)(Code)(Java Doc)
public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack)(Code)(Java Doc)
public void visitIincInsn(int var, int increment)(Code)(Java Doc)
public void visitInsn(int opcode)(Code)(Java Doc)
public void visitIntInsn(int opcode, int operand)(Code)(Java Doc)
public void visitJumpInsn(int opcode, Label label)(Code)(Java Doc)
public void visitLabel(Label label)(Code)(Java Doc)
public void visitLdcInsn(Object cst)(Code)(Java Doc)
public void visitLineNumber(int line, Label start)(Code)(Java Doc)
public void visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index)(Code)(Java Doc)
public void visitLookupSwitchInsn(Label dflt, int keys, Label labels)(Code)(Java Doc)
public void visitMaxs(int maxStack, int maxLocals)(Code)(Java Doc)
public void visitMethodInsn(int opcode, String owner, String name, String desc)(Code)(Java Doc)
public void visitMultiANewArrayInsn(String desc, int dims)(Code)(Java Doc)
public AnnotationVisitor visitParameterAnnotation(int parameter, String desc, boolean visible)(Code)(Java Doc)
public void visitTableSwitchInsn(int min, int max, Label dflt, Label labels)(Code)(Java Doc)
public void visitTryCatchBlock(Label start, Label end, Label handler, String type)(Code)(Java Doc)
public void visitTypeInsn(int opcode, String desc)(Code)(Java Doc)
public void visitVarInsn(int opcode, int var)(Code)(Java Doc)

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.