Source Code Cross Referenced for JoinPointKinds.java in  » Byte-Code » PROSE » ch » ethz » jvmai » 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 » Byte Code » PROSE » ch.ethz.jvmai 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // 
002:        //  This file is part of the prose package.
003:        // 
004:        //  The contents of this file are subject to the Mozilla Public License
005:        //  Version 1.1 (the "License"); you may not use this file except in
006:        //  compliance with the License. You may obtain a copy of the License at
007:        //  http://www.mozilla.org/MPL/
008:        // 
009:        //  Software distributed under the License is distributed on an "AS IS" basis,
010:        //  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
011:        //  for the specific language governing rights and limitations under the
012:        //  License.
013:        // 
014:        //  The Original Code is prose.
015:        // 
016:        //  The Initial Developer of the Original Code is Andrei Popovici. 
017:        //  The code has been extended by Angela Nicoara. 
018:        //  All Rights Reserved.
019:        // 
020:        //  Contributor(s):
021:        // $Id: JoinPointKinds.java,v 1.2 2004/05/12 09:41:54 anicoara Exp $
022:        // =====================================================================
023:        //
024:        // (history at end)
025:        //
026:
027:        package ch.ethz.jvmai;
028:
029:        /**
030:         * Class JoinPointKinds contains the masks and kinds for join-points.
031:         * The mapping should be as follows:
032:         * <table>
033:         *
034:         * <tr><td>KIND_CODE_JP</td><td>MASK_CODE_JP</td></tr>
035:         * <tr><td>KIND_METHOD_ENTRY_JP</td><td>MASK_CODE_JP | MASK_METHOD_ENTRY_JP</td></tr>
036:         * <tr><td>MASK_METHOD_EXIT_JP</td><td>MASK_CODE_JP | MASK_METHOD_EXIT_JP </td></tr>
037:         * <tr><td>KIND_FIELD_ACCESS_JP</td><td>MASK_CODE_JP | MASK_FIELD_JP | MASK_FIELD_ACCESS_JP </td></tr>
038:         * <tr><td>KIND_FIELD_MODIFICATION_JP</td><td>MASK_CODE_JP |MASK_FIELD_JP | MASK_FIELD_MODIFICATION_JP</td></tr>
039:         * <tr><td>KIND_EXCEPTION_THROW_ARGS_JP</td><td>MASK_CODE_JP | MASK_EXCEPTION_THROW_ARGS_JP</td></tr>
040:         * <tr><td>KIND_EXCEPTION_CATCH_ARGS_JP</td><td>MASK_CODE_JP | MASK_EXCEPTION_CATCH_ARGS_JP</td></tr>  
041:         *
042:         * </table>
043:         *
044:         * @version	$Revision: 1.2 $
045:         * @author	Andrei Popovici
046:         * @author	Angela Nicoara
047:         * @author	Gerald Linhofer 
048:         */
049:        public interface JoinPointKinds {
050:            public static int MASK_UNKNOWN_JP = 0x00;
051:            public static int MASK_CODE_JP = 0x01;
052:            public static int MASK_METHOD_ENTRY_JP = 0x02;
053:            public static int MASK_METHOD_EXIT_JP = 0x04;
054:            public static int MASK_FIELD_JP = 0x08;
055:            public static int MASK_FIELD_ACCESS_JP = 0x10;
056:            public static int MASK_FIELD_MODIFICATION_JP = 0x20;
057:            public static int MASK_EXCEPTION_THROW_ARGS_JP = 0x40;
058:            public static int MASK_EXCEPTION_CATCH_ARGS_JP = 0x80;
059:            public static int MASK_METHOD_REDEFINE_JP = 0x100;
060:            public static int MASK_CONSTRUCTOR_JP = 0x200;
061:            public static int MASK_ALL_JP = 0xFFF;
062:
063:            public static String KIND_UNKNOWN_JP = "UnknownJoinPointKind";
064:            public static String KIND_CODE_JP = "CodeJoinPoint";
065:            public static String KIND_METHOD_ENTRY_JP = "MethodEntryJoinPoint";
066:            public static String KIND_METHOD_EXIT_JP = "MethodExitJoinPoint";
067:            public static String KIND_METHOD_REDEFINE_JP = "MethodRedefineJoinPoint";
068:            public static String KIND_FIELD_ACCESS_JP = "FieldAccessJoinPoint";
069:            public static String KIND_FIELD_MODIFICATION_JP = "FieldModificationJoinPoint";
070:            public static String KIND_EXCEPTION_THROW_ARGS_JP = "ExceptionJoinPoint";
071:            public static String KIND_EXCEPTION_CATCH_ARGS_JP = "ExceptionCatchJoinPoint";
072:            public static String KIND_CONSTRUCTOR_JP = "ConstructorJoinPoint";
073:        }
074:
075:        //======================================================================
076:        //
077:        // $Log: JoinPointKinds.java,v $
078:        // Revision 1.2  2004/05/12 09:41:54  anicoara
079:        // Remove the README.RVM file
080:        //
081:        // Revision 1.1.1.1  2003/07/02 15:30:50  apopovic
082:        // Imported from ETH Zurich
083:        //
084:        // Revision 1.3  2003/07/02 12:42:50  anicoara
085:        // Added CatchJoinPoint Functionality (Requests, Join-Points, Filters, CatchCuts, Tests)
086:        //
087:        // Revision 1.2  2003/05/06 15:51:25  popovici
088:        // Mozilla-ification
089:        //
090:        // Revision 1.1  2003/05/05 14:02:22  popovici
091:        // renaming from runes to prose
092:        //
093:        // Revision 1.1  2003/04/17 08:47:09  popovici
094:        // Important functionality additions
095:        //  - Cflow specializers
096:        //  - Restructuring of the MethodCut, SetCut, ThrowCut, and GetCut (they are much smaller)
097:        //  - Transactional capabilities
098:        //  - Total refactoring of Specializer evaluation, which permits fine-grained distinction
099:        //    between static and dynamic specializers.
100:        //  - Functionality pulled up in abstract classes
101:        //  - Uniformization of advice methods patterns and names
102:        //
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.