Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
25 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
26 inline String::String()
27 : iLength(0), iText(NULL)
31 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
32 inline String::String(const char* aText)
33 : iLength(0), iText(NULL)
35 if (aText && CreateText(strlen(aText)))
37 CopyText(iText, aText, iLength);
38 iText[iLength] = '\0';
42 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
43 inline String::String(int aLength,char* aText)
44 : iLength(0), iText(NULL)
46 if (aText && CreateText(aLength))
48 CopyText(iText, aText, aLength);
49 iText[iLength] = '\0';
53 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
54 inline String::String(const String& aString)
55 : iLength(0), iText(NULL)
57 if (CreateText(aString.iLength))
59 CopyText(iText, aString.iText, iLength);
60 iText[iLength] = '\0';
64 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
65 inline String& String::operator = (const char* aText)
68 if (CreateText(strlen(aText)))
70 CopyText(iText, aText, iLength);
71 iText[iLength] = '\0';
77 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
78 inline String& String::operator = (const String& aString)
80 String string(aString);
82 if (CreateText(string.iLength))
84 CopyText(iText, string.iText, iLength);
85 iText[iLength] = '\0';
91 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
92 inline String& String::operator += (const char aChar)
95 if (CreateText(iLength + 1))
97 CopyText(iText, text, iLength - 1);
98 iText[iLength - 1] = aChar;
99 iText[iLength] = '\0';
105 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
106 inline String& String::operator += (const String& aString)
109 int length = iLength;
110 if (CreateText(length + aString.iLength))
112 CopyText(iText, text, length);
113 CopyText(iText + length, aString.iText, aString.iLength);
114 iText[iLength] = '\0';
120 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
121 inline int String::operator == (const String& aString) const
123 boolean same = etrue;
124 if (iLength != aString.iLength)
128 for (int i = 0; i < iLength; i++)
129 same = same && ((*this)[i] == aString[i]);
134 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
135 inline char& String::operator [] (const int aNum) const
140 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
141 inline int String::Length() const
146 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
147 inline const char* String::Text()
152 /** WARNING: Functon for internal use ONLY. Compatibility is not guaranteed in future releases. */
153 inline void String::CopyText(char* aDest, const char* aSource, int aLength) const
155 for (int i = 0; i < aLength; i++)
156 aDest[i] = aSource[i];