KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > jvmai > FieldAccessJoinPoint


1 //
2
// This file is part of the prose package.
3
//
4
// The contents of this file are subject to the Mozilla Public License
5
// Version 1.1 (the "License"); you may not use this file except in
6
// compliance with the License. You may obtain a copy of the License at
7
// http://www.mozilla.org/MPL/
8
//
9
// Software distributed under the License is distributed on an "AS IS" basis,
10
// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11
// for the specific language governing rights and limitations under the
12
// License.
13
//
14
// The Original Code is prose.
15
//
16
// The Initial Developer of the Original Code is Andrei Popovici. Portions
17
// created by Andrei Popovici are Copyright (C) 2002 Andrei Popovici.
18
// All Rights Reserved.
19
//
20
// Contributor(s):
21
// $Id: FieldAccessJoinPoint.java,v 1.1.1.1 2003/07/02 15:30:50 apopovic Exp $
22
// =====================================================================
23
//
24
// (history at end)
25
//
26

27 package ch.ethz.jvmai;
28
29 // used packages/classes
30
import ch.ethz.jvmai.FieldJoinPoint;
31
32 /**
33  * Class FieldAccessJoinPoint represents a joinpoint where
34  * a field is accessed. This class does not provide any new
35  * fields or methods.
36  *
37  * @version $Revision: 1.1.1.1 $
38  * @author Andrei Popovici
39  */

40 public interface FieldAccessJoinPoint extends FieldJoinPoint {
41   public static String JavaDoc KIND = JoinPointKinds.KIND_FIELD_ACCESS_JP;
42 }
43
44 //======================================================================
45
//
46
// $Log: FieldAccessJoinPoint.java,v $
47
// Revision 1.1.1.1 2003/07/02 15:30:50 apopovic
48
// Imported from ETH Zurich
49
//
50
// Revision 1.1 2003/05/05 14:02:19 popovici
51
// renaming from runes to prose
52
//
53
// Revision 1.6 2003/04/17 08:47:08 popovici
54
// Important functionality additions
55
// - Cflow specializers
56
// - Restructuring of the MethodCut, SetCut, ThrowCut, and GetCut (they are much smaller)
57
// - Transactional capabilities
58
// - Total refactoring of Specializer evaluation, which permits fine-grained distinction
59
// between static and dynamic specializers.
60
// - Functionality pulled up in abstract classes
61
// - Uniformization of advice methods patterns and names
62
//
63
// Revision 1.5 2003/03/04 11:27:02 popovici
64
// Important refactorization step (march):
65
// - removal of 'JoinPointEvents'; JoinPoints now have the same function as events
66
// - reimplementation of the JVMAIDebuggerAspectInterface (better performance, coding conventions, removal of ProseVM
67
// structures
68
//
69
// Revision 1.4 2002/03/28 13:48:25 popovici
70
// Mozilla-ified
71
//
72
// Revision 1.3 2002/02/13 12:24:25 smarkwal
73
// spaces/tabs alignment corrected
74
//
75
// Revision 1.2 2002/01/24 12:46:22 smarkwal
76
// comments added
77
//
78
// Revision 1.1 2001/12/14 15:01:14 smarkwal
79
// Initial Revision
80
//
81
Popular Tags