blob: 343b4d86791f44fd3718281aa53104d03645022c [file] [log] [blame]
<HTML><HEAD><TITLE>Xalan-C++ API Documentation</TITLE></HEAD>
<BODY>
<h2 align="center">Xalan-C++ API Documentation</h2>
<h3 align="center">The Xalan C++ XSLT Processor Version 1.10</h3>
</BODY>
<!-- Generated by Doxygen 1.2.8.1 -->
<center>
<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; <a class="qindex" href="globals.html">File Members</a> &nbsp; </center>
<hr><h1>XalanMessageLoader.hpp</h1><a href="XalanMessageLoader_8hpp.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <font class="comment">/*</font>
00002 <font class="comment"> * Copyright 1999-2004 The Apache Software Foundation.</font>
00003 <font class="comment"> *</font>
00004 <font class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</font>
00005 <font class="comment"> * you may not use this file except in compliance with the License.</font>
00006 <font class="comment"> * You may obtain a copy of the License at</font>
00007 <font class="comment"> *</font>
00008 <font class="comment"> * http://www.apache.org/licenses/LICENSE-2.0</font>
00009 <font class="comment"> *</font>
00010 <font class="comment"> * Unless required by applicable law or agreed to in writing, software</font>
00011 <font class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</font>
00012 <font class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</font>
00013 <font class="comment"> * See the License for the specific language governing permissions and</font>
00014 <font class="comment"> * limitations under the License.</font>
00015 <font class="comment"> */</font>
00016 <font class="preprocessor">#if !defined(XALANMESSAGELOADER_HEADER_GUARD_1357924680)</font>
<a name="l00017"></a><a class="code" href="XalanMessageLoader_8hpp.html#a0">00017</a> <font class="preprocessor"></font><font class="preprocessor">#define XALANMESSAGELOADER_HEADER_GUARD_1357924680</font>
00018 <font class="preprocessor"></font>
00019
00020 <font class="comment">// Base include file. Must be first.</font>
00021 <font class="preprocessor">#include "<a class="code" href="PlatformSupportDefinitions_8hpp.html">xalanc/PlatformSupport/PlatformSupportDefinitions.hpp</a>"</font>
00022
00023
00024 <font class="preprocessor">#include "<a class="code" href="XalanDOMString_8hpp.html">xalanc/XalanDOM/XalanDOMString.hpp</a>"</font>
00025
00026 <font class="preprocessor">#include "<a class="code" href="XalanMemMgrAutoPtr_8hpp.html">xalanc/Include/XalanMemMgrAutoPtr.hpp</a>"</font>
00027 <font class="preprocessor">#include "<a class="code" href="XalanMemMgrHelper_8hpp.html">xalanc/Include/XalanMemMgrHelper.hpp</a>"</font>
00028
00029 <font class="preprocessor">#include "LocalMsgIndex.hpp"</font>
00030
00031
00032
00033 XALAN_CPP_NAMESPACE_BEGIN
00034
00035
00036
<a name="l00037"></a><a class="code" href="XalanMessageLoader_8hpp.html#a1">00037</a> <a class="code" href="XSLTInputSource_8hpp.html#a3">XALAN_USING_XERCES</a>(MemoryManager)
00038
00039
00040
00041 <font class="comment">// class for calling fom outside of the module </font>
00042 <font class="keyword">class </font>XALAN_PLATFORMSUPPORT_EXPORT <a class="code" href="classXalanMessageLoader.html">XalanMessageLoader</a> {
00043
00044
00045 <font class="keyword">public</font>:
00046 template &lt;class Type&gt;
00047 <font class="keyword">class </font>XalanMessageLoaderCreateFunct
00048 {
00049 <font class="keyword">public</font>:
00050 Type*
00051 operator()(MemoryManager&amp; theManager)<font class="keyword"></font>
00052 <font class="keyword"> </font>{
00053 XalanMemMgrAutoPtr&lt;Type, false&gt; theGuard( theManager , (Type*)theManager.allocate(<font class="keyword">sizeof</font>(Type)));
00054
00055 Type* theResult = theGuard.get();
00056
00057 <font class="keyword">new</font> (theResult) Type(theManager);
00058
00059 theGuard.release();
00060
00061 <font class="keywordflow">return</font> theResult;
00062 }
00063 };
00064
00065 <font class="keyword">class </font>XalanMessageLoaderDestructFunct
00066 {
00067 <font class="keyword">public</font>:
00068 <font class="keywordtype">void</font>
00069 operator()(
00070 MemoryManager&amp; theManager,
00071 <a class="code" href="classXalanMessageLoader.html">XalanMessageLoader</a>* p)<font class="keyword"></font>
00072 <font class="keyword"> </font>{
00073 assert ( p != 0);
00074
00075 <a class="code" href="XalanMemMgrHelper_8hpp.html#a3">destroyObjWithMemMgr</a>(p, theManager);
00076 }
00077 };
00078
00079 <font class="keyword">virtual</font>
00080 ~XalanMessageLoader();
00081
00082 XalanMessageLoader()<font class="keyword"></font>
00083 <font class="keyword"> </font>{
00084 }
00085
00086 <font class="keyword">static</font> <font class="keywordtype">void</font>
00087 initialize(MemoryManagerType&amp; theManager);
00088
00089 <font class="keyword">static</font> <font class="keywordtype">void</font>
00090 terminate();
00091
00092 <font class="keyword">static</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp;
00093 getMessage(
00094 <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theResultMessage,
00095 XalanMessages::Codes msgToLoad,
00096 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText1 ,
00097 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText2 = 0,
00098 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText3 = 0,
00099 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText4 = 0);
00100
00101 <font class="keyword">static</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp;
00102 getMessage(
00103 <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theResultMessage,
00104 XalanMessages::Codes msgToLoad,
00105 <font class="keyword">const</font> XalanDOMChar* repText1,
00106 <font class="keyword">const</font> XalanDOMChar* repText2 = 0,
00107 <font class="keyword">const</font> XalanDOMChar* repText3 = 0,
00108 <font class="keyword">const</font> XalanDOMChar* repText4 = 0);
00109
00110 <font class="keyword">static</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp;
00111 getMessage(
00112 <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theResultMessage,
00113 XalanMessages::Codes msgToLoad);
00114
00115 <font class="keyword">static</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp;
00116 getMessage(
00117 <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theResultMessage,
00118 XalanMessages::Codes msgToLoad,
00119 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; repText1);
00120
00121 <font class="keyword">static</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp;
00122 getMessage(
00123 <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theResultMessage,
00124 XalanMessages::Codes msgToLoad,
00125 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; repText1,
00126 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; repText2);
00127
00128 <font class="keyword">static</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp;
00129 getMessage(
00130 <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; theResultMessage,
00131 XalanMessages::Codes msgToLoad,
00132 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; repText1,
00133 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; repText2,
00134 <font class="keyword">const</font> <a class="code" href="classXalanDOMString.html">XalanDOMString</a>&amp; repText3);
00135
00136 <font class="keyword">protected</font>:
00137
00138 <font class="keyword">virtual</font> <font class="keywordtype">bool</font>
00139 loadMsg(
00140 XalanMessages::Codes msgToLoad,
00141 XalanDOMChar* toFill,
00142 <font class="keywordtype">unsigned</font> <font class="keywordtype">int</font> maxChars) = 0;
00143
00144 <font class="keyword">private</font>:
00145
00146 <font class="keywordtype">bool</font>
00147 load(
00148 XalanMessages::Codes msgToLoad,
00149 MemoryManager&amp; theMemoryManager,
00150 XalanDOMChar* toFill,
00151 <font class="keywordtype">unsigned</font> <font class="keywordtype">int</font> maxChars,
00152 <font class="keyword">const</font> XalanDOMChar* repText1,
00153 <font class="keyword">const</font> XalanDOMChar* repText2 = 0,
00154 <font class="keyword">const</font> XalanDOMChar* repText3 = 0,
00155 <font class="keyword">const</font> XalanDOMChar* repText4 = 0);
00156
00157 <font class="keywordtype">bool</font>
00158 load(
00159 XalanMessages::Codes msgToLoad,
00160 MemoryManagerType&amp; theManager,
00161 XalanDOMChar* toFill,
00162 <font class="keywordtype">unsigned</font> <font class="keywordtype">int</font> maxChars,
00163 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText1 ,
00164 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText2 = 0,
00165 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText3 = 0,
00166 <font class="keyword">const</font> <font class="keywordtype">char</font>* repText4 = 0);
00167
00168 XalanMessageLoader(<font class="keyword">const</font> <a class="code" href="classXalanMessageLoader.html">XalanMessageLoader</a>&amp;);
00169
00170 <a class="code" href="classXalanMessageLoader.html">XalanMessageLoader</a>&amp;
00171 operator=(<font class="keyword">const</font> <a class="code" href="classXalanMessageLoader.html">XalanMessageLoader</a>&amp;);
00172
00173 <font class="keyword">static</font> <a class="code" href="classXalanMessageLoader.html">XalanMessageLoader</a>* s_msgLoader;
00174 };
00175
00176
00177
00178 XALAN_CPP_NAMESPACE_END
00179
00180 <font class="preprocessor">#endif // XALANMESSAGELOADER_HEADER_GUARD_1357924680</font>
</font></pre></div><p align="center"><a href="diagramnotes.html">Interpreting class diagrams</a></p>
<p><FONT color="#000000" face="arial,helvetica,sanserif" size="-1">
<i><A href="http://www.stack.nl/~dimitri/doxygen/">Doxygen</A> and
<A href="http://www.research.att.com/sw/tools/graphviz/">GraphViz</A> are used to generate this API documentation from the Xalan-C header files.</I></FONT></p>
<TABLE border="0" cellpadding="0" cellspacing="0" width="820"><TR><TD bgcolor="#0086b2"><IMG height="1" src="../resources/dot.gif" width="1" alt="dot"></TD></TR></TABLE>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="80%">
<TR>
<TD WIDTH="80%" VALIGN="TOP">
<P ALIGN="CENTER"><B>Xalan-C++ XSLT Processor Version 1.10</B><BR>
Copyright &copy; 1999-2004 The Apache Software Foundation. All Rights Reserved.</i></p>
</TD>
</TR>
<TR>
<TD WIDTH="100%">
<P ALIGN="CENTER"><IMG SRC="ApacheLogo.jpg" WIDTH="387" HEIGHT="100" ALIGN="BOTTOM" BORDER="0" ALT="Apache Logo">
</TD>
</TR>
</TABLE>