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


java.lang.Object
   com.tc.aspectwerkz.expression.ExpressionContext

ExpressionContext
public class ExpressionContext (Code)
The expression context for AST evaluation.
author:
   Jonas BonŽr
author:
   Alexandre Vasseur


Field Summary
final public static  intCLASS_INFO
    
final public static  intCONSTRUCTOR_INFO
    
final public static  intFIELD_INFO
    
final public static  intINFO_NOT_AVAILABLE
    
final public static  intMETHOD_INFO
    
public  HashMapm_exprIndexToTargetIndex
     Expression to advised target (method / ctor) argument index map.
public  Stringm_targetBoundedName
    
public  booleanm_targetWithRuntimeCheck
     Set to true when we encounter a poincut using target(..) and when match cannot be done without a runtime check with instance of.
public  Stringm_thisBoundedName
    

Constructor Summary
public  ExpressionContext(PointcutType pointcutType, ReflectionInfo reflectionInfo, ReflectionInfo withinReflectionInfo)
     Creates a new expression context.
Parameters:
  pointcutType -
Parameters:
  reflectionInfo - - can be null f.e.

Method Summary
public  booleanequals(Object o)
    
public  booleangetCflowEvaluation()
    
public  intgetCurrentTargetArgsIndex()
    
public  StringgetDebugString()
    
public  PointcutTypegetPointcutType()
    
public  ReflectionInfogetReflectionInfo()
    
public  ReflectionInfogetWithinReflectionInfo()
    
public  booleanhasBeenVisitingCflow()
    
public  booleanhasCallPointcut()
    
public  booleanhasClassInfo()
    
public  booleanhasConstructorInfo()
    
public  booleanhasExecutionPointcut()
    
public  booleanhasFieldInfo()
    
public  booleanhasGetPointcut()
    
public  booleanhasHandlerPointcut()
    
public  booleanhasMethodInfo()
    
public  booleanhasReflectionInfo()
    
public  booleanhasSetPointcut()
    
public  booleanhasStaticInitializationPointcut()
    
public  booleanhasWithinPointcut()
    
public  booleanhasWithinReflectionInfo()
    
public  inthashCode()
    
public  booleaninCflowSubAST()
    
public  voidresetRuntimeState()
    
public  voidsetCflowEvaluation(boolean cflowEvaluation)
    
public  voidsetCurrentTargetArgsIndex(int argsIndex)
    
public  voidsetHasBeenVisitingCflow(boolean hasBeenVisitingCflow)
    
public  voidsetInCflowSubAST(boolean inCflowAST)
    

Field Detail
CLASS_INFO
final public static int CLASS_INFO(Code)



CONSTRUCTOR_INFO
final public static int CONSTRUCTOR_INFO(Code)



FIELD_INFO
final public static int FIELD_INFO(Code)



INFO_NOT_AVAILABLE
final public static int INFO_NOT_AVAILABLE(Code)



METHOD_INFO
final public static int METHOD_INFO(Code)



m_exprIndexToTargetIndex
public HashMap m_exprIndexToTargetIndex(Code)
Expression to advised target (method / ctor) argument index map. It depends on the matching context and the pointcut signature, as well as args(..) Value of this field is cloned, so had to use HashMap type.



m_targetBoundedName
public String m_targetBoundedName(Code)
The variable name corresponding to the target(..) designator, or null if nothing is bound (target() or no target(..))



m_targetWithRuntimeCheck
public boolean m_targetWithRuntimeCheck(Code)
Set to true when we encounter a poincut using target(..) and when match cannot be done without a runtime check with instance of.



m_thisBoundedName
public String m_thisBoundedName(Code)
The variable name corresponding to the this(..) designator, or null if nothing is bound (this() or no this(..))




Constructor Detail
ExpressionContext
public ExpressionContext(PointcutType pointcutType, ReflectionInfo reflectionInfo, ReflectionInfo withinReflectionInfo)(Code)
Creates a new expression context.
Parameters:
  pointcutType -
Parameters:
  reflectionInfo - - can be null f.e. with early evaluation of CALL pointcut
Parameters:
  withinReflectionInfo -




Method Detail
equals
public boolean equals(Object o)(Code)



getCflowEvaluation
public boolean getCflowEvaluation()(Code)



getCurrentTargetArgsIndex
public int getCurrentTargetArgsIndex()(Code)



getDebugString
public String getDebugString()(Code)



getPointcutType
public PointcutType getPointcutType()(Code)



getReflectionInfo
public ReflectionInfo getReflectionInfo()(Code)



getWithinReflectionInfo
public ReflectionInfo getWithinReflectionInfo()(Code)



hasBeenVisitingCflow
public boolean hasBeenVisitingCflow()(Code)



hasCallPointcut
public boolean hasCallPointcut()(Code)



hasClassInfo
public boolean hasClassInfo()(Code)



hasConstructorInfo
public boolean hasConstructorInfo()(Code)



hasExecutionPointcut
public boolean hasExecutionPointcut()(Code)



hasFieldInfo
public boolean hasFieldInfo()(Code)



hasGetPointcut
public boolean hasGetPointcut()(Code)



hasHandlerPointcut
public boolean hasHandlerPointcut()(Code)



hasMethodInfo
public boolean hasMethodInfo()(Code)



hasReflectionInfo
public boolean hasReflectionInfo()(Code)



hasSetPointcut
public boolean hasSetPointcut()(Code)



hasStaticInitializationPointcut
public boolean hasStaticInitializationPointcut()(Code)



hasWithinPointcut
public boolean hasWithinPointcut()(Code)



hasWithinReflectionInfo
public boolean hasWithinReflectionInfo()(Code)



hashCode
public int hashCode()(Code)



inCflowSubAST
public boolean inCflowSubAST()(Code)



resetRuntimeState
public void resetRuntimeState()(Code)



setCflowEvaluation
public void setCflowEvaluation(boolean cflowEvaluation)(Code)



setCurrentTargetArgsIndex
public void setCurrentTargetArgsIndex(int argsIndex)(Code)



setHasBeenVisitingCflow
public void setHasBeenVisitingCflow(boolean hasBeenVisitingCflow)(Code)



setInCflowSubAST
public void setInCflowSubAST(boolean inCflowAST)(Code)



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.