Skip to content

Commit

Permalink
documentation on $.soap inner classes
Browse files Browse the repository at this point in the history
  • Loading branch information
doedje committed Feb 18, 2015
1 parent de0f7f2 commit 674e214
Showing 1 changed file with 34 additions and 30 deletions.
64 changes: 34 additions & 30 deletions doc/classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,58 +11,62 @@ This document is giving an overview of the classes used within $.soap.
SOAPEnvelope
------------

###**constructor:** `new SOAPEnvelope(soapObject);`
###constructor

###**properties:**
`new SOAPEnvelope(soapObject);`

attributes
bodies
headers
prefix
soapConfig
typeof = 'SOAPEnvelope'
###properties

###**methods:**
#####`attributes`
#####`bodies`
#####`headers`
#####'prefix`
#####`soapConfig`
#####`typeof = 'SOAPEnvelope'`

###methods:

#####`addAttribute(name, value)`

SOAPObject
--------------------

###**constructor:** `new SOAPObject(name);`
###**constructor

`new SOAPObject(name);`

Creates a new SOAPObject with _name_

###**properties:**
###properties

attributes
children
name
ns
_parent
value
typeOf = 'SOAPObject'
#####`attributes`
#####`children`
#####`name`
#####`ns`
#####`_parent`
#####`value`
#####`typeOf = 'SOAPObject'`

###**methods:**
###methods

#####addNamespace(name, url)
#####`addNamespace(name, url)`

#####addParameter(name, value)
#####`addParameter(name, value)`

#####appendChild(soapObject)
#####`appendChild(soapObject)`

#####attr(name, value)
#####`attr(name, value)`

#####end()
#####`end()`

#####find(name)
#####`find(name)`

#####hasChildren()
#####`hasChildren()`

#####newChild(name)
#####`newChild(name)`

#####parent()
#####`parent()`

#####toString()
#####`toString()`

#####val(value)
#####`val(value)`

0 comments on commit 674e214

Please sign in to comment.