00001 #ifndef NotationImpl_HEADER_GUARD_
00002 #define NotationImpl_HEADER_GUARD_
00003 /*
00004 * The Apache Software License, Version 1.1
00005 *
00006 * Copyright (c) 1999-2000 The Apache Software Foundation. All rights
00007 * reserved.
00008 *
00009 * Redistribution and use in source and binary forms, with or without
00010 * modification, are permitted provided that the following conditions
00011 * are met:
00012 *
00013 * 1. Redistributions of source code must retain the above copyright
00014 * notice, this list of conditions and the following disclaimer.
00015 *
00016 * 2. Redistributions in binary form must reproduce the above copyright
00017 * notice, this list of conditions and the following disclaimer in
00018 * the documentation and/or other materials provided with the
00019 * distribution.
00020 *
00021 * 3. The end-user documentation included with the redistribution,
00022 * if any, must include the following acknowledgment:
00023 * "This product includes software developed by the
00024 * Apache Software Foundation (http://www.apache.org/)."
00025 * Alternately, this acknowledgment may appear in the software itself,
00026 * if and wherever such third-party acknowledgments normally appear.
00027 *
00028 * 4. The names "Xerces" and "Apache Software Foundation" must
00029 * not be used to endorse or promote products derived from this
00030 * software without prior written permission. For written
00031 * permission, please contact apache\@apache.org.
00032 *
00033 * 5. Products derived from this software may not be called "Apache",
00034 * nor may "Apache" appear in their name, without prior written
00035 * permission of the Apache Software Foundation.
00036 *
00037 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
00038 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
00039 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
00040 * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
00041 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
00042 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
00043 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
00044 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
00045 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
00046 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
00047 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00048 * SUCH DAMAGE.
00049 * ====================================================================
00050 *
00051 * This software consists of voluntary contributions made by many
00052 * individuals on behalf of the Apache Software Foundation, and was
00053 * originally based on software copyright (c) 1999, International
00054 * Business Machines, Inc., http://www.ibm.com . For more information
00055 * on the Apache Software Foundation, please see
00056 * <http://www.apache.org/>.
00057 */
00058
00059 /*
00060 * $Id: NotationImpl.hpp,v 1.9 2000/04/06 23:59:24 lehors Exp $
00061 */
00062
00063 //
00064 // This file is part of the internal implementation of the C++ XML DOM.
00065 // It should NOT be included or used directly by application programs.
00066 //
00067 // Applications should include the file <dom/DOM.hpp> for the entire
00068 // DOM API, or DOM_*.hpp for individual DOM classes, where the class
00069 // name is substituded for the *.
00070 //
00071
00072 #include <util/XercesDefs.hpp>
00073 #include "NodeImpl.hpp"
00074
00075 class DocumentImpl;
00076
00077 class NotationImpl: public NodeImpl {
00078 private:
00079 DOMString name;
00080 DOMString publicId;
00081 DOMString systemId;
00082
00083 public:
00084 NotationImpl(DocumentImpl *, const DOMString &);
00085 NotationImpl(const NotationImpl &other, bool deep=false);
00086
00087 virtual ~NotationImpl();
00088
00089 virtual NodeImpl *cloneNode(bool deep);
00090 virtual DOMStringgetNodeName();
00091 virtual short getNodeType();
00092 virtual NodeImpl * getParentNode();
00093
00094 //
00095 // The Public Identifier for this Notation. If no public identifier
00096 // was specified, this will be null.
00097 virtual DOMStringgetPublicId();
00098
00099 // The System Identifier for this Notation. If no system identifier
00100 // was specified, this will be null.
00101 virtual DOMStringgetSystemId();
00102
00103
00104 // Notations never have a nodeValue.
00105 // @throws DOMException(NO_MODIFICATION_ALLOWED_ERR)
00106 virtual void setNodeValue(const DOMString &arg);
00107
00108
00109 // NON-DOM: The Public Identifier for this Notation. If no public
00110 // identifier was specified, this will be null. */
00111 virtual void setPublicId(const DOMString &arg);
00112
00113
00114 // NON-DOM: The System Identifier for this Notation. If no system
00115 // identifier was specified, this will be null. */
00116 virtual void setSystemId(const DOMString &arg);
00117
00118 };
00119
00120 #endif