Skip to content
Snippets Groups Projects
Commit 63af3463 authored by PeiYong Zhang's avatar PeiYong Zhang
Browse files

Deprecated toString() in XMLNumber family

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174947 13f79535-47bb-0310-9956-ffa450edef68
parent f296534e
No related branches found
No related tags found
No related merge requests found
...@@ -57,6 +57,9 @@ ...@@ -57,6 +57,9 @@
/* /*
* $Id$ * $Id$
* $Log$ * $Log$
* Revision 1.10 2003/05/09 15:13:46 peiyongz
* Deprecated toString() in XMLNumber family
*
* Revision 1.9 2003/03/10 20:55:58 peiyongz * Revision 1.9 2003/03/10 20:55:58 peiyongz
* Schema Errata E2-40 double/float * Schema Errata E2-40 double/float
* *
...@@ -151,6 +154,11 @@ public: ...@@ -151,6 +154,11 @@ public:
virtual ~XMLAbstractDoubleFloat(); virtual ~XMLAbstractDoubleFloat();
/**
*
* Deprecated: please use getRawData
*
*/
virtual XMLCh* toString() const; virtual XMLCh* toString() const;
virtual XMLCh* getRawData() const; virtual XMLCh* getRawData() const;
......
...@@ -88,6 +88,11 @@ public: ...@@ -88,6 +88,11 @@ public:
static int compareValues(const XMLBigDecimal* const lValue static int compareValues(const XMLBigDecimal* const lValue
, const XMLBigDecimal* const rValue); , const XMLBigDecimal* const rValue);
/**
*
* Deprecated: please use getRawData
*
*/
virtual XMLCh* toString() const; virtual XMLCh* toString() const;
virtual XMLCh* getRawData() const; virtual XMLCh* getRawData() const;
......
...@@ -102,6 +102,9 @@ public: ...@@ -102,6 +102,9 @@ public:
int getTotalDigit() const; int getTotalDigit() const;
/** /**
*
* Deprecated: please use getRawData
*
* Return a copy of the fMagnitue. * Return a copy of the fMagnitue.
* A leading sign is ALWAYS in place and the caller of this method * A leading sign is ALWAYS in place and the caller of this method
* is responsible for the de-allocation of the memory. * is responsible for the de-allocation of the memory.
......
...@@ -57,6 +57,9 @@ ...@@ -57,6 +57,9 @@
/* /*
* $Id$ * $Id$
* $Log$ * $Log$
* Revision 1.6 2003/05/09 15:13:46 peiyongz
* Deprecated toString() in XMLNumber family
*
* Revision 1.5 2003/03/10 20:55:58 peiyongz * Revision 1.5 2003/03/10 20:55:58 peiyongz
* Schema Errata E2-40 double/float * Schema Errata E2-40 double/float
* *
...@@ -146,6 +149,12 @@ public: ...@@ -146,6 +149,12 @@ public:
// Implementation of Abstract Interface // Implementation of Abstract Interface
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
/**
*
* Deprecated: please use getRawData
*
*/
virtual XMLCh* toString() const; virtual XMLCh* toString() const;
virtual XMLCh* getRawData() const; virtual XMLCh* getRawData() const;
......
...@@ -57,6 +57,9 @@ ...@@ -57,6 +57,9 @@
/* /*
* $Id$ * $Id$
* $Log$ * $Log$
* Revision 1.6 2003/05/09 15:13:46 peiyongz
* Deprecated toString() in XMLNumber family
*
* Revision 1.5 2003/03/10 20:55:58 peiyongz * Revision 1.5 2003/03/10 20:55:58 peiyongz
* Schema Errata E2-40 double/float * Schema Errata E2-40 double/float
* *
...@@ -101,7 +104,9 @@ public: ...@@ -101,7 +104,9 @@ public:
virtual ~XMLNumber(); virtual ~XMLNumber();
/** /**
* Deprecated: please use getRawData
*
* Return string representation of the decimal value. * Return string representation of the decimal value.
* A decimal point will be included as necessary, * A decimal point will be included as necessary,
* the caller of this method is responsible for the * the caller of this method is responsible for the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment