Java Doc for InvokeOperator.java in  » Development » jode » jode » expr » 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 » Development » jode » jode.expr 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   jode.expr.Expression
      jode.expr.Operator
         jode.expr.InvokeOperator

InvokeOperator
final public class InvokeOperator extends Operator implements MatchableOperator(Code)

Inner Class :class Environment extends SimpleRuntimeEnvironment

Field Summary
final public static  intACCESSSPECIAL
    
final public static  intCONSTRUCTOR
    
final public static  intSPECIAL
    
final public static  intSTATIC
    
final public static  intVIRTUAL
    
 TypeclassType
    
 Type[]hints
    
 MethodAnalyzermethodAnalyzer
     The methodAnalyzer of the method, that contains this invocation.
 intmethodFlag
    
 StringmethodName
    
 MethodTypemethodType
    
 Referenceref
    
 intskippedArgs
    

Constructor Summary
public  InvokeOperator(MethodAnalyzer methodAnalyzer, int methodFlag, Reference reference)
    

Method Summary
public  voidcheckAnonymousClasses()
    
public  ConstOperatordeobfuscateString(ConstOperator op)
    
public  voiddumpExpression(TabbedPrintWriter writer)
    
public  voidfillDeclarables(Collection used)
     We add the named method scoped classes to the declarables, and only fillDeclarables on the parameters we will print.
public  intgetBreakPenalty()
    
public  ClassAnalyzergetClassAnalyzer()
     Tries to locate the class analyzer for the callee class.
public  ClassInfogetClassInfo()
    
public  TypegetClassType()
    
public  MethodAnalyzergetMethodAnalyzer()
     Tries to locate the method analyzer for the callee.
public  MethodInfogetMethodInfo()
    
public  StringgetMethodName()
    
public  MethodTypegetMethodType()
    
public  InnerClassInfogetOuterClassInfo(ClassInfo ci)
    
public  intgetPriority()
    
public  booleanisConstant()
    
public  booleanisConstructor()
    
public  booleanisGetClass()
     Checks if the method is the magic class$ method.
public  booleanisOuter()
     Checks, whether this is a call of a method from this class or an outer instance.
final public  booleanisStatic()
    
public  booleanisSuperOrThis()
     Checks, whether this is a call of a method from the super class.
public  booleanisThis()
     Checks, whether this is a call of a method from this class.
public  voidmakeDeclaration(Set done)
     We add the named method scoped classes to the declarables, and only fillDeclarables on the parameters we will print.
public  voidmakeNonVoid()
     Makes a non void expression, in case this is a constructor.
public  booleanmatches(Operator loadop)
     Checks if the value of the operator can be changed by this expression.
public  booleanneedsCast(int param, Type[] paramTypes)
    
public  booleanopEquals(Operator o)
    
public  Expressionsimplify()
    
public  ExpressionsimplifyAccess()
    
public  ExpressionsimplifyString()
    
public  ExpressionsimplifyStringBuffer()
    
public  voidupdateSubTypes()
    
public  voidupdateType()
    

Field Detail
ACCESSSPECIAL
final public static int ACCESSSPECIAL(Code)



CONSTRUCTOR
final public static int CONSTRUCTOR(Code)



SPECIAL
final public static int SPECIAL(Code)



STATIC
final public static int STATIC(Code)



VIRTUAL
final public static int VIRTUAL(Code)



classType
Type classType(Code)



hints
Type[] hints(Code)



methodAnalyzer
MethodAnalyzer methodAnalyzer(Code)
The methodAnalyzer of the method, that contains this invocation. This is not the method that we should call.



methodFlag
int methodFlag(Code)



methodName
String methodName(Code)



methodType
MethodType methodType(Code)



ref
Reference ref(Code)



skippedArgs
int skippedArgs(Code)




Constructor Detail
InvokeOperator
public InvokeOperator(MethodAnalyzer methodAnalyzer, int methodFlag, Reference reference)(Code)




Method Detail
checkAnonymousClasses
public void checkAnonymousClasses()(Code)



deobfuscateString
public ConstOperator deobfuscateString(ConstOperator op)(Code)



dumpExpression
public void dumpExpression(TabbedPrintWriter writer) throws java.io.IOException(Code)



fillDeclarables
public void fillDeclarables(Collection used)(Code)
We add the named method scoped classes to the declarables, and only fillDeclarables on the parameters we will print.



getBreakPenalty
public int getBreakPenalty()(Code)



getClassAnalyzer
public ClassAnalyzer getClassAnalyzer()(Code)
Tries to locate the class analyzer for the callee class. This is mainly useful for inner and anonymous classes. The class analyzer, if the callee class is declaredinside the same base class as the caller class, null otherwise.



getClassInfo
public ClassInfo getClassInfo()(Code)



getClassType
public Type getClassType()(Code)



getMethodAnalyzer
public MethodAnalyzer getMethodAnalyzer()(Code)
Tries to locate the method analyzer for the callee. This is mainly useful for inner and anonymous classes. The method analyzer, if the callee is declaredinside the same base class as the caller class, null otherwise.



getMethodInfo
public MethodInfo getMethodInfo()(Code)



getMethodName
public String getMethodName()(Code)



getMethodType
public MethodType getMethodType()(Code)



getOuterClassInfo
public InnerClassInfo getOuterClassInfo(ClassInfo ci)(Code)



getPriority
public int getPriority()(Code)



isConstant
public boolean isConstant()(Code)



isConstructor
public boolean isConstructor()(Code)



isGetClass
public boolean isGetClass()(Code)
Checks if the method is the magic class$ method. true if this is the magic class$ method, false otherwise.



isOuter
public boolean isOuter()(Code)
Checks, whether this is a call of a method from this class or an outer instance.



isStatic
final public boolean isStatic()(Code)



isSuperOrThis
public boolean isSuperOrThis()(Code)
Checks, whether this is a call of a method from the super class.



isThis
public boolean isThis()(Code)
Checks, whether this is a call of a method from this class.



makeDeclaration
public void makeDeclaration(Set done)(Code)
We add the named method scoped classes to the declarables, and only fillDeclarables on the parameters we will print.



makeNonVoid
public void makeNonVoid()(Code)
Makes a non void expression, in case this is a constructor.



matches
public boolean matches(Operator loadop)(Code)
Checks if the value of the operator can be changed by this expression.



needsCast
public boolean needsCast(int param, Type[] paramTypes)(Code)



opEquals
public boolean opEquals(Operator o)(Code)



simplify
public Expression simplify()(Code)



simplifyAccess
public Expression simplifyAccess()(Code)



simplifyString
public Expression simplifyString()(Code)



simplifyStringBuffer
public Expression simplifyStringBuffer()(Code)



updateSubTypes
public void updateSubTypes()(Code)



updateType
public void updateType()(Code)



Fields inherited from jode.expr.Operator
final public static int ADD_OP(Code)(Java Doc)
final public static int AND_OP(Code)(Java Doc)
final public static int ASSIGN_OP(Code)(Java Doc)
final public static int COMPARE_OP(Code)(Java Doc)
final public static int DEC_OP(Code)(Java Doc)
final public static int EQUALS_OP(Code)(Java Doc)
final public static int GREATEREQ_OP(Code)(Java Doc)
final public static int GREATER_OP(Code)(Java Doc)
final public static int INC_OP(Code)(Java Doc)
final public static int LESSEQ_OP(Code)(Java Doc)
final public static int LESS_OP(Code)(Java Doc)
final public static int LOG_AND_OP(Code)(Java Doc)
final public static int LOG_NOT_OP(Code)(Java Doc)
final public static int LOG_OR_OP(Code)(Java Doc)
final public static int NEG_OP(Code)(Java Doc)
final public static int NOTEQUALS_OP(Code)(Java Doc)
final public static int OPASSIGN_OP(Code)(Java Doc)
final public static int SHIFT_OP(Code)(Java Doc)
final public static int SUB_OP(Code)(Java Doc)
static String opString(Code)(Java Doc)
protected int operatorIndex(Code)(Java Doc)
Expression[] subExpressions(Code)(Java Doc)

Methods inherited from jode.expr.Operator
public Expression addOperand(Expression op)(Code)(Java Doc)
public int canCombine(CombineableOperator combOp)(Code)(Java Doc)
public Expression combine(CombineableOperator comb)(Code)(Java Doc)
public boolean containsConflictingLoad(MatchableOperator op)(Code)(Java Doc)
public boolean containsMatchingLoad(CombineableOperator comb)(Code)(Java Doc)
abstract public void dumpExpression(TabbedPrintWriter writer) throws java.io.IOException(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
public void fillDeclarables(Collection used)(Code)(Java Doc)
public void fillInGenSet(Collection in, Collection gen)(Code)(Java Doc)
public int getFreeOperandCount()(Code)(Java Doc)
public Operator getOperator()(Code)(Java Doc)
public int getOperatorIndex()(Code)(Java Doc)
public String getOperatorString()(Code)(Java Doc)
public Expression[] getSubExpressions()(Code)(Java Doc)
public boolean hasSideEffects(Expression expr)(Code)(Java Doc)
public void initOperands(int opcount)(Code)(Java Doc)
public boolean isConstant()(Code)(Java Doc)
public boolean isFreeOperator()(Code)(Java Doc)
public boolean isFreeOperator(int opcount)(Code)(Java Doc)
public void makeDeclaration(Set done)(Code)(Java Doc)
public boolean opEquals(Operator o)(Code)(Java Doc)
public void setOperatorIndex(int op)(Code)(Java Doc)
public void setSubExpressions(int i, Expression expr)(Code)(Java Doc)
public Expression simplify()(Code)(Java Doc)
public boolean subsEquals(Operator other)(Code)(Java Doc)

Fields inherited from jode.expr.Expression
public static Expression EMPTYSTRING(Code)(Java Doc)
Operator parent(Code)(Java Doc)
protected Type type(Code)(Java Doc)

Methods inherited from jode.expr.Expression
abstract public Expression addOperand(Expression op)(Code)(Java Doc)
public int canCombine(CombineableOperator combOp)(Code)(Java Doc)
public Expression combine(CombineableOperator comb)(Code)(Java Doc)
public boolean containsConflictingLoad(MatchableOperator op)(Code)(Java Doc)
public boolean containsMatchingLoad(CombineableOperator e)(Code)(Java Doc)
abstract public void dumpExpression(TabbedPrintWriter writer) throws java.io.IOException(Code)(Java Doc)
public void dumpExpression(int options, TabbedPrintWriter writer) throws java.io.IOException(Code)(Java Doc)
public void dumpExpression(TabbedPrintWriter writer, int minPriority) throws java.io.IOException(Code)(Java Doc)
public void fillDeclarables(Collection used)(Code)(Java Doc)
public void fillInGenSet(Collection in, Collection gen)(Code)(Java Doc)
public int getBreakPenalty()(Code)(Java Doc)
abstract public int getFreeOperandCount()(Code)(Java Doc)
public Operator getParent()(Code)(Java Doc)
abstract public int getPriority()(Code)(Java Doc)
public Type getType()(Code)(Java Doc)
public boolean hasSideEffects(Expression expr)(Code)(Java Doc)
public boolean isConstant()(Code)(Java Doc)
public boolean isVoid()(Code)(Java Doc)
public void makeDeclaration(Set done)(Code)(Java Doc)
public void makeInitializer(Type type)(Code)(Java Doc)
public Expression negate()(Code)(Java Doc)
public Expression removeOnetimeLocals()(Code)(Java Doc)
public void setType(Type otherType)(Code)(Java Doc)
public Expression simplify()(Code)(Java Doc)
public Expression simplifyString()(Code)(Java Doc)
public Expression simplifyStringBuffer()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void updateParentType(Type otherType)(Code)(Java Doc)
abstract public void updateSubTypes()(Code)(Java Doc)
abstract public void updateType()(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.