diff -r e1b950c65cb4 -r 837f303aceeb epoc32/include/xml/dom/xmlengfilecontainer.h
--- a/epoc32/include/xml/dom/xmlengfilecontainer.h	Wed Mar 31 12:27:01 2010 +0100
+++ b/epoc32/include/xml/dom/xmlengfilecontainer.h	Wed Mar 31 12:33:34 2010 +0100
@@ -1,90 +1,72 @@
-/*
-* Copyright (c) 2006-2006 Nokia Corporation and/or its subsidiary(-ies). 
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
-* which accompanies this distribution, and is available
-* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:       All file container data functions
-*
-*/
+// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+// All file container data functions
+// @file
+// @publishedAll
+// @released
+//
 
 
 
+#ifndef XMLENGFILECONTAINER_H
+#define XMLENGFILECONTAINER_H
 
-
-
-
-#ifndef XMLENGINE_FILECONTAINER_H_INCLUDED
-#define XMLENGINE_FILECONTAINER_H_INCLUDED
-
-#include "xmlengdatacontainer.h"
+#include <xml/dom/xmlengdatacontainer.h>
 
 class RFile;
 
+/**
+This class represents data stored as a RFile in the DOM tree.
 
+The RFile container is treated in general as a text node in the DOM tree.  Data
+is stored in the file system referenced by the RFile handle.
 
-/**
-* Instance of TXmlEngFileContainer class represents data stored in RFile in DOM tree
-*
-* RFile container is treated in general as text nodes in DOM tree.
-* Some of the fields in xmlNode structure are reused in order to save memory. 
-* Data is stored in file system referenced to by RFile handle.
-*
-* Sample code for creating filecontainer:
-* @code  
-*      RXmlEngDOMImplementation domImpl;
-*      domImpl.OpenL();        ///< opening DOM implementation object 
-*      RXmlEngDocument iDoc; 
-*      ///< create document element
-*      TXmlEngElement elem = iDoc.CreateDocumentElementL(_L8("doc"));
-*      ///< create file container from file (file1 is an RFile object) and CID equals cid
-*      TXmlEngFileContainer binData = iDoc.CreateFileContainerL(cid, file1);
-*      elem.AppendChildL(binData);      ///< append container to the dom tree       
-*      iDoc.Close();               ///< closing all opened objects
-*      domImpl.Close();
-* @endcode 
-*
-* @lib XmlEngineDOM.lib
-* @since S60 v3.2
+Sample code for creating a file container:
+@code  
+     RXmlEngDOMImplementation domImpl;
+     domImpl.OpenL();        		// opening DOM implementation object 
+     RXmlEngDocument iDoc; 
+     // create document element
+     TXmlEngElement elem = iDoc.CreateDocumentElementL(_L8("doc"));
+     // create file container from file (file1 is an RFile object) and CID equals cid
+     TXmlEngFileContainer binData = iDoc.CreateFileContainerL(cid, file1);
+     elem.AppendChildL(binData);    // append container to the dom tree       
+     iDoc.Close();               	// closing all opened objects
+     domImpl.Close();
+@endcode 
 */
 class TXmlEngFileContainer : public TXmlEngDataContainer
 {
 public:
     /**
-     * Get RFile reference
-     *
-     * @since S60 v3.2
-     * @return RFile reference
-     * 
-     */
+    Gets the RFile reference
+    @return RFile reference
+    */
     IMPORT_C RFile& File() const;
 	
 protected:
-    /**
-     * Default constructor
-	 *
-     * @since S60 v3.1
-     */
+    /** Default constructor */
 	inline TXmlEngFileContainer(); 
 	
     /**
-     * Constructor
-     *
-     * @since S60 v3.1
-     * @param aInternal node pointer
-     */
+    Constructor
+    @param aInternal Node pointer
+    */
 	inline TXmlEngFileContainer(void* aInternal);
 };
 
+#include <xml/dom/xmlengfilecontainer.inl>
 
+#endif // XMLENGFILECONTAINER_H 
 
-#include "xmlengfilecontainer.inl"
-
-#endif /* XMLENGINE_FILECONTAINER_H_INCLUDED */