00001
00002
00003
00004
00005
00006
00007 #ifndef COH_ANNOTATED_ELEMENT_HPP
00008 #define COH_ANNOTATED_ELEMENT_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/abstract_spec.hpp"
00013 #include "coherence/lang/Annotation.hpp"
00014 #include "coherence/lang/FinalHandle.hpp"
00015 #include "coherence/lang/ObjectArray.hpp"
00016
00017
00018
00019 COH_OPEN_NAMESPACE2(coherence,lang)
00020
00021
00022
00023 class Class;
00024
00025
00026
00027
00028
00029
00030
00031
00032 class COH_EXPORT AnnotatedElement
00033 : public abstract_spec<AnnotatedElement>
00034 {
00035
00036
00037 protected:
00038
00039
00040
00041 AnnotatedElement();
00042
00043
00044
00045
00046 public:
00047
00048
00049
00050
00051
00052
00053
00054
00055 virtual Annotation::View getAnnotation(TypedHandle<const Class> vClassAnnotation) const;
00056
00057
00058
00059
00060
00061
00062 virtual ObjectArray::View getAnnotations() const;
00063
00064
00065
00066
00067
00068
00069 virtual ObjectArray::View getDeclaredAnnotations() const;
00070
00071
00072
00073
00074
00075
00076 virtual bool isAnnotationPresent(TypedHandle<const Class> vClassAnnotation) const;
00077
00078
00079
00080
00081
00082
00083 virtual AnnotatedElement::Handle addAnnotation(Annotation::View vAnnotation);
00084
00085
00086
00087
00088
00089
00090
00091
00092 virtual AnnotatedElement::View getSuperelement() const;
00093
00094
00095
00096
00097 protected:
00098
00099
00100
00101 mutable FinalHandle<Object> f_hMapAnnotations;
00102
00103
00104
00105
00106 FinalHandle<Object> f_hListAnnotationsDeclared;
00107 };
00108
00109 COH_CLOSE_NAMESPACE2
00110
00111 #endif // COH_ANNOTATED_ELEMENT_HPP