00001 /*
00002 * Copyright 1999-2004 The Apache Software Foundation.
00003 *
00004 * Licensed under the Apache License, Version 2.0 (the "License");
00005 * you may not use this file except in compliance with the License.
00006 * You may obtain a copy of the License at
00007 *
00008 * http://www.apache.org/licenses/LICENSE-2.0
00009 *
00010 * Unless required by applicable law or agreed to in writing, software
00011 * distributed under the License is distributed on an "AS IS" BASont> XMLCh* XMLURL::getQuery() const
00258 {
00259 return fQuery;
00260 }
00261
00262 inline const XMLCh* XMLURL::getUser() const
00263 {
00264 return fUser;
00265 }
00266
00267 inline const XMLCh* XMLURL::getURLText() const
00268 {
00269 //
00270 // Fault it in if not already. Since this is a const method and we
00271 // can't use mutable members due the compilers we have to support,
00272 // we have to cast off the constness.
00273 //
00274 if (!fURLText)
00275 ((XMLURL*)this)->buildFullText();
00276
00277 return fURLText;
00278 }
00279
00280 inline MemoryManager* XMLURL::getMemoryManager() const
00281 {
00282 return fMemoryManager;
00283 }
00284
00285 MakeXMLException(MalformedURLException, )
00286
00287 XERCES_CPP_NAMESPACE_END
00288
00289
00290 #endif