[Wsf-c-commits] svn commit r29962 - trunk/wsf/cpp/include
nandika at wso2.com
nandika at wso2.com
Thu Jan 29 03:05:01 PST 2009
Author: nandika
Date: Thu Jan 29 03:05:01 2009
New Revision: 29962
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=29962
Log:
spelling mistakes corrected
Modified:
trunk/wsf/cpp/include/AxisObject.h
trunk/wsf/cpp/include/Exception.h
trunk/wsf/cpp/include/NeethiException.h
trunk/wsf/cpp/include/OMElement.h
trunk/wsf/cpp/include/OMException.h
trunk/wsf/cpp/include/OMNode.h
Modified: trunk/wsf/cpp/include/AxisObject.h
URL: http://wso2.org/svn/browse/wso2/trunk/wsf/cpp/include/AxisObject.h?rev=29962&r1=29961&r2=29962&view=diff
==============================================================================
--- trunk/wsf/cpp/include/AxisObject.h (original)
+++ trunk/wsf/cpp/include/AxisObject.h Thu Jan 29 03:05:01 2009
@@ -51,8 +51,7 @@
static axutil_env_t * _env;
/**
- * @var _refCount stores the number of references to
- * this object.
+ * @var _refCount stores the number of references to axutil_env.
*/
static unsigned int _refCount;
Modified: trunk/wsf/cpp/include/Exception.h
URL: http://wso2.org/svn/browse/wso2/trunk/wsf/cpp/include/Exception.h?rev=29962&r1=29961&r2=29962&view=diff
==============================================================================
--- trunk/wsf/cpp/include/Exception.h (original)
+++ trunk/wsf/cpp/include/Exception.h Thu Jan 29 03:05:01 2009
@@ -38,9 +38,9 @@
/**
* @brief class Exception The Exception Class is an abstract base class that can be used
- * to impliment any type of exception. All exception classes used in this
+ * to implement any type of exception. All exception classes used in this
* project are derived from this class. The process method is what does the
- * neccessary processing of the exception that was generated. The others
+ * necessary processing of the exception that was generated. The others
* are methods used for string manipulation.
*/
class Exception
@@ -69,20 +69,20 @@
public:
/**
- * desctructor that can be overriden.
+ * destructor that can be overridden.
*/
virtual WSF_CALL ~Exception();
/**
* Method for doing the required processing.
- * Must be overriden, for an class that can be constructed.
+ * Must be overridden, for an class that can be constructed.
*/
virtual void WSF_CALL process() const = 0;
/**
* Operation for obtaining string representation of the exception
* object. No member fields can be modified within this function.
- * The derived class has the option to override the behaviour.
+ * The derived class has the option to override the behavior.
*/
virtual WSF_CALL operator std::string() const;
Modified: trunk/wsf/cpp/include/NeethiException.h
URL: http://wso2.org/svn/browse/wso2/trunk/wsf/cpp/include/NeethiException.h?rev=29962&r1=29961&r2=29962&view=diff
==============================================================================
--- trunk/wsf/cpp/include/NeethiException.h (original)
+++ trunk/wsf/cpp/include/NeethiException.h Thu Jan 29 03:05:01 2009
@@ -54,7 +54,7 @@
WSF_EXTERN void WSF_CALL process() const;
/**
- * desctructor that can be overriden.
+ * destructor that can be overridden.
*/
virtual WSF_CALL ~NeethiException();
};
Modified: trunk/wsf/cpp/include/OMElement.h
URL: http://wso2.org/svn/browse/wso2/trunk/wsf/cpp/include/OMElement.h?rev=29962&r1=29961&r2=29962&view=diff
==============================================================================
--- trunk/wsf/cpp/include/OMElement.h (original)
+++ trunk/wsf/cpp/include/OMElement.h Thu Jan 29 03:05:01 2009
@@ -117,14 +117,14 @@
/**
* Method to retrieve children of this node.
- * @return childern of this node.
+ * @return children of this node.
*/
WSF_EXTERN virtual std::vector<OMNode *> WSF_CALL getChilderen();
/**
* Method to set children of this node.
* @param children child node array.
- * @return childern of this node.
+ * @return children of this node.
*/
WSF_EXTERN virtual void WSF_CALL setChilderen(std::vector<OMNode *> children);
@@ -158,7 +158,7 @@
/**
* Creates an om element struct.
- * @param localname local name of the elment. cannot be NULL.
+ * @param localname local name of the element. cannot be NULL.
* @param ns namespace of the element. can be NULL.
* @exception OMException an exception is thrown if something goes wrong
* while creating the object.
@@ -167,7 +167,7 @@
/**
* Creates an om element struct.
- * @param localname local name of the elment. cannot be NULL.
+ * @param localname local name of the element. cannot be NULL.
* @exception OMException an exception is thrown if something goes wrong
* while creating the object.
*/
Modified: trunk/wsf/cpp/include/OMException.h
URL: http://wso2.org/svn/browse/wso2/trunk/wsf/cpp/include/OMException.h?rev=29962&r1=29961&r2=29962&view=diff
==============================================================================
--- trunk/wsf/cpp/include/OMException.h (original)
+++ trunk/wsf/cpp/include/OMException.h Thu Jan 29 03:05:01 2009
@@ -1,4 +1,4 @@
-#ifndef OMEXCEPTION_H
+b#ifndef OMEXCEPTION_H
#define OMEXCEPTION_H
#include <WSFDefines.h>
Modified: trunk/wsf/cpp/include/OMNode.h
URL: http://wso2.org/svn/browse/wso2/trunk/wsf/cpp/include/OMNode.h?rev=29962&r1=29961&r2=29962&view=diff
==============================================================================
--- trunk/wsf/cpp/include/OMNode.h (original)
+++ trunk/wsf/cpp/include/OMNode.h Thu Jan 29 03:05:01 2009
@@ -76,7 +76,7 @@
/**
* Indicates whether parser has parsed this information item completely or not
* @param node node struct.
- * @return true if node is completly build
+ * @return true if node is completely build
* false if node is not completed.
*/
bool WSF_CALL isComplete();
@@ -102,7 +102,7 @@
WSF_CALL OMNode();
/**
- * desctructor that can be overriden.
+ * destructor that can be overridden.
*/
virtual WSF_CALL ~OMNode();
More information about the Wsf-c-commits
mailing list