00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087 #if !defined(XMLNOTATIONDECL_HPP)
00088 #define XMLNOTATIONDECL_HPP
00089
00090 #include <xercesc/util/XercesDefs.hpp>
00091 #include <xercesc/util/XMLString.hpp>
00092
00102 class XMLNotationDecl
00103 {
00104 public:
00105
00106
00107
00108
00111 XMLNotationDecl();
00112 XMLNotationDecl
00113 (
00114 const XMLCh* const notName
00115 , const XMLCh* const pubId
00116 , const XMLCh* const sysId
00117 , const XMLCh* const baseURI = 0
00118 );
00120
00123 ~XMLNotationDecl();
00125
00126
00127
00128
00129
00130 unsigned int getId() const;
00131 const XMLCh* getName() const;
00132 const XMLCh* getPublicId() const;
00133 const XMLCh* getSystemId() const;
00134 const XMLCh* getBaseURI() const;
00135
00136
00137
00138
00139
00140 void setId(const unsigned int newId);
00141 void setName
00142 (
00143 const XMLCh* const notName
00144 );
00145 void setPublicId(const XMLCh* const newId);
00146 void setSystemId(const XMLCh* const newId);
00147 void setBaseURI(const XMLCh* const newId);
00148
00149
00150
00151
00152
00153 const XMLCh* getKey() const;
00154
00155
00156 private :
00157
00158
00159
00160 XMLNotationDecl(const XMLNotationDecl&);
00161 void operator=(const XMLNotationDecl&);
00162
00163
00164
00165
00166
00167 void cleanUp();
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189 unsigned int fId;
00190 XMLCh* fName;
00191 XMLCh* fPublicId;
00192 XMLCh* fSystemId;
00193 XMLCh* fBaseURI;
00194 };
00195
00196
00197
00198
00199
00200 inline unsigned int XMLNotationDecl::getId() const
00201 {
00202 return fId;
00203 }
00204
00205 inline const XMLCh* XMLNotationDecl::getName() const
00206 {
00207 return fName;
00208 }
00209
00210 inline const XMLCh* XMLNotationDecl::getPublicId() const
00211 {
00212 return fPublicId;
00213 }
00214
00215 inline const XMLCh* XMLNotationDecl::getSystemId() const
00216 {
00217 return fSystemId;
00218 }
00219
00220 inline const XMLCh* XMLNotationDecl::getBaseURI() const
00221 {
00222 return fBaseURI;
00223 }
00224
00225
00226
00227
00228
00229 inline void XMLNotationDecl::setId(const unsigned int newId)
00230 {
00231 fId = newId;
00232 }
00233
00234 inline void XMLNotationDecl::setPublicId(const XMLCh* const newId)
00235 {
00236 delete [] fPublicId;
00237 fPublicId = XMLString::replicate(newId);
00238 }
00239
00240 inline void XMLNotationDecl::setSystemId(const XMLCh* const newId)
00241 {
00242 delete [] fSystemId;
00243 fSystemId = XMLString::replicate(newId);
00244 }
00245
00246 inline void XMLNotationDecl::setBaseURI(const XMLCh* const newId)
00247 {
00248 delete [] fBaseURI;
00249 fBaseURI = XMLString::replicate(newId);
00250 }
00251
00252
00253
00254
00255
00256 inline const XMLCh* XMLNotationDecl::getKey() const
00257 {
00258 return fName;
00259 }
00260
00261 #endif