Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / nsgmls / Notation.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: Notation.C /main/1 1996/07/29 16:58:43 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifdef __GNUG__
28 #pragma implementation
29 #endif
30 #include "splib.h"
31 #include "Notation.h"
32 #include "ParserState.h"
33 #include "Sd.h"
34 #include "Syntax.h"
35 #include "MessageArg.h"
36 #include "ParserMessages.h"
37
38 #ifdef SP_NAMESPACE
39 namespace SP_NAMESPACE {
40 #endif
41
42 Notation::Notation(const StringC &name,
43                    const ConstPtr<StringResource<Char> > &dtdName,
44                    Boolean dtdIsBase)
45 : EntityDecl(name, notation, ndata, Location()), defined_(0)
46 {
47   setDeclIn(dtdName, dtdIsBase);
48 }
49
50 void Notation::setExternalId(const ExternalId &id, const Location &defLocation)
51 {
52   externalId_ = id;
53   defined_ = 1;
54   setDefLocation(defLocation);
55 }
56
57 void Notation::generateSystemId(ParserState &parser)
58 {
59   StringC str;
60   if (parser.entityCatalog().lookup(*this,
61                                     parser.syntax(),
62                                     parser.sd().docCharset(),
63                                     parser.messenger(),
64                                     str))
65     externalId_.setEffectiveSystem(str);
66   else if (parser.options().warnNotationSystemId)
67     parser.message(ParserMessages::cannotGenerateSystemIdNotation,
68                    StringMessageArg(name()));
69 }
70
71 const StringC *Notation::systemIdPointer() const
72 {
73   return externalId_.systemIdString();
74 }
75
76 const StringC *Notation::publicIdPointer() const
77 {
78   return externalId_.publicIdString();
79 }
80
81
82 #ifdef SP_NAMESPACE
83 }
84 #endif