00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 #ifndef COH_ABSTRACT_COMPOSITE_EXTRACTOR_HPP
00017 #define COH_ABSTRACT_COMPOSITE_EXTRACTOR_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/io/pof/PofReader.hpp"
00022 #include "coherence/io/pof/PofWriter.hpp"
00023 #include "coherence/util/extractor/AbstractExtractor.hpp"
00024 
00025 COH_OPEN_NAMESPACE3(coherence,util,extractor)
00026 
00027 using coherence::io::pof::PofReader;
00028 using coherence::io::pof::PofWriter;
00029 
00030 
00031 
00032 
00033 
00034 
00035 
00036 
00037 class COH_EXPORT AbstractCompositeExtractor
00038     : public abstract_spec<AbstractCompositeExtractor,
00039         extends<AbstractExtractor> >
00040     {
00041     friend class factory<AbstractCompositeExtractor>;
00042 
00043     
00044 
00045     protected:
00046 
00047 
00048 
00049         AbstractCompositeExtractor();
00050 
00051 
00052 
00053 
00054 
00055 
00056 
00057         AbstractCompositeExtractor(ObjectArray::View vaExtractor);
00058 
00059 
00060 
00061 
00062 
00063 
00064 
00065         AbstractCompositeExtractor(ValueExtractor::View vE1,
00066                 ValueExtractor::View vE2);
00067 
00068     private:
00069 
00070 
00071 
00072         AbstractCompositeExtractor(const AbstractCompositeExtractor&);
00073 
00074 
00075     
00076 
00077     public:
00078 
00079 
00080 
00081         virtual void readExternal(PofReader::Handle hIn);
00082 
00083 
00084 
00085 
00086         virtual void writeExternal(PofWriter::Handle hOut) const;
00087 
00088 
00089     
00090 
00091     public:
00092 
00093 
00094 
00095 
00096 
00097 
00098 
00099 
00100 
00101         virtual bool equals(Object::View v) const;
00102 
00103 
00104 
00105 
00106         virtual size32_t hashCode() const;
00107 
00108 
00109 
00110 
00111         virtual TypedHandle<const String> toString() const;
00112 
00113 
00114     
00115 
00116     public:
00117 
00118 
00119 
00120 
00121 
00122         virtual ObjectArray::View getExtractors() const;
00123 
00124 
00125     
00126 
00127     protected:
00128 
00129 
00130 
00131         FinalView<ObjectArray> f_vaExtractor;
00132     };
00133 
00134 COH_CLOSE_NAMESPACE3
00135 
00136 #endif // COH_ABSTRACT_COMPOSITE_EXTRACTOR_HPP