xmlengattr.h

Go to the documentation of this file.
00001 /*
00002 * ==============================================================================
00003 *  Name        : xmlengattr.h
00004 *  Part of     : XmlEngine / DOM XPath C++ Wrapper
00005 *  Interface   : Domain, XML Engine DOM API
00006 *  Description : Attribute node functions
00007 *  Version     : %version: 2 %
00008 *
00009 *  Copyright © 2004-2006 Nokia. All rights reserved.
00010 *  This material, including documentation and any related 
00011 *  computer programs, is protected by copyright controlled by 
00012 *  Nokia. All rights are reserved. Copying, including 
00013 *  reproducing, storing, adapting or translating, any 
00014 *  or all of this material requires the prior written consent of 
00015 *  Nokia. This material also contains confidential 
00016 *  information which may not be disclosed to others without the 
00017 *  prior written consent of Nokia.
00018 * ==============================================================================
00019 */
00020 
00021 #ifndef XMLENGINE_ATTR_H_INCLUDED
00022 #define XMLENGINE_ATTR_H_INCLUDED
00023 
00024 #include "xmlengnode.h"
00025 
00034 class TXmlEngAttr : public TXmlEngNode
00035 {
00036   public:
00042     inline TXmlEngAttr();
00043 
00044 
00058     IMPORT_C TXmlEngAttr CopyL() const;
00059 
00073     IMPORT_C const TXmlEngElement OwnerElement() const;
00074 
00086     IMPORT_C TPtrC8 Name() const;
00087 
00101     IMPORT_C TPtrC8 Value() const; 
00102 
00131     IMPORT_C void WholeValueCopyL(RBuf8& aBuffer) const;
00132 
00146     IMPORT_C void SetValueL(const TDesC8& aNewValue);
00147 
00163     IMPORT_C void SetEscapedValueL(const TDesC8& aNewValue);
00164 
00175         IMPORT_C void SetValueNoEncL(const TDesC8& aNewValue );
00176 
00177 protected:
00184     inline TXmlEngAttr(void* aInternal);
00185 };
00186 
00187 #include "xmlengattr.inl"
00188 
00189 #endif /* XMLENGINE_ATTR_H_INCLUDED */

Copyright © Nokia Corporation 2001-2007
Back to top