00001
00002
00003
00004
00005
00006
00007 #ifndef COH_RAW_YEAR_MONTH_INTERVAL_HPP
00008 #define COH_RAW_YEAR_MONTH_INTERVAL_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/io/pof/PofIntrinsic.hpp"
00013
00014
00015
00016 COH_OPEN_NAMESPACE3(coherence,io,pof)
00017
00018
00019
00020
00021
00022
00023
00024 class COH_EXPORT RawYearMonthInterval
00025 : public cloneable_spec<RawYearMonthInterval,
00026 extends<Object>,
00027 implements<PofIntrinsic> >
00028 {
00029 friend class factory<RawYearMonthInterval>;
00030
00031
00032
00033 protected:
00034
00035
00036
00037
00038
00039
00040
00041
00042 RawYearMonthInterval(int32_t cYears, int32_t cMonths);
00043
00044
00045
00046
00047 RawYearMonthInterval(const RawYearMonthInterval& that);
00048
00049
00050
00051
00052 public:
00053
00054
00055
00056 virtual bool equals(Object::View v) const;
00057
00058
00059
00060
00061 virtual size32_t hashCode() const;
00062
00063
00064
00065
00066 virtual bool isImmutable() const;
00067
00068
00069
00070
00071 virtual TypedHandle<const String> toString() const;
00072
00073
00074
00075
00076 public:
00077
00078
00079
00080
00081
00082 virtual int32_t getYears() const;
00083
00084
00085
00086
00087
00088
00089 virtual int32_t getMonths() const;
00090
00091
00092
00093
00094 protected:
00095
00096
00097
00098 int32_t m_cYears;
00099
00100
00101
00102
00103 int32_t m_cMonths;
00104 };
00105
00106 COH_CLOSE_NAMESPACE3
00107
00108 #endif // COH_RAW_YEAR_MONTH_INTERVAL_HPP