Author: nadiramra
Date: Fri Aug 5 15:23:00 2011
New Revision: 1154263
URL: http://svn.apache.org/viewvc?rev=1154263&view=rev
Log:
minor - reformatting.
Modified:
axis/axis1/c/trunk/src/soap/ComplexElement.h
Modified: axis/axis1/c/trunk/src/soap/ComplexElement.h
URL:
http://svn.apache.org/viewvc/axis/axis1/c/trunk/src/soap/ComplexElement.h?rev=1154263&r1=1154262&r2=1154263&view=diff
==============================================================================
--- axis/axis1/c/trunk/src/soap/ComplexElement.h (original)
+++ axis/axis1/c/trunk/src/soap/ComplexElement.h Fri Aug 5 15:23:00 2011
@@ -32,9 +32,7 @@ using namespace std;
* @class ComplexElement
* @brief interface for the ComplexElement class.
*
- * @author Roshan Weerasuriya ([email protected], [email protected])
- * @author Samisa Abeysinghe ([email protected])
-*/
+ */
class ComplexElement : public BasicNode
{
@@ -53,8 +51,7 @@ public:
*
* If not found returns NULL.
*/
- IAttribute* getAttribute(AxisChar* pachPrefix, AxisChar* pachURI,
- AxisChar* pachLocalname);
+ IAttribute* getAttribute(AxisChar* pachPrefix, AxisChar* pachURI,
AxisChar* pachLocalname);
/**
* Returns the first Attribute of this node. NOTE: When traversing the
@@ -83,38 +80,38 @@ public:
IAttribute* getCurrentAttribute();
/**
-Â Â Â Â Â * Creates an Attribute and adds it to this Complex Element.
-Â Â Â Â Â *
-Â Â Â Â Â * @param localname The local name of the attribute.
-Â Â Â Â Â * @param prefix The prefix of the attribute.
-Â Â Â Â Â * @param uri The namespace uri of the attribute.
-Â Â Â Â Â * @param value The value of the attribute.
-Â Â Â Â Â *
-Â Â Â Â Â * @return A pointer to the created Attribute will be returned.
-Â Â Â Â Â */
+ * Creates an Attribute and adds it to this Complex Element.
+ *
+ * @param localname The local name of the attribute.
+ * @param prefix The prefix of the attribute.
+ * @param uri The namespace uri of the attribute.
+ * @param value The value of the attribute.
+ *
+ * @return A pointer to the created Attribute will be returned.
+ */
IAttribute* createAttribute(const AxisChar* localname,
const AxisChar* prefix, const AxisChar* uri, const AxisChar* value);
/**
-Â Â Â Â Â * Creates an Attribute and adds it to this Complex Element.
-Â Â Â Â Â *
-Â Â Â Â Â * @param localname The local name of the attribute.
-Â Â Â Â Â * @param prefix The prefix of the attribute.
-Â Â Â Â Â * @param value The value of the attribute.
-Â Â Â Â Â *
-Â Â Â Â Â * @return A pointer to the created Attribute will be returned.
-Â Â Â Â Â */
+ * Creates an Attribute and adds it to this Complex Element.
+ *
+ * @param localname The local name of the attribute.
+ * @param prefix The prefix of the attribute.
+ * @param value The value of the attribute.
+ *
+ * @return A pointer to the created Attribute will be returned.
+ */
IAttribute* createAttribute(const AxisChar* localname,
const AxisChar* prefix, const AxisChar* value);
/**
-Â Â Â Â Â * Creates an Attribute and adds it to this Complex Element.
-Â Â Â Â Â *
-Â Â Â Â Â * @param localname The local name of the attribute.
-Â Â Â Â Â * @param value The value of the attribute.
-Â Â Â Â Â *
-Â Â Â Â Â * @return A pointer to the created Attribute will be returned.
-Â Â Â Â Â */
+ * Creates an Attribute and adds it to this Complex Element.
+ *
+ * @param localname The local name of the attribute.
+ * @param value The value of the attribute.
+ *
+ * @return A pointer to the created Attribute will be returned.
+ */
IAttribute* createAttribute(const AxisChar* localname,
const AxisChar* value);
@@ -261,9 +258,6 @@ private:
bool isSerializable();
std::list<BasicNode*> m_children;
std::list<Attribute*> m_namespaceDecls;
- /**
-Â Â Â Â Â * Used to store the Attributes
-Â Â Â Â Â */
std::list<Attribute*> m_attributes;
AxisChar* m_pachPrefix;
AxisChar* m_pachLocalName;