{
    "Titanium.XML.NodeList": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.NodeList.length-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The length of the node list.</p>", 
                "type": "Number", 
                "name": "length"
            }
        ], 
        "description": null, 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.XML.NodeList-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.NodeList.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.NodeList.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.NodeList.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.NodeList.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.NodeList.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.NodeList.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.NodeList.getLength-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.NodeList.length-property.html\">length</a> property.</p>", 
                "name": "getLength"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.NodeList.item-method.index-param", 
                        "optional": false, 
                        "summary": "<p>The index of the node to retrieve. Indexing starts at 0.</p>", 
                        "type": "Number", 
                        "name": "index"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.NodeList.item-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.XML.Node", 
                    "summary": "The node at the index, or `null` if the index is out of bounds."
                }, 
                "examples": [], 
                "summary": "<p>Returns the <a href=\"Titanium.XML.Node-object.html\"><code>Titanium.XML.Node</code></a> object at the specified index.</p>", 
                "name": "item"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.NodeList.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.NodeList.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.NodeList.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.9", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.9", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.9", 
                "name": "ipad"
            }
        ], 
        "examples": [], 
        "summary": "<p>A list of <a href=\"Titanium.XML.Node-object.html\"><code>Titanium.XML.Node</code></a> objects. This conforms to the <a href=\"http://www.w3.org/TR/DOM-Level-2-Core/core.html\">DOM Level 2</a> definition of a DOM NodeList.</p>", 
        "type": "object", 
        "events": [], 
        "name": "Titanium.XML.NodeList"
    }, 
    "Titanium.XML.Entity": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 2, 
                "filename": "Titanium.XML.Entity.ATTRIBUTE_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.Attr-object.html\"><code>Titanium.XML.Attr</code></a></p>", 
                "type": "Number", 
                "name": "ATTRIBUTE_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 4, 
                "filename": "Titanium.XML.Entity.CDATA_SECTION_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a CData section (a type of <a href=\"Titanium.XML.Text-object.html\"><code>Titanium.XML.Text</code></a>)</p>", 
                "type": "Number", 
                "name": "CDATA_SECTION_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 8, 
                "filename": "Titanium.XML.Entity.COMMENT_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <code>Titanium.XML.Comment</code></p>", 
                "type": "Number", 
                "name": "COMMENT_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 11, 
                "filename": "Titanium.XML.Entity.DOCUMENT_FRAGMENT_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <code>Titanium.XML.DocumentFragment</code></p>", 
                "type": "Number", 
                "name": "DOCUMENT_FRAGMENT_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 9, 
                "filename": "Titanium.XML.Entity.DOCUMENT_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.Document-object.html\"><code>Titanium.XML.Document</code></a></p>", 
                "type": "Number", 
                "name": "DOCUMENT_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 10, 
                "filename": "Titanium.XML.Entity.DOCUMENT_TYPE_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.DocumentType-object.html\"><code>Titanium.XML.DocumentType</code></a></p>", 
                "type": "Number", 
                "name": "DOCUMENT_TYPE_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 1, 
                "filename": "Titanium.XML.Entity.ELEMENT_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.Element-object.html\"><code>Titanium.XML.Element</code></a></p>", 
                "type": "Number", 
                "name": "ELEMENT_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 6, 
                "filename": "Titanium.XML.Entity.ENTITY_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.Entity-object.html\"><code>Titanium.XML.Entity</code></a></p>", 
                "type": "Number", 
                "name": "ENTITY_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 5, 
                "filename": "Titanium.XML.Entity.ENTITY_REFERENCE_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is an <a href=\"http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-11C98490\">Entity reference</a> (a type of <a href=\"Titanium.XML.Node-object.html\"><code>Titanium.XML.Node</code></a>)</p>", 
                "type": "Number", 
                "name": "ENTITY_REFERENCE_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 12, 
                "filename": "Titanium.XML.Entity.NOTATION_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.Notation-object.html\"><code>Titanium.XML.Notation</code></a></p>", 
                "type": "Number", 
                "name": "NOTATION_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 7, 
                "filename": "Titanium.XML.Entity.PROCESSING_INSTRUCTION_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.ProcessingInstruction-object.html\"><code>Titanium.XML.ProcessingInstruction</code></a></p>", 
                "type": "Number", 
                "name": "PROCESSING_INSTRUCTION_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "value": 3, 
                "filename": "Titanium.XML.Entity.TEXT_NODE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The value of <nodeType> when this node is a <a href=\"Titanium.XML.Text-object.html\"><code>Titanium.XML.Text</code></a></p>", 
                "type": "Number", 
                "name": "TEXT_NODE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.attributes-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>A map of this node's attributes</p>", 
                "type": "Titanium.XML.NamedNodeMap", 
                "name": "attributes"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.childNodes-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>A <a href=\"Titanium.XML.NodeList-object.html\"><code>Titanium.XML.NodeList</code></a> of this node's children</p>", 
                "type": "Titanium.XML.NodeList", 
                "name": "childNodes"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.firstChild-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>This node's first child</p>", 
                "type": "Titanium.XML.Node", 
                "name": "firstChild"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.lastChild-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>This node's last child</p>", 
                "type": "Titanium.XML.Node", 
                "name": "lastChild"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.localName-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The local part of the qualified name of this node</p>", 
                "type": "String", 
                "name": "localName"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.namespaceURI-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The namespace URI of this node</p>", 
                "type": "String", 
                "name": "namespaceURI"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.nextSibling-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>This node's next sibling</p>", 
                "type": "Titanium.XML.Node", 
                "name": "nextSibling"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.nodeName-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The name of this node</p>", 
                "type": "String", 
                "name": "nodeName"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.nodeType-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>This node's type. One of <ELEMENT_NODE>, <ATTRIBUTE_NODE>, <TEXT_NODE>, <CDATA_SECTION_NODE>, <ENTITY_REFERENCE_NODE>, <ENTITY_NODE>, <PROCESSING_INSTRUCTION_NODE>, <COMMENT_NODE>, <DOCUMENT_NODE>, <DOCUMENT_TYPE_NODE>, <DOCUMENT_FRAGMENT_NODE>, <NOTATION_NODE></p>", 
                "type": "Number", 
                "name": "nodeType"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.nodeValue-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The content (value) of this node</p>", 
                "type": "String", 
                "name": "nodeValue"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.notationName-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>For unparsed entities, the name of the notation for the entity. For parsed entities, this is <code>null</code>.</p>", 
                "type": "String", 
                "name": "notationName"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.ownerDocument-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>This node's owning Document</p>", 
                "type": "Titanium.XML.Document", 
                "name": "ownerDocument"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.parentNode-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>This node's parent node</p>", 
                "type": "Titanium.XML.Node", 
                "name": "parentNode"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.prefix-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The namespace prefix of this node</p>", 
                "type": "String", 
                "name": "prefix"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.previousSibling-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>This node's previous sibling</p>", 
                "type": "Titanium.XML.Node", 
                "name": "previousSibling"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.publicId-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The public identifier associated with the entity, if specified. If the public identifier was not specified, this is <code>null</code>.</p>", 
                "type": "String", 
                "name": "publicId"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.systemId-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The system identifier associated with the entity, if specified. If the system identifier was not specified, this is null.</p>", 
                "type": "String", 
                "name": "systemId"
            }
        ], 
        "description": null, 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.XML.Entity-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.appendChild-method.newChild-param", 
                        "optional": false, 
                        "summary": "<p>The new node to append</p>", 
                        "type": "Titanium.XML.Node", 
                        "name": "newChild"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.appendChild-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.XML.Node", 
                    "summary": "The appended node"
                }, 
                "examples": [], 
                "summary": "<p>Appends the node <code>newChild</code> as a child of this node</p>", 
                "name": "appendChild"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.cloneNode-method.deep-param", 
                        "optional": false, 
                        "summary": "<p>Whether or not to perform a deep copy of this node</p>", 
                        "type": "Boolean", 
                        "name": "deep"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.cloneNode-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.XML.Node", 
                    "summary": "The appended node"
                }, 
                "examples": [], 
                "summary": "<p>Returns a duplicate of this node</p>", 
                "name": "cloneNode"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getAttributes-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.NamedNodeMap"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.attributes-property.html\">attributes</a> property.</p>", 
                "name": "getAttributes"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getChildNodes-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.NodeList"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.childNodes-property.html\">childNodes</a> property.</p>", 
                "name": "getChildNodes"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getFirstChild-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.Node"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.firstChild-property.html\">firstChild</a> property.</p>", 
                "name": "getFirstChild"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getLastChild-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.Node"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.lastChild-property.html\">lastChild</a> property.</p>", 
                "name": "getLastChild"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getLocalName-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.localName-property.html\">localName</a> property.</p>", 
                "name": "getLocalName"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getNamespaceURI-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.namespaceURI-property.html\">namespaceURI</a> property.</p>", 
                "name": "getNamespaceURI"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getNextSibling-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.Node"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.nextSibling-property.html\">nextSibling</a> property.</p>", 
                "name": "getNextSibling"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getNodeName-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.nodeName-property.html\">nodeName</a> property.</p>", 
                "name": "getNodeName"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getNodeType-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.nodeType-property.html\">nodeType</a> property.</p>", 
                "name": "getNodeType"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getNodeValue-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.nodeValue-property.html\">nodeValue</a> property.</p>", 
                "name": "getNodeValue"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getNotationName-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.notationName-property.html\">notationName</a> property.</p>", 
                "name": "getNotationName"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getOwnerDocument-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.Document"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.ownerDocument-property.html\">ownerDocument</a> property.</p>", 
                "name": "getOwnerDocument"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getParentNode-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.Node"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.parentNode-property.html\">parentNode</a> property.</p>", 
                "name": "getParentNode"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getPrefix-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.prefix-property.html\">prefix</a> property.</p>", 
                "name": "getPrefix"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getPreviousSibling-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.XML.Node"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.previousSibling-property.html\">previousSibling</a> property.</p>", 
                "name": "getPreviousSibling"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getPublicId-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.publicId-property.html\">publicId</a> property.</p>", 
                "name": "getPublicId"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.getSystemId-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Entity.systemId-property.html\">systemId</a> property.</p>", 
                "name": "getSystemId"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.hasAttributes-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>Whether or not this node has attributes</p>", 
                "name": "hasAttributes"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.hasChildNodes-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>Whether or not this node has child nodes</p>", 
                "name": "hasChildNodes"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.insertBefore-method.newChild-param", 
                        "optional": false, 
                        "summary": "<p>The node to insert</p>", 
                        "type": "Titanium.XML.Node", 
                        "name": "newChild"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.insertBefore-method.refChild-param", 
                        "optional": false, 
                        "summary": "<p>The node to insert <code>newChild</code> before</p>", 
                        "type": "Titanium.XML.Node", 
                        "name": "refChild"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.insertBefore-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.XML.Node", 
                    "summary": "The inserted node"
                }, 
                "examples": [], 
                "summary": "", 
                "name": "insertBefore"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.isSupported-method.feature-param", 
                        "optional": false, 
                        "summary": "<p>The name of the feature</p>", 
                        "type": "String", 
                        "name": "feature"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.isSupported-method.version-param", 
                        "optional": false, 
                        "summary": "<p>The version number of the feature</p>", 
                        "type": "String", 
                        "name": "version"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.isSupported-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean", 
                    "summary": "Whether or not the feature is supported"
                }, 
                "examples": [], 
                "summary": "<p>Tests whether the DOM implementation supports a specific feature</p>", 
                "name": "isSupported"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.normalize-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Normalizes text and attribute nodes in this node's child hierarchy</p>", 
                "name": "normalize"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.removeChild-method.oldChild-param", 
                        "optional": false, 
                        "summary": "<p>The node to remove</p>", 
                        "type": "Titanium.XML.Node", 
                        "name": "oldChild"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.removeChild-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.XML.Node", 
                    "summary": "The node that was removed"
                }, 
                "examples": [], 
                "summary": "<p>Removes a child node from this node</p>", 
                "name": "removeChild"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.replaceChild-method.newChild-param", 
                        "optional": false, 
                        "summary": "<p>The new node</p>", 
                        "type": "Titanium.XML.Node", 
                        "name": "newChild"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.replaceChild-method.oldChild-param", 
                        "optional": false, 
                        "summary": "<p>The node being replaced</p>", 
                        "type": "Titanium.XML.Node", 
                        "name": "oldChild"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.replaceChild-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Replaces the node <code>oldChild</code> with the node <code>newChild</code></p>", 
                "name": "replaceChild"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Entity.setLocalName-method.localName-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "localName"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Entity.setLocalName-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.XML.Entity.localName-property.html\">localName</a> property.</p>", 
                "name": "setLocalName"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.9", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.9", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.9", 
                "name": "ipad"
            }
        ], 
        "examples": [], 
        "summary": "<p>This interface represents an entity, either parsed or unparsed, in an XML document. Note that this models the entity itself not the entity declaration. The nodeName attribute that is inherited from Node contains the name of the entity. An Entity node does not have any parent. This conforms to the <a href=\"http://www.w3.org/TR/DOM-Level-2-Core/core.html\">DOM Level 2</a> defintion of a DOM Entity.</p>", 
        "type": "object", 
        "events": [], 
        "name": "Titanium.XML.Entity"
    }, 
    "Titanium.Android.NotificationManager": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.DEFAULT_ALL-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Use all default values (where applicable).</p>", 
                "type": "Number", 
                "name": "DEFAULT_ALL"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.DEFAULT_LIGHTS-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Use the default notification lights.</p>", 
                "type": "Number", 
                "name": "DEFAULT_LIGHTS"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.DEFAULT_SOUND-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Use the default notification sound.</p>", 
                "type": "Number", 
                "name": "DEFAULT_SOUND"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.DEFAULT_VIBRATE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Use the default notification vibrate.</p>", 
                "type": "Number", 
                "name": "DEFAULT_VIBRATE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.FLAG_AUTO_CANCEL-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Bit to be bitwise-ored into the flags field that should be set if the notification should be canceled when it is clicked by the user.</p>", 
                "type": "Number", 
                "name": "FLAG_AUTO_CANCEL"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.FLAG_INSISTENT-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Bit to be bitwise-ored into the flags field that if set, the audio will be repeated until the notification is cancelled or the notification window is opened.</p>", 
                "type": "Number", 
                "name": "FLAG_INSISTENT"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.FLAG_NO_CLEAR-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Bit to be bitwise-ored into the flags field that should be set if the notification should not be canceled when the user clicks the Clear all button.</p>", 
                "type": "Number", 
                "name": "FLAG_NO_CLEAR"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.FLAG_ONGOING_EVENT-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Bit to be bitwise-ored into the flags field that should be set if this notification is in reference to something that is ongoing, like a phone call.</p>", 
                "type": "Number", 
                "name": "FLAG_ONGOING_EVENT"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.FLAG_ONLY_ALERT_ONCE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Bit to be bitwise-ored into the flags field that should be set if you want the sound and/or vibration play each time the notification is sent, even if it has not been canceled before that.</p>", 
                "type": "Number", 
                "name": "FLAG_ONLY_ALERT_ONCE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.FLAG_SHOW_LIGHTS-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Bit to be bitwise-ored into the flags field that should be set if you want the LED on for this notification.</p>", 
                "type": "Number", 
                "name": "FLAG_SHOW_LIGHTS"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.STREAM_DEFAULT-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Use this constant as the value for audioStreamType to request that the default stream type for notifications be used.</p>", 
                "type": "Number", 
                "name": "STREAM_DEFAULT"
            }
        ], 
        "description": "<p>The <code>NotificationManager</code> module is a thin wrapper on the Android <a href=\"http://developer.android.com/reference/android/app/NotificationManager.html\">NotificationManager</a> class. </p>\n<p>The constants in this module are derived from the Android <a href=\"http://developer.android.com/reference/android/app/Notification.html\">Notification</a> class.</p>", 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Android.NotificationManager-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.cancel-method.id-param", 
                        "optional": false, 
                        "summary": "<p>The id you assigned to a notification.</p>", 
                        "type": "Number", 
                        "name": "id"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.cancel-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Cancel a previously shown notification.</p>", 
                "name": "cancel"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.cancelAll-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Cancel all previously shown notifications.</p>", 
                "name": "cancelAll"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.notify-method.id-param", 
                        "optional": false, 
                        "summary": "<p>An id that may be used to cancel a shown notification.</p>", 
                        "type": "Number", 
                        "name": "id"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.notify-method.notification-param", 
                        "optional": false, 
                        "summary": "<p>An instance of <a href=\"Titanium.Android.Notification-object.html\"><code>Titanium.Android.Notification</code></a> created with <a href=\"Titanium.Android.createNotification-method.html\"><code>Titanium.Android.createNotification</code></a>.</p>", 
                        "type": "Titanium.Android.Notification", 
                        "name": "notification"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.notify-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Add a persistent notification to the status bar.</p>", 
                "name": "notify"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.NotificationManager.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.NotificationManager.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "1.5", 
                "name": "android"
            }
        ], 
        "objects": [], 
        "examples": [], 
        "summary": "<p>Module to notify users of events that happen.</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.Android.NotificationManager"
    }, 
    "Titanium.Facebook": {
        "properties": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.accessToken-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>OAuth token set after a successful <code>authorize</code>.</p>", 
                "type": "String", 
                "name": "accessToken"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.appid-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>your Facebook application id.  You need to set this for anything to work.</p>", 
                "type": "String", 
                "name": "appid"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.expirationDate-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Time at which the <code>accessToken</code> expires.</p>", 
                "type": "Date", 
                "name": "expirationDate"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.forceDialogAuth-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Set to false to enable \"Single-Sign-On\" in cases where the official Facebook app is on the device.  Default is true, meaning the traditional, dialog-based authentication is used rather than Single-Sign-On.  See <a href=\"http://developers.facebook.com/docs/guides/mobile\">Facebook Mobile Guide</a> for details of their Single-Sign-On schem.</p>", 
                "type": "Boolean", 
                "name": "forceDialogAuth"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.loggedIn-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>returns true if the user has logged in</p>", 
                "type": "Boolean", 
                "name": "loggedIn"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.permissions-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>set/return an array of permissions to request for your app.  Be sure the permissions you want are set before calling <code>authorize</code>.</p>", 
                "type": "Object", 
                "name": "permissions"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.uid-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>the unique user id returned from Facebook.</p>", 
                "type": "String", 
                "name": "uid"
            }
        ], 
        "description": "<p>The Facebook module is used for connecting your application with \nFacebook through the <a href=\"http://developers.facebook.com/docs/reference/api/\">Facebook Graph API</a> \n(see <code>requestWithGraphPath</code>) or the deprecated \n<a href=\"http://developers.facebook.com/docs/reference/rest/\">Facebook REST API</a> (see <code>request</code>).\nDue to how the facebook login process works on iOS, your app will need to have the following \nin your tiapp.xml if you target those platforms:</p>\n<pre><code>&lt;property name=\"ti.facebook.appid\"&gt;your_facebook_app_id_here&lt;/property&gt;\n</code></pre>\n<p>You must still set Ti.Facebook.appid within your app itself to use the facebook module.<br />\nThis property is used only for configuring your app to interface with the facebook \nlogin process.</p>\n<h4>Previous Versions</h4>\n<p>Titanium Mobile SDK 1.6.0 marked a significant change for this module.  Older versions of \nthe module were not compatible with the new Graph API.  Applications written for the \npre-1.6.0 version of this module will <strong>not</strong> work with the 1.6.0 and higher versions.<br />\nNor is the code shown in the examples here backwards-compatible with pre-1.6.0 Titanium \nMobile SDK.</p>", 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Facebook-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.authorize-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Login the user (if not already logged in) and authorize your application.  Be sure to set your desired <code>permissions</code> and your <code>appid</code> before calling this.</p>", 
                "name": "authorize"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.createLoginButton-method.parameters-param", 
                        "optional": false, 
                        "summary": "<p>(Optional) A dictionary object with properties as defined in <a href=\"Titanium.Facebook.LoginButton-object.html\"><code>Titanium.Facebook.LoginButton</code></a>.</p>", 
                        "type": "Dictionary<Titanium.Facebook.LoginButton>", 
                        "name": "parameters"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.createLoginButton-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Facebook.LoginButton"
                }, 
                "examples": [], 
                "summary": "<p>Create and return an instance of <a href=\"Titanium.Facebook.LoginButton-object.html\"><code>Titanium.Facebook.LoginButton</code></a>.</p>", 
                "name": "createLoginButton"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.dialog-method.action-param", 
                        "optional": false, 
                        "summary": "<p>Specifies which dialog to show, such as \"feed\".</p>", 
                        "type": "String", 
                        "name": "action"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.dialog-method.params-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary object for pre-filling some of the dialog's fields.  See example.</p>", 
                        "type": "Object", 
                        "name": "params"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.dialog-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>A callback for when dialog is completed/cancelled.  The callback should accept a single argument which will be filled with a dictionary object concerning call results: items in the dictionary can be \"success\" (boolean), \"error\" (string with the error message), \"cancelled\" (set to true if user cancelled) and \"result\" (the data returned by Facebook.)</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.dialog-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Open a supported Facebook <a href=\"http://developers.facebook.com/docs/reference/dialogs/\">dialog</a>.  \"feed\" is just about the only useful one.</p>", 
                "name": "dialog"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.getAccessToken-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Facebook.accessToken-property.html\">accessToken</a> property.</p>", 
                "name": "getAccessToken"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.getAppid-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Facebook.appid-property.html\">appid</a> property.</p>", 
                "name": "getAppid"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.getExpirationDate-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Date"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Facebook.expirationDate-property.html\">expirationDate</a> property.</p>", 
                "name": "getExpirationDate"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.getForceDialogAuth-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Facebook.forceDialogAuth-property.html\">forceDialogAuth</a> property.</p>", 
                "name": "getForceDialogAuth"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.getLoggedIn-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Facebook.loggedIn-property.html\">loggedIn</a> property.</p>", 
                "name": "getLoggedIn"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.getPermissions-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Object"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Facebook.permissions-property.html\">permissions</a> property.</p>", 
                "name": "getPermissions"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.getUid-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Facebook.uid-property.html\">uid</a> property.</p>", 
                "name": "getUid"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.logout-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Clear the OAuth <code>accessToken</code> and logout the user.</p>", 
                "name": "logout"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.request-method.method-param", 
                        "optional": false, 
                        "summary": "<p>The REST API method to call.</p>", 
                        "type": "String", 
                        "name": "method"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.request-method.params-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary object for setting parameters required by the call, if any.  See examples.</p>", 
                        "type": "Object", 
                        "name": "params"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.request-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>A callback for when call is completed.  The callback should accept a single argument which will be filled with a dictionary object concerning call results: items in the dictionary can be \"success\" (boolean), \"error\" (string with the error message), \"method\" (the REST method call you specified), \"result\" (the data returned by Facebook.)</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.request-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Make a request to the deprecated <a href=\"http://developers.facebook.com/docs/reference/rest/\">Facebook REST API</a>.</p>", 
                "name": "request"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.requestWithGraphPath-method.path-param", 
                        "optional": false, 
                        "summary": "<p>The graph API path to request.  For example, \"me\" requests <a href=\"http://developers.facebook.com/docs/reference/api/user/\">information about the logged-in user</a>.</p>", 
                        "type": "String", 
                        "name": "path"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.requestWithGraphPath-method.params-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary object for setting parameters required by the call, if any.  See examples.</p>", 
                        "type": "Object", 
                        "name": "params"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.requestWithGraphPath-method.httpMethod-param", 
                        "optional": false, 
                        "summary": "<p>The http method (GET/POST/DELETE) to use for the call.</p>", 
                        "type": "String", 
                        "name": "httpMethod"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.requestWithGraphPath-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>A callback for when call is completed.  The callback should accept a single argument which will be filled with a dictionary object concerning call results: items in the dictionary can be \"success\" (boolean), \"error\" (string with the error message), \"path\" (the graph call path you specified), \"result\" (the JSON returned by Facebook.)</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.requestWithGraphPath-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Make a <a href=\"http://developers.facebook.com/docs/reference/api/\">Facebook Graph API</a> request.  If the request requires user authorization, be sure user is already logged-in and your app is authorized.  (You can check <code>loggedIn</code> for that.)</p>", 
                "name": "requestWithGraphPath"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.setAccessToken-method.accessToken-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "accessToken"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.setAccessToken-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Facebook.accessToken-property.html\">accessToken</a> property.</p>", 
                "name": "setAccessToken"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.setAppid-method.appid-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "appid"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.setAppid-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Facebook.appid-property.html\">appid</a> property.</p>", 
                "name": "setAppid"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.setExpirationDate-method.expirationDate-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Date", 
                        "name": "expirationDate"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.setExpirationDate-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Facebook.expirationDate-property.html\">expirationDate</a> property.</p>", 
                "name": "setExpirationDate"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.setForceDialogAuth-method.forceDialogAuth-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "forceDialogAuth"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.setForceDialogAuth-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Facebook.forceDialogAuth-property.html\">forceDialogAuth</a> property.</p>", 
                "name": "setForceDialogAuth"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.setLoggedIn-method.loggedIn-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "loggedIn"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.setLoggedIn-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Facebook.loggedIn-property.html\">loggedIn</a> property.</p>", 
                "name": "setLoggedIn"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.setPermissions-method.permissions-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Object", 
                        "name": "permissions"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.setPermissions-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Facebook.permissions-property.html\">permissions</a> property.</p>", 
                "name": "setPermissions"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.setUid-method.uid-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "uid"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Facebook.setUid-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Facebook.uid-property.html\">uid</a> property.</p>", 
                "name": "setUid"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }
        ], 
        "objects": [
            "Titanium.Facebook.LoginButton"
        ], 
        "examples": [
            {
                "code": "<p>Shows official Facebook dialog for logging in the user and prompting the user to approve your requested permissions.  Listen for the module's \"login\" event to determine success/failure.</p>\n<pre><code>Titanium.Facebook.appid = '[YOUR APPID]';\nTitanium.Facebook.permissions = ['publish_stream']; // Permissions your app needs\nTitanium.Facebook.addEventListener('login', function(e) {\n    if (e.success) {\n        alert('Logged In');\n    } else if (e.error) {\n        alert(e.error);\n    } else if (e.cancelled) {\n        alert(\"Cancelled\");\n    }\n});\nTitanium.Facebook.authorize();\n</code></pre>", 
                "description": "Authorize"
            }, 
            {
                "code": "<p>Logout the user and forget the authorization token.  Listen for the module's \"logout\" event to determine when logout is finished.</p>\n<pre><code>Titanium.Facebook.addEventListener('logout', function(e) {\n    alert('Logged out');\n});\nTitanium.Facebook.logout();\n</code></pre>", 
                "description": "Logout"
            }, 
            {
                "code": "<p>We've provided the Facebook-themed LoginButton which updates its state automatically depending on whether the user is logged-in or not.  I.e., when the user is logged-in, then the button will show \"Logout\", and vice-versa.</p>\n<p>Note that you don't need to set a click listener or anything else on the button.  It \"just works\".  To listen for the actual login and logout events (which are part of the Titanium Facebook module and not specific to the login button), add listeners at the module level as in the example below.</p>\n<pre><code>// Don't forget to set your appid and requested permissions, else the login button\n// won't be effective.\nTitanium.Facebook.appid = '[your appid]';\nTitanium.Facebook.permissions = ['publish_stream'];\nTitanium.Facebook.addEventListener('login', function(e) {\n    if (e.success) {\n        alert('Logged in');\n    }\n});\nTitanium.Facebook.addEventListener('logout', function(e) {\n    alert('Logged out');\n});\n\n// add the button.  Note that it doesn't need a click event or anything.\nTitanium.UI.currentWindow.add(Titanium.Facebook.createLoginButton({ top: 50, style: 'wide' }));\n</code></pre>\n<p>The <code>style:'wide'</code> shows a wide version of the button that displays \"Connect with Facebook\" instead of just \"Connect\".</p>", 
                "description": "Authorize/Logout via the special LoginButton"
            }, 
            {
                "code": "<p>This example makes a call to the \"me\" graph path and displays the results, which will be JSON from Facebook.  It assumes the user is already logged-in (you can check this with <a href=\"Titanium.Facebook.loggedIn-property.html\"><code>Titanium.Facebook.loggedIn</code></a>.)</p>\n<pre><code>Titanium.Facebook.requestWithGraphPath('me', {}, 'GET', function(e) {\n    if (e.success) {\n        alert(e.result);\n    } else if (e.error) {\n        alert(e.error);\n    } else {\n        alert('Unknown response');\n    }\n});\n</code></pre>", 
                "description": "Simple Graph API call"
            }, 
            {
                "code": "<p>This example uses the Graph API to <a href=\"http://developers.facebook.com/docs/reference/api/event/\">create an event</a> in the logged-on user's Facebook account.  This requires the \"create_event\" permission.</p>\n<pre><code>// First make sure this permission exists\nTitanium.Facebook.permissions = ['create_event'];\nTitanium.Facebook.authorize();\n\n// ...\n// ...\n\n// Now create the event after you've confirmed authorize() was successful.\nvar starttime = new Date(2011, 4, 31, 17, 0);\nvar endtime = new Date(2011, 4, 31, 19, 0);\nvar title = \"Barry's Birthday Celebration\";\nvar description = \"Barry will have a great party\";\nvar data = {\n    start_time: JSON.stringify(starttime), // API expects a JSON stringified date\n    end_time: JSON.stringify(endtime),\n    summary: description,\n    name: title\n};\nTitanium.Facebook.requestWithGraphPath('me/events', data, 'POST', function(e) {\n    if (e.success) {\n        alert(\"Success! Returned from FB: \" + e.result);\n    } else {\n        if (e.error) {\n            alert(e.error);\n        } else {\n            alert(\"Unknown result\");\n        }\n    }\n});\n</code></pre>", 
                "description": "Create an Event with Graph API"
            }, 
            {
                "code": "<p>Use the Graph API to set the <a href=\"http://developers.facebook.com/docs/reference/api/status/\">user's Facebook status</a>.  Requires the \"publish_stream\" permissions.</p>\n<pre><code>// First make sure this permission exists\nTitanium.Facebook.permissions = ['publish_stream'];\nTitanium.Facebook.authorize();\n\n// ...\n// ...\n\n// Now create the status message after you've confirmed that authorize() succeeded\nTitanium.Facebook.requestWithGraphPath('me/feed', {message: \"Trying out FB Graph API and it's fun!\"}, \"POST\", function(e) {\n    if (e.success) {\n        alert(\"Success!  From FB: \" + e.result);\n    } else {\n        if (e.error) {\n            alert(e.error);\n        } else {\n            alert(\"Unkown result\");\n        }\n    }\n});\n</code></pre>", 
                "description": "Set user's Facebook status with Graph API"
            }, 
            {
                "code": "<p>This example <a href=\"http://developers.facebook.com/docs/reference/api/photo/\">posts a photo to the user's account</a> using the Graph API.  Another example below shows how to do this with the REST API, if desired.  This requires the \"publish_stream\" permission.</p>\n<pre><code>// First make sure this permission exists\nTitanium.Facebook.permissions = ['publish_stream'];\nTitanium.Facebook.authorize();\n\n// ...\n// ...\n\n// Now post the photo after you've confirmed that authorize() succeeded\nvar f = Ti.Filesystem.getFile('pumpkin.jpg');\nvar blob = f.read();\nvar data = {\n    message: 'This is a pumpkin',\n    picture: blob\n};\nTitanium.Facebook.requestWithGraphPath('me/photos', data, 'POST', function(e){\n    if (e.success) {\n        alert(\"Success!  From FB: \" + e.result);\n    } else {\n        if (e.error) {\n            alert(e.error);\n        } else {\n            alert(\"Unkown result\");\n        }\n    }\n});\n</code></pre>", 
                "description": "Post a photo using the Graph API"
            }, 
            {
                "code": "<p>This example <a href=\"http://developers.facebook.com/docs/reference/rest/photos.upload/\">posts a photo to the user's account</a> using the REST API.  Another example above shows how to do this with the Graph API.  This requires the \"publish_stream\" permission.</p>\n<pre><code>// First make sure this permission exists\nTitanium.Facebook.permissions = ['publish_stream'];\nTitanium.Facebook.authorize();\n\n// ...\n// ...\n\n// Now post the photo after you've confirmed that authorize() succeeded\nvar f = Ti.Filesystem.getFile('pumpkin.jpg');\nvar blob = f.read();\nvar data = {\n    caption: 'This is a pumpkin',\n    picture: blob\n};\nTitanium.Facebook.request('photos.upload', data, function(e){\n    if (e.success) {\n        alert(\"Success!  From FB: \" + e.result);\n    } else {\n        if (e.error) {\n            alert(e.error);\n        } else {\n            alert(\"Unkown result\");\n        }\n    }\n});\n</code></pre>", 
                "description": "Post a photo using the REST API"
            }, 
            {
                "code": "<p>This example shows how to display the <a href=\"http://developers.facebook.com/docs/reference/dialogs/feed/\">official Facebook dialog</a> for making a post to the user's feed.  In this example, we'll prefill some of the feed fields by passing a data dictionary to the dialog() method; this is not required.</p>\n<pre><code>var data = {\n    link: \"http://www.appcelerator.com\",\n    name: \"Appcelerator Titanium Mobile\",\n    message: \"Checkout this cool open source project for creating mobile apps\",\n    caption: \"Appcelerator Titanium Mobile\",\n    picture: \"http://developer.appcelerator.com/assets/img/DEV_titmobile_image.png\",\n    description: \"You've got the ideas, now you've got the power. Titanium translates your hard won web skills into native applications...\"\n};\nTitanium.Facebook.dialog(\"feed\", data, function(e) {\n    if (e.success) {\n        alert(\"Success!  From FB: \" + e.result);\n    } else {\n        if (e.error) {\n            alert(e.error);\n        } else if (e.cancelled) {\n            alert('Cancelled');\n        } else {\n            alert(\"Unkown result\");\n        }\n    }\n});\n</code></pre>", 
                "description": "Show the Facebook Feed Dialog"
            }
        ], 
        "summary": "<p>The top level Facebook module.<br />\n</p>", 
        "type": "module", 
        "events": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.login-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>fired at session login</p>", 
                "properties": [
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.Facebook.login.cancelled-callback-property", 
                        "name": "cancelled", 
                        "summary": "<p>true if the user cancelled the request by closing the dialog</p>"
                    }, 
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.Facebook.login.data-callback-property", 
                        "name": "data", 
                        "summary": "<p>data returned by Facebook when we query for the uid (using graph path \"me\") after successful login.  Data is in JSON format.  Includes information such as user name, locale and gender.</p>"
                    }, 
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.Facebook.login.error-callback-property", 
                        "name": "error", 
                        "summary": "<p>error message if success was false</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.login.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.Facebook.login.success-callback-property", 
                        "name": "success", 
                        "summary": "<p>true if the login was successful</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.login.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.Facebook.login.uid-callback-property", 
                        "name": "uid", 
                        "summary": "<p>the user id returned by Facebook if the login was successful.</p>"
                    }
                ], 
                "name": "login"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Facebook.logout-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>fired at session logout</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.logout.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Facebook.logout.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "logout"
            }
        ], 
        "name": "Titanium.Facebook"
    }, 
    "Titanium.Map": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Map.HYBRID_TYPE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Displays a satellite image of the area with road and road name information layered on top.</p>", 
                "type": "Number", 
                "name": "HYBRID_TYPE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Map.SATELLITE_TYPE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Displays satellite imagery of the area.</p>", 
                "type": "Number", 
                "name": "SATELLITE_TYPE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Map.STANDARD_TYPE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Displays a street map that shows the position of all roads and some road names.</p>", 
                "type": "Number", 
                "name": "STANDARD_TYPE"
            }
        ], 
        "description": null, 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Map-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Map.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.createAnnotation-method.parameters-param", 
                        "optional": false, 
                        "summary": "<p>(Optional) A dictionary object with properties as defined in <a href=\"Titanium.Map.Annotation-object.html\"><code>Titanium.Map.Annotation</code></a>.</p>", 
                        "type": "Dictionary<Titanium.Map.Annotation>", 
                        "name": "parameters"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Map.createAnnotation-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Map.Annotation"
                }, 
                "examples": [], 
                "summary": "<p>Create and return an instance of <a href=\"Titanium.Map.Annotation-object.html\"><code>Titanium.Map.Annotation</code></a>.</p>", 
                "name": "createAnnotation"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.createView-method.parameters-param", 
                        "optional": false, 
                        "summary": "<p>(Optional) A dictionary object with properties as defined in <a href=\"Titanium.Map.View-object.html\"><code>Titanium.Map.View</code></a>.</p>", 
                        "type": "Dictionary<Titanium.Map.View>", 
                        "name": "parameters"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Map.createView-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Map.View"
                }, 
                "examples": [], 
                "summary": "<p>Create and return an instance of <a href=\"Titanium.Map.View-object.html\"><code>Titanium.Map.View</code></a>.</p>", 
                "name": "createView"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Map.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Map.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Map.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }
        ], 
        "objects": [
            "Titanium.Map.View", 
            "Titanium.Map.Annotation"
        ], 
        "examples": [
            {
                "code": "<p>This is a basic map example that uses a custom annotation on the map.</p>\n<pre><code>var mountainView = Titanium.Map.createAnnotation({\n    latitude:37.390749,\n    longitude:-122.081651,\n    title:\"Appcelerator Headquarters\",\n    subtitle:'Mountain View, CA',\n    pincolor:Titanium.Map.ANNOTATION_RED,\n    animate:true,\n    leftButton: '../images/appcelerator_small.png',\n    myid:1 // CUSTOM ATTRIBUTE THAT IS PASSED INTO EVENT OBJECTS\n});\n\nvar mapview = Titanium.Map.createView({\n    mapType: Titanium.Map.STANDARD_TYPE,\n    region: {latitude:33.74511, longitude:-84.38993, \n            latitudeDelta:0.01, longitudeDelta:0.01},\n    animate:true,\n    regionFit:true,\n    userLocation:true,\n    annotations:[mountainView]\n});\n\nwin.add(mapview);\n</code></pre>", 
                "description": "Map Example"
            }
        ], 
        "summary": "<p>The top level Map module.  The Map module is used for creating in-application native maps.</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.Map"
    }, 
    "Titanium.BlobStream": {
        "properties": [], 
        "description": null, 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.BlobStream-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.close-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>closes stream and throws exception on error</p>", 
                "name": "close"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.isReadable-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean", 
                    "summary": "true if stream is readable, false otherwise"
                }, 
                "examples": [], 
                "summary": "<p>Whether stream is readable.</p>", 
                "name": "isReadable"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.isWriteable-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean", 
                    "summary": "true if stream is writeable, false otherwise"
                }, 
                "examples": [], 
                "summary": "<p>Whether stream is writeable.</p>", 
                "name": "isWriteable"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.read-method.buffer-param", 
                        "optional": false, 
                        "summary": "<p>buffer to read stream data into</p>", 
                        "type": "Titanium.Buffer", 
                        "name": "buffer"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.read-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Number", 
                    "summary": "Number of bytes read."
                }, 
                "examples": [], 
                "summary": "<p>reads data from stream into a buffer</p>", 
                "name": "read"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.BlobStream.write-method.buffer-param", 
                        "optional": false, 
                        "summary": "<p>buffer to write to stream</p>", 
                        "type": "Titanium.Buffer", 
                        "name": "buffer"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.BlobStream.write-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.7", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.7", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Number", 
                    "summary": "Number of bytes written."
                }, 
                "examples": [], 
                "summary": "<p>writes data from buffer to stream</p>", 
                "name": "write"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "1.7", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "1.7", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "1.7", 
                "name": "ipad"
            }
        ], 
        "examples": [], 
        "summary": "<p>Wrapper around <code>Titanium.Blob</code> that implements the <code>Titanium.IOStream</code> interface</p>", 
        "type": "object", 
        "events": [], 
        "name": "Titanium.BlobStream"
    }, 
    "Titanium.XML.Notation": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Notation.publicId-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The public identifier of this notation. If the public identifier was not specified, this is <code>null</code>.</p>", 
                "type": "String", 
                "name": "publicId"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.XML.Notation.systemId-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The system identifier of this notation. If the system identifier was not specified, this is <code>null</code>.</p>", 
                "type": "String", 
                "name": "systemId"
            }
        ], 
        "description": null, 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.XML.Notation-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Notation.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Notation.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Notation.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Notation.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Notation.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Notation.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Notation.getPublicId-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Notation.publicId-property.html\">publicId</a> property.</p>", 
                "name": "getPublicId"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.XML.Notation.getSystemId-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.XML.Notation.systemId-property.html\">systemId</a> property.</p>", 
                "name": "getSystemId"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Notation.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.XML.Notation.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.XML.Notation.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.9", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.9", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.9", 
                "name": "ipad"
            }
        ], 
        "examples": [], 
        "summary": "<p>represents a notation declared in the DTD. See <a href=\"http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-5431D1B9\">DOM Level 2 Spec</a></p>", 
        "type": "object", 
        "events": [], 
        "name": "Titanium.XML.Notation"
    }, 
    "Titanium.Media.AudioPlayer": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_BUFFERING-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Audio data is being buffered from the network.</p>", 
                "type": "Number", 
                "name": "STATE_BUFFERING"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_INITIALIZED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Audio playback is being initialized.</p>", 
                "type": "Number", 
                "name": "STATE_INITIALIZED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_PAUSED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Playback is paused.</p>", 
                "type": "Number", 
                "name": "STATE_PAUSED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_PLAYING-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Audio playback is active.</p>", 
                "type": "Number", 
                "name": "STATE_PLAYING"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_STARTING-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Audio playback is starting.</p>", 
                "type": "Number", 
                "name": "STATE_STARTING"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_STOPPED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Audio playback is stopped.</p>", 
                "type": "Number", 
                "name": "STATE_STOPPED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_STOPPING-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Audio playback is stopping.</p>", 
                "type": "Number", 
                "name": "STATE_STOPPING"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_WAITING_FOR_DATA-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Player is waiting for audio data from the network.</p>", 
                "type": "Number", 
                "name": "STATE_WAITING_FOR_DATA"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.STATE_WAITING_FOR_QUEUE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Player is waiting for audio data to fill the queue.</p>", 
                "type": "Number", 
                "name": "STATE_WAITING_FOR_QUEUE"
            }, 
            {
                "description": "<p>Setting <code>allowBackground</code> to <code>true</code> allows the audio to continue playing, for\nexample, if the application is in the background.</p>", 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.allowBackground-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean to indicate if audio should continue playing even if the associated\nAndroid <a href=\"Titanium.Android.Activity-object.html\">Activity</a> is paused.</p>", 
                "type": "Boolean", 
                "availability": "creation", 
                "name": "allowBackground"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.bitRate-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Bit rate of the current playback stream.</p>", 
                "type": "Number", 
                "name": "bitRate"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.bufferSize-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Size of the buffer used for streaming, in bytes.</p>", 
                "type": "Number", 
                "name": "bufferSize"
            }, 
            {
                "description": "<p><code>true</code> if the player is in the initialized state: that is, not playing, paused, \nor waiting for data.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.idle-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean indicating if the player is idle.</p>", 
                "type": "Boolean", 
                "name": "idle"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.paused-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean indicating if audio playback is paused.</p>", 
                "type": "Boolean", 
                "name": "paused"
            }, 
            {
                "description": "<p>Returns <code>false</code> if playback is stopped or paused.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.playing-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean indicating if audio is currently playing.</p>", 
                "type": "Boolean", 
                "name": "playing"
            }, 
            {
                "description": "<p>Returns zero if <code>bitRate</code> has not yet been detected.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.progress-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Current playback progress, in milliseconds.</p>", 
                "type": "Number", 
                "name": "progress"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.state-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Current state of playback, specified using one of the <code>STATE</code> constants defined on this object.</p>", 
                "type": "Number", 
                "name": "state"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.url-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>URL for the audio stream.</p>", 
                "type": "String", 
                "name": "url"
            }, 
            {
                "description": "<p>This property is <code>true</code> if the player is in any of the waiting states, including\nbuffering, starting, waiting for data, and waiting for queue.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.waiting-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean indicating if the playback is waiting for audio data from the network.</p>", 
                "type": "Boolean", 
                "name": "waiting"
            }
        ], 
        "description": "<p>On Android, when you are done playing a given audio file, you must call the \n<a href=\"Titanium.Media.AudioPlayer.release-method.html\">release</a> method to stop buffering audio data and \nrelease associated system resources.</p>\n<p>On iOS, you can control how the audio stream interacts with other system sounds\nby setting <a href=\"Titanium.Media.audioSessionMode-property.html\"><code>Titanium.Media.audioSessionMode</code></a>.</p>\n<p>Use the <a href=\"Titanium.Media.createAudioPlayer-method.html\"><code>Titanium.Media.createAudioPlayer</code></a> method to create an audio player.</p>", 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.Media.AudioPlayer-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getAllowBackground-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Media.AudioPlayer.allowBackground-property.html\">allowBackground</a> property.</p>", 
                "name": "getAllowBackground"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getBitRate-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Media.AudioPlayer.bitRate-property.html\">bitRate</a> property.</p>", 
                "name": "getBitRate"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getBufferSize-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Media.AudioPlayer.bufferSize-property.html\">bufferSize</a> property.</p>", 
                "name": "getBufferSize"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getIdle-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Media.AudioPlayer.idle-property.html\">idle</a> property.</p>", 
                "name": "getIdle"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getPaused-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>Returns the value of the <a href=\"Titanium.Media.AudioPlayer.paused-property.html\">paused</a> property.</p>", 
                "name": "getPaused"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getPlaying-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>Returns the value of the <a href=\"Titanium.Media.AudioPlayer.playing-property.html\">playing</a> property.</p>", 
                "name": "getPlaying"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getProgress-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Media.AudioPlayer.progress-property.html\">progress</a> property.</p>", 
                "name": "getProgress"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getState-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Media.AudioPlayer.state-property.html\">state</a> property.</p>", 
                "name": "getState"
            }, 
            {
                "description": "<p>This method is not exposed on Android. Access the <code>url</code> property directly instead:</p>\n<pre><code>currentURL = myAudioPlayer.url;\n</code></pre>", 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getUrl-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "String"
                }, 
                "examples": [], 
                "summary": "<p>Returns the value of the <a href=\"Titanium.Media.AudioPlayer.url-property.html\">url</a> property.</p>", 
                "name": "getUrl"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.getWaiting-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Media.AudioPlayer.waiting-property.html\">waiting</a> property.</p>", 
                "name": "getWaiting"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.isPaused-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>Returns the value of the <a href=\"Titanium.Media.AudioPlayer.paused-property.html\">paused</a> property.</p>", 
                "name": "isPaused"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.isPlaying-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>Returns the value of the <a href=\"Titanium.Media.AudioPlayer.playing-property.html\">playing</a> property.</p>", 
                "name": "isPlaying"
            }, 
            {
                "description": "<p>On iOS, the <code>pause</code> call operates as a toggle. If the stream is already paused,\ncalling <code>pause</code> again resumes playing the stream.</p>\n<p>On Android, the <code>pause</code> call does nothing if the stream is already paused.</p>\n<p>On both platforms, calling <a href=\"Titanium.Media.AudioPlayer.start-method.html\">start</a> on a paused\nstream resumes play.</p>", 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.pause-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Pauses audio playback.</p>", 
                "name": "pause"
            }, 
            {
                "description": "<p>This method is identical to <a href=\"Titanium.Media.AudioPlayer.start-method.html\">start</a>.</p>", 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.play-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Starts or resumes audio playback.</p>", 
                "name": "play"
            }, 
            {
                "description": "<p>On Android, this method should be called when you are done streaming a given\naudio object, to release underlying resources, including buffered data.</p>", 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.release-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Stops buffering audio data and releases audio resources.</p>", 
                "name": "release"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.setBitRate-method.bitRate-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "bitRate"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.setBitRate-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Media.AudioPlayer.bitRate-property.html\">bitRate</a> property.</p>", 
                "name": "setBitRate"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.setBufferSize-method.bufferSize-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "bufferSize"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.setBufferSize-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Media.AudioPlayer.bufferSize-property.html\">bufferSize</a> property.</p>", 
                "name": "setBufferSize"
            }, 
            {
                "description": "<p>On iOS, this method can be used to pause and unpause playback. For portability,\nit is preferable to use the <a href=\"Titanium.Media.AudioPlayer.pause-method.html\">pause</a> and \n<a href=\"Titanium.Media.AudioPlayer.start-method.html\">start</a> methods instead.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.setPaused-method.paused-param", 
                        "optional": false, 
                        "summary": "<p>Pass <code>true</code> to pause the current playback temporarily, <code>false</code> to unpause it.</p>", 
                        "type": "Boolean", 
                        "name": "paused"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.setPaused-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Media.AudioPlayer.paused-property.html\">paused</a> property.</p>", 
                "name": "setPaused"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.setUrl-method.url-param", 
                        "optional": false, 
                        "summary": "<p>URL to stream audio from.</p>", 
                        "type": "String", 
                        "name": "url"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.setUrl-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Media.AudioPlayer.url-property.html\">url</a> property.</p>", 
                "name": "setUrl"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.start-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Starts or resumes audio playback.</p>", 
                "name": "start"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.stateDescription-method.state-param", 
                        "optional": false, 
                        "summary": "<p>State value to convert.</p>", 
                        "type": "Number", 
                        "name": "state"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.stateDescription-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "String"
                }, 
                "examples": [], 
                "summary": "<p>Converts a <a href=\"Titanium.Media.AudioPlayer.state-property.html\">state</a> value into a text description\nsuitable for display.</p>", 
                "name": "stateDescription"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.stop-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Stops audio playback.</p>", 
                "name": "stop"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.9", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.9", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.9", 
                "name": "ipad"
            }
        ], 
        "examples": [
            {
                "code": "<p>The following example demonstrates using the <code>AudioPlayer</code> object to stream audio.</p>\n<pre><code>var win = Titanium.UI.createWindow({  \n    title:'Audio Test',\n    backgroundColor:'#fff',\n    layout: 'vertical'\n});\n\nvar startStopButton = Titanium.UI.createButton({\n    title:'Start/Stop Streaming',\n    top:10,\n    width:200,\n    height:40\n});\n\nvar pauseResumeButton = Titanium.UI.createButton({\n    title:'Pause/Resume Streaming',\n    top:10,\n    width:200,\n    height:40,\n    enabled:false\n});\n\nwin.add(startStopButton);\nwin.add(pauseResumeButton);\n\n// allowBackground: true on Android allows the \n// player to keep playing when the app is in the \n// background.\nvar audioPlayer = Ti.Media.createAudioPlayer({ \n    url: 'www.example.com/podcast.mp3',\n    allowBackground: true\n});\n\nstartStopButton.addEventListener('click',function() {\n    // When paused, playing returns false.\n    // If both are false, playback is stopped.\n    if (audioPlayer.playing || audioPlayer.paused)\n    {\n        audioPlayer.stop();\n        pauseResumeButton.enabled = false;\n        if (Ti.Platform.name === 'android')\n        { \n            audioPlayer.release();\n        }   \n    }\n    else\n    {\n        audioPlayer.start();\n        pauseResumeButton.enabled = true;\n    }\n});\n\npauseResumeButton.addEventListener('click', function() {\n    if (audioPlayer.paused) {\n        audioPlayer.start();\n    }\n    else {\n        audioPlayer.pause();\n    }\n});\n\naudioPlayer.addEventListener('progress',function(e) {\n    Ti.API.info('Time Played: ' + Math.round(e.progress) + ' milliseconds');\n});\n\naudioPlayer.addEventListener('change',function(e)\n{\n    Ti.API.info('State: ' + e.description + ' (' + e.state + ')');\n});\n\nwin.addEventListener('close',function() {\n    audioPlayer.stop();\n    if (Ti.Platform.osname === 'android')\n    { \n        audioPlayer.release();\n    }\n});\n\nwin.open();\n</code></pre>", 
                "description": "Audio Streaming"
            }
        ], 
        "summary": "<p>An audio player object used for streaming audio to the device, and low-level control of the audio playback.</p>", 
        "type": "object", 
        "events": [
            {
                "description": "<p>This event can be generated by programmatic events, such as pausing or stopping the audio,\nand also by external events, such as the current state of network buffering.</p>", 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.change-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the state of the playback changes.</p>", 
                "properties": [
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.Media.AudioPlayer.change.description-callback-property", 
                        "name": "description", 
                        "summary": "<p>Text description of the state of playback.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.change.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.change.state-callback-property", 
                        "summary": "<p>Current state of playback, specified using one of the <code>STATE</code> constants defined on this object.</p>", 
                        "type": "Number", 
                        "name": "state"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.change.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "change"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Media.AudioPlayer.progress-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.9", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.9", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.9", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired once per second with the current progress during playback.</p>", 
                "properties": [
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.Media.AudioPlayer.progress.progress-callback-property", 
                        "name": "progress", 
                        "summary": "<p>Current progress, in milliseconds.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.progress.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.AudioPlayer.progress.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "progress"
            }
        ], 
        "name": "Titanium.Media.AudioPlayer"
    }, 
    "Titanium.Network": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.INADDR_ANY-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Special hostname value for listening sockets, representing all\nlocally available network interfaces.</p>", 
                "type": "String", 
                "name": "INADDR_ANY"
            }, 
            {
                "description": "<p>This network type is only used by the Mobile Web platform, when the application\nis running in a desktop browser attached to a LAN.</p>\n<p>This constant is also a possible value for the <code>networkType</code> property of the \n<a href=\"Titanium.Network.change-event.html\">change</a> event.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NETWORK_LAN-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>A <a href=\"Titanium.Network.networkType-property.html\">networkType</a> value indicating that the device is\ncommunicating over a local-area network.</p>", 
                "type": "Number", 
                "name": "NETWORK_LAN"
            }, 
            {
                "description": "<p>This constant is also a possible value for the <code>networkType</code> property of the \n<a href=\"Titanium.Network.change-event.html\">change</a> event.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NETWORK_MOBILE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>A <a href=\"Titanium.Network.networkType-property.html\">networkType</a> value indicating that the device is\ncommunicating over a mobile network.</p>", 
                "type": "Number", 
                "name": "NETWORK_MOBILE"
            }, 
            {
                "description": "<p>This constant is also a possible value for the <code>networkType</code> property of the \n<a href=\"Titanium.Network.change-event.html\">change</a> event.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NETWORK_NONE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>A <a href=\"Titanium.Network.networkType-property.html\">networkType</a> value indicating that no \nnetwork is available.</p>", 
                "type": "Number", 
                "name": "NETWORK_NONE"
            }, 
            {
                "description": "<p>This constant is also a possible value for the <code>networkType</code> property of the \n<a href=\"Titanium.Network.change-event.html\">change</a> event.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NETWORK_UNKNOWN-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>A <a href=\"Titanium.Network.networkType-property.html\">networkType</a> value indicating that the<br />\ncurrent network type is unknown.</p>", 
                "type": "Number", 
                "name": "NETWORK_UNKNOWN"
            }, 
            {
                "description": "<p>This constant is also a possible value for the <code>networkType</code> property of the \n<a href=\"Titanium.Network.change-event.html\">change</a> event.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NETWORK_WIFI-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>A <a href=\"Titanium.Network.networkType-property.html\">networkType</a> value indicating that the<br />\ndevice is communicating over a WiFi network.</p>", 
                "type": "Number", 
                "name": "NETWORK_WIFI"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NOTIFICATION_TYPE_ALERT-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value for an Alert style push notification.</p>", 
                "type": "Number", 
                "name": "NOTIFICATION_TYPE_ALERT"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NOTIFICATION_TYPE_BADGE-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value for a Badge style push notification.</p>", 
                "type": "Number", 
                "name": "NOTIFICATION_TYPE_BADGE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.NOTIFICATION_TYPE_SOUND-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value for a Sound style push notification.</p>", 
                "type": "Number", 
                "name": "NOTIFICATION_TYPE_SOUND"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.READ_MODE-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value specifying read-only mode for sockets.</p>", 
                "type": "Number", 
                "name": "READ_MODE"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.READ_WRITE_MODE-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value specifying read-write mode for sockets.</p>", 
                "type": "Number", 
                "name": "READ_WRITE_MODE"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>\n<p>See <a href=\"Titanium.Network.Socket-module.html\"><code>Titanium.Network.Socket</code></a> for constants used with\n<a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a> sockets.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.SOCKET_CLOSED-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value representing a socket in the CLOSED state.</p>", 
                "type": "Number", 
                "name": "SOCKET_CLOSED"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>\n<p>See <a href=\"Titanium.Network.Socket-module.html\"><code>Titanium.Network.Socket</code></a> for constants used with\n<a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a> sockets.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.SOCKET_CONNECTED-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value representing a socket in the CONNECTED state.</p>", 
                "type": "Number", 
                "name": "SOCKET_CONNECTED"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>\n<p>See <a href=\"Titanium.Network.Socket-module.html\"><code>Titanium.Network.Socket</code></a> for constants used with\n<a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a> sockets.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.SOCKET_ERROR-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value representing a socket in the ERROR state.</p>", 
                "type": "Number", 
                "name": "SOCKET_ERROR"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>\n<p>See <a href=\"Titanium.Network.Socket-module.html\"><code>Titanium.Network.Socket</code></a> for constants used with\n<a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a> sockets.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.SOCKET_INITIALIZED-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value representing a socket in the INITIALIZED state.</p>", 
                "type": "Number", 
                "name": "SOCKET_INITIALIZED"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>\n<p>See <a href=\"Titanium.Network.Socket-module.html\"><code>Titanium.Network.Socket</code></a> for constants used with\n<a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a> sockets.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.SOCKET_LISTENING-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value representing a socket in the LISTENING state.</p>", 
                "type": "Number", 
                "name": "SOCKET_LISTENING"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.TLS_VERSION_1_0-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.8.0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.8.0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value specifying TLS version 1.0 for SSL.</p>", 
                "type": "Number", 
                "name": "TLS_VERSION_1_0"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.TLS_VERSION_1_1-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.8.0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.8.0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value specifying TLS version 1.1 for SSL.</p>", 
                "type": "Number", 
                "name": "TLS_VERSION_1_1"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.TLS_VERSION_1_2-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.8.0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.8.0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value specifying TLS version 1.2 for SSL.</p>", 
                "type": "Number", 
                "name": "TLS_VERSION_1_2"
            }, 
            {
                "description": "<p>Used with the deprecated <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> only.</p>", 
                "permission": "read-only", 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.WRITE_MODE-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant value specifying write-only mode for sockets.</p>", 
                "type": "Number", 
                "name": "WRITE_MODE"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Network.address-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The IP address of the device's WiFi network interface.</p>", 
                "type": "String", 
                "name": "address"
            }, 
            {
                "description": "<p>The URL to connect to is passed in as the only function argument, and the function \nis expected to return a URL. The function should return <code>null</code> if an error occurs, \nwhich will cancel the HTTP request. </p>\n<p>This function allows URLs to be formatted for use with the application's proxy to \nget around cross domain issues.</p>", 
                "deprecated": null, 
                "filename": "Titanium.Network.httpURLFormatter-property", 
                "platforms": [
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>User-defined function that is called everytime HTTPClient connects to a remote resource.</p>", 
                "type": "Callback<String>", 
                "name": "httpURLFormatter"
            }, 
            {
                "description": "<p>One of the <code>NETWORK</code> constants defined in <a href=\"Titanium.Network-module.html\"><code>Titanium.Network</code></a>.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.networkType-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Network type value as a constant.</p>", 
                "type": "Number", 
                "name": "networkType"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.networkTypeName-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Network type as a String. Returns one of <code>NONE</code>, <code>WIFI</code>, <code>LAN</code>, <code>MOBILE</code>, or <code>UNKNOWN</code>.</p>", 
                "type": "String", 
                "name": "networkTypeName"
            }, 
            {
                "description": "<p>The <code>online</code> property is <code>true</code> if the device can currently reach the Internet\nusing either WiFi, mobile network or LAN.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.online-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean value indicating if the device can reach the Internet.</p>", 
                "type": "Boolean", 
                "name": "online"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.remoteDeviceUUID-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Remote device UUID if the device is registered with the Apple Push Notification\nService, or null if it is not registered.</p>", 
                "type": "String", 
                "name": "remoteDeviceUUID"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.remoteNotificationTypes-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of push notification type constants enabled for the application.</p>", 
                "type": "Array<Number>", 
                "name": "remoteNotificationTypes"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Network.remoteNotificationsEnabled-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Indicates whether push  notifications have been enabled using \n<a href=\"Titanium.Network.registerForPushNotifications-method.html\">registerForPushNotifications</a>.</p>", 
                "type": "Boolean", 
                "name": "remoteNotificationsEnabled"
            }
        ], 
        "description": "<p>The <code>Network</code> module is used to access networking related functionality.</p>\n<p>For TCP sockets, see <a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a>.</p>\n<p>The legacy <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a> object is still required\nby the <a href=\"Titanium.Network.BonjourBrowser-object.html\">BonjourBrowser</a> and\n<a href=\"Titanium.Network.BonjourService-object.html\">BonjourService</a> objects.</p>\n<p>For all other socket needs, use <a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a>.</p>", 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Network-module", 
        "methods": [
            {
                "description": "<p>This legacy method adds a connectivity listener to listen for network changes.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.addConnectivityListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke upon network connectivity changes.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": {
                    "removed": "1.9.0", 
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.addConnectivityListener-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Use the <a href=\"Titanium.Network.change-event.html\">change</a> event to monitor connectivity changes.</p>", 
                "name": "addConnectivityListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createBonjourBrowser-method.serviceType-param", 
                        "optional": false, 
                        "summary": "<p>Service to search for, must include the protocol type suffix (._tcp).</p>", 
                        "type": "String", 
                        "name": "serviceType"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createBonjourBrowser-method.domain-param", 
                        "optional": false, 
                        "summary": "<p>Bonjour service domain to conduct the search in.</p>", 
                        "type": "String", 
                        "name": "domain"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createBonjourBrowser-method.parameters-param", 
                        "type": "Dictionary<Titanium.Network.BonjourBrowser>", 
                        "summary": "<p>A dictionary object of properties defined in <a href=\"Titanium.Network.BonjourBrowser-object.html\"><code>Titanium.Network.BonjourBrowser</code></a>.</p>", 
                        "optional": true, 
                        "name": "parameters"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.createBonjourBrowser-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Network.BonjourBrowser"
                }, 
                "examples": [], 
                "summary": "<p>Creates and returns a <code>BonjourBrowser</code> object.</p>", 
                "name": "createBonjourBrowser"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createBonjourService-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the service. Must be a unique identifier for this service type and domain.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createBonjourService-method.type-param", 
                        "optional": false, 
                        "summary": "<p>Type of service.  Must include the protocol identifier (._tcp).</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createBonjourService-method.domain-param", 
                        "optional": false, 
                        "summary": "<p>Domain to publish the service in.</p>", 
                        "type": "String", 
                        "name": "domain"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createBonjourService-method.parameters-param", 
                        "type": "Dictionary<Titanium.Network.BonjourService>", 
                        "summary": "<p>Dictionary object of properties defined in <a href=\"Titanium.Network.BonjourService-object.html\"><code>Titanium.Network.BonjourService</code></a>.</p>", 
                        "optional": true, 
                        "name": "parameters"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.createBonjourService-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Network.BonjourService"
                }, 
                "examples": [], 
                "summary": "<p>Creates and returns a <code>BonjourService</code> object.</p>", 
                "name": "createBonjourService"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createHTTPClient-method.parameters-param", 
                        "optional": false, 
                        "summary": "<p>(Optional) A dictionary object with properties as defined in <a href=\"Titanium.Network.HTTPClient-object.html\"><code>Titanium.Network.HTTPClient</code></a>.</p>", 
                        "type": "Dictionary<Titanium.Network.HTTPClient>", 
                        "name": "parameters"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.createHTTPClient-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Network.HTTPClient"
                }, 
                "examples": [], 
                "summary": "<p>Create and return an instance of <a href=\"Titanium.Network.HTTPClient-object.html\"><code>Titanium.Network.HTTPClient</code></a>.</p>", 
                "name": "createHTTPClient"
            }, 
            {
                "description": "<p>Legacy method to create and return an instance of <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a>.</p>\n<p>Note that <code>TCPSocket</code> is still used with the Bonjour services. For other uses,\nsee <a href=\"Titanium.Network.Socket.TCP-object.html\"><code>Titanium.Network.Socket.TCP</code></a>.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createTCPSocket-method.hostName-param", 
                        "optional": false, 
                        "summary": "<p>Host name to connect to/listen on.</p>", 
                        "type": "String", 
                        "name": "hostName"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createTCPSocket-method.port-param", 
                        "optional": false, 
                        "summary": "<p>Port for the socket.</p>", 
                        "type": "Number", 
                        "name": "port"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createTCPSocket-method.mode-param", 
                        "optional": false, 
                        "summary": "<p>Socket's mode; one of <a href=\"Titanium.Network.READ_MODE-property.html\"><code>Titanium.Network.READ_MODE</code></a>, <a href=\"Titanium.Network.WRITE_MODE-property.html\"><code>Titanium.Network.WRITE_MODE</code></a>, \n<a href=\"Titanium.Network.READ_WRITE_MODE-property.html\"><code>Titanium.Network.READ_WRITE_MODE</code></a>.</p>", 
                        "type": "Number", 
                        "name": "mode"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.createTCPSocket-method.parameters-param", 
                        "optional": false, 
                        "summary": "<p>Dictionary object with properties defined in <a href=\"Titanium.Network.TCPSocket-object.html\"><code>Titanium.Network.TCPSocket</code></a>.</p>", 
                        "type": "Dictionary<Titanium.Network.TCPSocket>", 
                        "name": "parameters"
                    }
                ], 
                "deprecated": {
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.createTCPSocket-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Network.TCPSocket"
                }, 
                "examples": [], 
                "summary": "<p>Use <a href=\"Titanium.Network.Socket.createTCP-method.html\"><code>Titanium.Network.Socket.createTCP</code></a> instead.</p>", 
                "name": "createTCPSocket"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.decodeURIComponent-method.value-param", 
                        "optional": false, 
                        "summary": "<p>URI encoded input value to be decoded.</p>", 
                        "type": "String", 
                        "name": "value"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.decodeURIComponent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "String"
                }, 
                "examples": [], 
                "summary": "<p>Returns a decoded version of a URI encoded value.</p>", 
                "name": "decodeURIComponent"
            }, 
            {
                "description": "<p>On iOS, this also escapes the following characters, which are allowed in a \nURL but may not be allowed or desirable inside a path component:</p>\n<pre><code>!*'();:@+$,/?%#[]=&amp;\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.encodeURIComponent-method.value-param", 
                        "optional": false, 
                        "summary": "<p>Input value to be encoded.</p>", 
                        "type": "String", 
                        "name": "value"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.encodeURIComponent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "String"
                }, 
                "examples": [], 
                "summary": "<p>Returns a URI encoded version of the specified URI component.</p>", 
                "name": "encodeURIComponent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getAddress-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.address-property.html\">address</a> property.</p>", 
                "name": "getAddress"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getHttpURLFormatter-method", 
                "platforms": [
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Callback<String>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.httpURLFormatter-property.html\">httpURLFormatter</a> property.</p>", 
                "name": "getHttpURLFormatter"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getNetworkType-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.networkType-property.html\">networkType</a> property.</p>", 
                "name": "getNetworkType"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getNetworkTypeName-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.networkTypeName-property.html\">networkTypeName</a> property.</p>", 
                "name": "getNetworkTypeName"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getOnline-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.online-property.html\">online</a> property.</p>", 
                "name": "getOnline"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getRemoteDeviceUUID-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.remoteDeviceUUID-property.html\">remoteDeviceUUID</a> property.</p>", 
                "name": "getRemoteDeviceUUID"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getRemoteNotificationTypes-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Number>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.remoteNotificationTypes-property.html\">remoteNotificationTypes</a> property.</p>", 
                "name": "getRemoteNotificationTypes"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.getRemoteNotificationsEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Network.remoteNotificationsEnabled-property.html\">remoteNotificationsEnabled</a> property.</p>", 
                "name": "getRemoteNotificationsEnabled"
            }, 
            {
                "description": "<p>This method should be called at application startup.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.registerForPushNotifications-method.config-param", 
                        "optional": false, 
                        "summary": "<p>Dictionary specifying push-notification related options.</p>", 
                        "type": "PushNotificationConfig", 
                        "name": "config"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.registerForPushNotifications-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Registers for push notifications with the Apple Push Notification Service.</p>", 
                "name": "registerForPushNotifications"
            }, 
            {
                "description": "<p>This legacy method removes a connectivity listener.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.removeConnectivityListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": {
                    "removed": "1.9.0", 
                    "since": "1.7.0"
                }, 
                "filename": "Titanium.Network.removeConnectivityListener-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Use the <a href=\"Titanium.Network.change-event.html\">change</a> event to monitor connectivity changes.</p>", 
                "name": "removeConnectivityListener"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.setAddress-method.address-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "address"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.setAddress-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Network.address-property.html\">address</a> property.</p>", 
                "name": "setAddress"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.setHttpURLFormatter-method.httpURLFormatter-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Callback<String>", 
                        "name": "httpURLFormatter"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Network.setHttpURLFormatter-method", 
                "platforms": [
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.Network.httpURLFormatter-property.html\">httpURLFormatter</a> property.</p>", 
                "name": "setHttpURLFormatter"
            }, 
            {
                "description": "<p>Per Apple's documentation, it is rarely necessary to call this method. See:\n<a href=\"http://developer.apple.com/library/IOs/#documentation/UIKit/Reference/UIApplication_Class/Reference/Reference.html#//apple_ref/occ/instm/UIApplication/unregisterForRemoteNotifications\">unregisterForRemoteNotifications in the UIApplication Class\nReference</a> </p>\n<p>For example, calling this method would be required if a new version of \nyour application no longer supports push notifications.</p>", 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Network.unregisterForPushNotifications-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Unregisters the application for push notifications.</p>", 
                "name": "unregisterForPushNotifications"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.1", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.1", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.1", 
                "name": "ipad"
            }, 
            {
                "pretty_name": "Mobile Web", 
                "since": "1.8", 
                "name": "mobileweb"
            }
        ], 
        "objects": [
            "Titanium.Network.BonjourService", 
            "Titanium.Network.TCPSocket", 
            "Titanium.Network.BonjourBrowser", 
            "Titanium.Network.HTTPClient"
        ], 
        "examples": [], 
        "summary": "<p>The top level network module.</p>", 
        "type": "module", 
        "events": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Network.change-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "summary": "<p>Fired when network connectivity changes.</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.change.networkType-callback-property", 
                        "summary": "<p>New network type, one of the <code>NETWORK</code> constants defined in <a href=\"Titanium.Network-module.html\"><code>Titanium.Network</code></a>.</p>", 
                        "type": "Number", 
                        "name": "networkType"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.change.networkTypeName-callback-property", 
                        "summary": "<p>New network type as a string.</p>", 
                        "type": "String", 
                        "name": "networkTypeName"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.change.online-callback-property", 
                        "summary": "<p>Boolean to indicate if the device is online.</p>", 
                        "type": "Boolean", 
                        "name": "online"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.change.reason-callback-property", 
                        "summary": "<p>Human-readable text describing the reason for the change.</p>", 
                        "type": "String", 
                        "name": "reason"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.change.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Network.change.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "change"
            }
        ], 
        "name": "Titanium.Network"
    }, 
    "Titanium.Module": {
        "properties": [], 
        "description": null, 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Module-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Module.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Module.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Module.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Module.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Module.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Module.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Module.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Module.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Module.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.1", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.1", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.1", 
                "name": "ipad"
            }
        ], 
        "objects": [], 
        "examples": [], 
        "summary": "<p>The base for all module types</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.Module"
    }, 
    "BarItemType": {
        "properties": [
            {
                "description": null, 
                "default": true, 
                "deprecated": null, 
                "filename": "BarItemType.enabled-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether the button is enabled initially.</p>", 
                "type": "Boolean", 
                "name": "enabled"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "BarItemType.image-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Button icon. If specified, takes precedence over <code>title</code>.</p>", 
                "type": [
                    "String", 
                    "Titanium.Blob", 
                    "Titanium.Filesystem.File"
                ], 
                "name": "image"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "BarItemType.title-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Button title, used if no <code>image</code> is specified.</p>", 
                "type": "String", 
                "name": "title"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "BarItemType.width-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Width for this button.</p>", 
                "type": "Number", 
                "name": "width"
            }
        ], 
        "description": "<p>A button bar or tabbed bar item can have an image or a title, but not both.\nButtons with images and buttons with text can be mixed in the same bar, however.</p>\n<p>If both <code>image</code> and <code>title</code> properties are specified for a given item, the \n<code>image</code> property takes precedence and the <code>title</code> property is ignored.</p>", 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "BarItemType-object", 
        "methods": [], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }, 
            {
                "pretty_name": "Mobile Web", 
                "since": "1.8", 
                "name": "mobileweb"
            }
        ], 
        "examples": [], 
        "summary": "<p>Object describing a button bar or tabbed bar item.</p>", 
        "type": "object", 
        "events": [], 
        "name": "BarItemType"
    }, 
    "Titanium.Media.Android": {
        "properties": [], 
        "description": null, 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Media.Android-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.Android.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7.0", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.Android.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7.0", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.Android.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7.0", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.scanMediaFiles-method.paths-param", 
                        "optional": false, 
                        "summary": "<p>Array of paths to the files you want to be scanned.</p>", 
                        "type": "Array<String>", 
                        "name": "paths"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.scanMediaFiles-method.mimeTypes-param", 
                        "optional": false, 
                        "summary": "<p>Array of mime types for the files in the paths parameter.  Can be null, in which case the mime type will be inferred at scan time.</p>", 
                        "type": "Array<String>", 
                        "name": "mimeTypes"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.scanMediaFiles-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>A function that will be called when each file is finished being scanned.  Check the callback argument's \"path\" and \"uri\" properties to see the path that was scanned and the resulting content uri.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.Android.scanMediaFiles-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7.0", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Use the <a href=\"http://developer.android.com/reference/android/media/MediaScannerConnection.html\">Android MediaScannerConnection</a> to request immediate scan of particular files so that they become available to the appropriate media providers (Gallery, etc.).</p>", 
                "name": "scanMediaFiles"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.setSystemWallpaper-method.image-param", 
                        "optional": false, 
                        "summary": "<p>Image blob such as what can be retrieved via callbacks for <a href=\"Titanium.Media.openPhotoGallery-method.html\"><code>Titanium.Media.openPhotoGallery</code></a> and <a href=\"Titanium.Media.showCamera-method.html\"><code>Titanium.Media.showCamera</code></a>, as well as from the return value of <a href=\"Titanium.Filesystem.File.read-method.html\"><code>Titanium.Filesystem.File.read</code></a>.</p>", 
                        "type": "Object", 
                        "name": "image"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Media.Android.setSystemWallpaper-method.scale-param", 
                        "optional": false, 
                        "summary": "<p>Set to true if you want the image to be scaled with respect to the system wallpaper desired width, or false to leave it as-is.</p>", 
                        "type": "Boolean", 
                        "name": "scale"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Media.Android.setSystemWallpaper-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.7.0", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Set the system homescreen wallpaper</p>", 
                "name": "setSystemWallpaper"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "1.7.0", 
                "name": "android"
            }
        ], 
        "objects": [], 
        "examples": [], 
        "summary": "<p>Android-specific media-related functionality.</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.Media.Android"
    }, 
    "Titanium.Android.Calendar": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.METHOD_ALERT-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Reminder-object.html\"><code>Titanium.Android.Calendar.Reminder</code></a> method property.</p>", 
                "type": "Number", 
                "name": "METHOD_ALERT"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.METHOD_DEFAULT-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Reminder-object.html\"><code>Titanium.Android.Calendar.Reminder</code></a> method property.</p>", 
                "type": "Number", 
                "name": "METHOD_DEFAULT"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.METHOD_EMAIL-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Reminder-object.html\"><code>Titanium.Android.Calendar.Reminder</code></a> method property.</p>", 
                "type": "Number", 
                "name": "METHOD_EMAIL"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.METHOD_SMS-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Reminder-object.html\"><code>Titanium.Android.Calendar.Reminder</code></a> method property.</p>", 
                "type": "Number", 
                "name": "METHOD_SMS"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.STATE_DISMISSED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Alert-object.html\"><code>Titanium.Android.Calendar.Alert</code></a> state property.</p>", 
                "type": "Number", 
                "name": "STATE_DISMISSED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.STATE_FIRED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Alert-object.html\"><code>Titanium.Android.Calendar.Alert</code></a> state property.</p>", 
                "type": "Number", 
                "name": "STATE_FIRED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.STATE_SCHEDULED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Alert-object.html\"><code>Titanium.Android.Calendar.Alert</code></a> state property.</p>", 
                "type": "Number", 
                "name": "STATE_SCHEDULED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.STATUS_CANCELED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a> status property.</p>", 
                "type": "Number", 
                "name": "STATUS_CANCELED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.STATUS_CONFIRMED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a> status property.</p>", 
                "type": "Number", 
                "name": "STATUS_CONFIRMED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.STATUS_TENTATIVE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a> status property.</p>", 
                "type": "Number", 
                "name": "STATUS_TENTATIVE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.VISIBILITY_CONFIDENTIAL-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a> visibility property.</p>", 
                "type": "Number", 
                "name": "VISIBILITY_CONFIDENTIAL"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.VISIBILITY_DEFAULT-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a> visibility property.</p>", 
                "type": "Number", 
                "name": "VISIBILITY_DEFAULT"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.VISIBILITY_PRIVATE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a> visibility property.</p>", 
                "type": "Number", 
                "name": "VISIBILITY_PRIVATE"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.VISIBILITY_PUBLIC-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a> visibility property.</p>", 
                "type": "Number", 
                "name": "VISIBILITY_PUBLIC"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.allAlerts-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of <a href=\"Titanium.Android.Calendar.Alert-object.html\"><code>Titanium.Android.Calendar.Alert</code></a> objects representing all alerts.</p>", 
                "type": "Array<Titanium.Android.Calendar.Alert>", 
                "name": "allAlerts"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.allCalendars-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of <a href=\"Titanium.Android.Calendar.Calendar-object.html\"><code>Titanium.Android.Calendar.Calendar</code></a> objects representing all the calendars known to the native calendar app.</p>", 
                "type": "Array<Titanium.Android.Calendar.Calendar>", 
                "name": "allCalendars"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.selectableCalendars-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of <a href=\"Titanium.Android.Calendar.Calendar-object.html\"><code>Titanium.Android.Calendar.Calendar</code></a> objects representing calendars selected within the native calendar app. This may be a subset of allCalendars; for example, the native calendar application may know -- via your Gooogle account -- about calendars that you have access to but have not selected to be displayed in the native calendar app.</p>", 
                "type": "Array<Titanium.Android.Calendar.Calendar>", 
                "name": "selectableCalendars"
            }
        ], 
        "description": "<p>The API supports retrieving information about existing events and creating new events.  However, modifying or deleting existing events is not yet supported.  Additionally, recurring events are not yet supported.</p>", 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Android.Calendar-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.getAllAlerts-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Titanium.Android.Calendar.Alert>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.Calendar.allAlerts-property.html\">allAlerts</a> property.</p>", 
                "name": "getAllAlerts"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.getAllCalendars-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Titanium.Android.Calendar.Calendar>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.Calendar.allCalendars-property.html\">allCalendars</a> property.</p>", 
                "name": "getAllCalendars"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.getCalendarById-method.id-param", 
                        "optional": false, 
                        "summary": "<p>The system id of the calendar to be retrieved.</p>", 
                        "type": "Number", 
                        "name": "id"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.getCalendarById-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Android.Calendar.Calendar"
                }, 
                "examples": [], 
                "summary": "<p>Returns the <a href=\"Titanium.Android.Calendar.Calendar-object.html\"><code>Titanium.Android.Calendar.Calendar</code></a> object specified by the given integer id.</p>", 
                "name": "getCalendarById"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.getSelectableCalendars-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Titanium.Android.Calendar.Calendar>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.Calendar.selectableCalendars-property.html\">selectableCalendars</a> property.</p>", 
                "name": "getSelectableCalendars"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "1.5", 
                "name": "android"
            }
        ], 
        "objects": [
            "Titanium.Android.Calendar.Reminder", 
            "Titanium.Android.Calendar.Calendar", 
            "Titanium.Android.Calendar.Event", 
            "Titanium.Android.Calendar.Alert"
        ], 
        "examples": [
            {
                "code": "<p>Prints the names of all of your calendars known to Android, then prints the names of calendars that you have selected in the native Android calendar application.  The latter could be a subset, because (for example) Android -- via your Google account -- may know about more calendars that you have access to but that you have not selected inside the calendar app.</p>\n<pre><code>function showCalendars(calendars) {\n    for (var i = 0; i &lt; calendars.length; i++) {\n        Ti.API.info(calendars[i].name);\n    }\n}\n\nTi.API.info('ALL CALENDARS:');\nshowCalendars(Ti.Android.Calendar.allCalendars);\nTi.API.info('SELECTABLE CALENDARS:');\nshowCalendars(Ti.Android.Calendar.selectableCalendars);\n</code></pre>", 
                "description": "All Calendars vs Selectable Calendars"
            }, 
            {
                "code": "<p>This example will look at each event in a year for a given calendar.  Just set the desired calendar's id and the desired year to see it in action.  You can see calendar ids by running the example above.</p>\n<pre><code>var win = Ti.UI.currentWindow;\nvar sv = Ti.UI.createScrollView();\nwin.add(sv);\n\nvar console = Ti.UI.createLabel({\n    backgroundColor: 'white', color: 'black', text: 'generating info...'\n});\nsv.add(console);\n\nvar consoleString = '';\n\nfunction print(s) {\n    Ti.API.info(s);\n    if (consoleString.length &gt; 0) {\n        consoleString = consoleString + '\\n';\n    }\n    consoleString = consoleString + s;\n}\n\n// SHOW ALL EVENTS FOR 2010 FOR ONE CALENDAR\nvar YEAR = 2010;\nvar TEST_WITH_THIS_CAL_ID = 3;\nvar calendar = Ti.Android.Calendar.getCalendarById(TEST_WITH_THIS_CAL_ID);\n\nfunction printReminder(r) {\n    var typetext = '[method unknown]';\n    if (r.method == Ti.Android.Calendar.METHOD_EMAIL) {\n        typetext = 'Email';\n    } else if (r.method == Ti.Android.Calendar.METHOD_SMS) {\n        typetext = 'SMS';\n    } else if (r.method == Ti.Android.Calendar.METHOD_ALERT) {\n        typetext = 'Alert';\n    } else if (r.method == Ti.Android.Calendar.METHOD_DEFAULT) {\n        typetext = '[default reminder method]';\n    }\n    print(typetext + ' reminder to be sent ' + r.minutes + ' minutes before the event');\n}\n\nfunction printAlert(a) {\n    print('Alert id ' + a.id + ' begin ' + a.begin + '; end ' + a.end + '; alarmTime ' + a.alarmTime + '; minutes ' + a.minutes);\n}\n\nfunction printEvent(event) {\n    if (event.allDay) {\n        print('Event: ' + event.title + '; ' + event.begin.toLocaleDateString() + ' (all day)');\n    } else {\n        print('Event: ' + event.title + '; ' + event.begin.toLocaleDateString() + ' ' + event.begin.toLocaleTimeString()+ '-' + event.end.toLocaleTimeString());\n    }\n\n    var reminders = event.reminders;\n    if (reminders &amp;&amp; reminders.length) {\n        print('There is/are ' + reminders.length + ' reminder(s)');\n        for (var i = 0; i &lt; reminders.length; i++) {\n            printReminder(reminders[i]);\n        }\n    }\n\n    print('hasAlarm? ' + event.hasAlarm);\n    var alerts = event.alerts;\n    if (alerts &amp;&amp; alerts.length) {\n        for (i = 0; i &lt; alerts.length; i++) {\n            printAlert(alerts[i]);\n        }\n    }\n\n    var status = event.status;\n    if (status == Ti.Android.Calendar.STATUS_TENTATIVE) {\n        print('This event is tentative');\n    }\n    if (status == Ti.Android.Calendar.STATUS_CONFIRMED) {\n        print('This event is confirmed');\n    }\n    if (status == Ti.Android.Calendar.STATUS_CANCELED) {\n        print('This event was canceled');\n    }\n}\n\nvar events = calendar.getEventsInYear(YEAR);\nif (events &amp;&amp; events.length) {\n    print(events.length + ' event(s) in ' + YEAR);\n    print('');\n    for (var i = 0; i &lt; events.length; i++) {\n        printEvent(events[i]);\n        print('');\n    }\n} else {\n    print('No events on 2010-12-6');\n}\n\nconsole.text = consoleString;\n</code></pre>", 
                "description": "Events in a year"
            }, 
            {
                "code": "<p>This example creates an event and adds an e-mail reminder for 10 minutes before the event.</p>\n<pre><code>var CALENDAR_TO_USE = 3;\nvar calendar = Ti.Android.Calendar.getCalendarById(CALENDAR_TO_USE);\n\n// Create the event\nvar eventBegins = new Date(2010, 11, 26, 12, 0, 0);\nvar eventEnds = new Date(2010, 11, 26, 14, 0, 0);\nvar details = {\n    title: 'Do some stuff',\n    description: \"I'm going to do some stuff at this time.\",\n    begin: eventBegins,\n    end: eventEnds\n};\n\nvar event = calendar.createEvent(details);\n\n// Now add a reminder via e-mail for 10 minutes before the event.\nvar reminderDetails = {\n    minutes: 10,\n    method: Ti.Android.Calendar.METHOD_EMAIL\n};\nevent.createReminder(reminderDetails);\n</code></pre>", 
                "description": "Create an Event and Reminder"
            }
        ], 
        "summary": "<p>The Android.Calendar module provides proxies and methods for accessing the native Android calendar functionality.</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.Android.Calendar"
    }, 
    "Titanium.Analytics": {
        "properties": [], 
        "description": "<p>The Analytics module is used for transmitting developer-defined Analytics event for your application to the Appcelerator Analytics product. It can be used to augment additional context or application-specific information which can then be accessed during analysis using Analytics.</p>", 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Analytics-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.addEvent-method.type-param", 
                        "optional": false, 
                        "summary": "<p>the event type</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.addEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>the event name</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.addEvent-method.data-param", 
                        "optional": false, 
                        "summary": "<p>event data or null if not specified. the object must be serializable as JSON</p>", 
                        "type": "Object", 
                        "name": "data"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.addEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>send a generic event for the application session</p>", 
                "name": "addEvent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.featureEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>the event name</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.featureEvent-method.data-param", 
                        "optional": false, 
                        "summary": "<p>event data or null if not specified. the object must be serializable as JSON</p>", 
                        "type": "Object", 
                        "name": "data"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.featureEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>send an analytics feature event for the application session</p>", 
                "name": "featureEvent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.navEvent-method.from-param", 
                        "optional": false, 
                        "summary": "<p>the <code>from</code> location in the nav event</p>", 
                        "type": "String", 
                        "name": "from"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.navEvent-method.to-param", 
                        "optional": false, 
                        "summary": "<p>the <code>to</code> location in the nav event</p>", 
                        "type": "String", 
                        "name": "to"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.navEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>the event name</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.navEvent-method.data-param", 
                        "optional": false, 
                        "summary": "<p>event data or null if not specified. the object must be serializable as JSON</p>", 
                        "type": "Object", 
                        "name": "data"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.navEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>send an analytics nav event for the application session</p>", 
                "name": "navEvent"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.settingsEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>the event name</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.settingsEvent-method.data-param", 
                        "optional": false, 
                        "summary": "<p>event data or null if not specified. the object must be serializable as JSON</p>", 
                        "type": "Object", 
                        "name": "data"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.settingsEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>send a analytics settings event for the application session</p>", 
                "name": "settingsEvent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.timedEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>the event name</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.timedEvent-method.start-param", 
                        "optional": false, 
                        "summary": "<p>the event start as a Date object</p>", 
                        "type": "Date", 
                        "name": "start"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.timedEvent-method.stop-param", 
                        "optional": false, 
                        "summary": "<p>the event end as a Date object</p>", 
                        "type": "Date", 
                        "name": "stop"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.timedEvent-method.duration-param", 
                        "optional": false, 
                        "summary": "<p>the event duration</p>", 
                        "type": "Number", 
                        "name": "duration"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.timedEvent-method.data-param", 
                        "optional": false, 
                        "summary": "<p>event data or null if not specified. the object must be serializable as JSON</p>", 
                        "type": "Object", 
                        "name": "data"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.timedEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>send an analytics timed event for the application session</p>", 
                "name": "timedEvent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.userEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>the event name</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Analytics.userEvent-method.data-param", 
                        "optional": false, 
                        "summary": "<p>event data or null if not specified. the object must be serializable as JSON</p>", 
                        "type": "Object", 
                        "name": "data"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Analytics.userEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>send an analytics user event for the application session</p>", 
                "name": "userEvent"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.1", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.1", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.1", 
                "name": "ipad"
            }, 
            {
                "pretty_name": "Mobile Web", 
                "since": "1.8", 
                "name": "mobileweb"
            }
        ], 
        "objects": [], 
        "examples": [
            {
                "code": "<p>This examples shows how to send a featureEvent during an application session to indicate some feature was triggered/used by the user that you would like to track.</p>\n<pre><code>Titanium.Analytics.featureEvent('app.feature.blah',{product:'killer'});\n</code></pre>", 
                "description": "Custom Feature Event"
            }
        ], 
        "summary": "<p>The top level Analytics module.</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.Analytics"
    }, 
    "Titanium.UI.EmailDialog": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.CANCELLED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the CANCELLED status result</p>", 
                "type": "Number", 
                "name": "CANCELLED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.FAILED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the FAILED status result</p>", 
                "type": "Number", 
                "name": "FAILED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.SAVED-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the SAVED status result</p>", 
                "type": "Number", 
                "name": "SAVED"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.SENT-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>constant for the SENT status result</p>", 
                "type": "Number", 
                "name": "SENT"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.barColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>the bar color of the email dialog window when opened</p>", 
                "type": "String", 
                "name": "barColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.bccRecipients-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>array of email BCC: recipients</p>", 
                "type": "Array<Object>", 
                "name": "bccRecipients"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.ccRecipients-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>array of email CC: recipients</p>", 
                "type": "Array<Object>", 
                "name": "ccRecipients"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.html-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>boolean to indicate whether the email messageBody should be sent as HTML content type. defaults to false. (Android note: you should not use html messages in 1.6: after that is okay.)</p>", 
                "type": "Boolean", 
                "name": "html"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.messageBody-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>the email message body</p>", 
                "type": "String", 
                "name": "messageBody"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.subject-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>the subject line for the email</p>", 
                "type": "String", 
                "name": "subject"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.toRecipients-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>array of email recipients</p>", 
                "type": "Array<Object>", 
                "name": "toRecipients"
            }
        ], 
        "description": null, 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.UI.EmailDialog-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.addAttachment-method.attachment-param", 
                        "optional": false, 
                        "summary": "<p>attachment object as either a Blob or File object</p>", 
                        "type": "Object", 
                        "name": "attachment"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.addAttachment-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>add an attachment to the email. The attachment can either be a Blob or File object. Note: Versions before 1.7.1 will only support one attachment in Android.  Since version 1.7.1, our Android implementation will accept multiple attachments, but multiple attachments will only work if the user chooses to send via the Android Gmail app; the Android \"Mail\" app (which is anyway not available on some handsets) will only accept one attachment from a Titanium app.  K9 has also been tested successfully with multiple attachments.</p>", 
                "name": "addAttachment"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.getBarColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.EmailDialog.barColor-property.html\">barColor</a> property.</p>", 
                "name": "getBarColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.getBccRecipients-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Object>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.EmailDialog.bccRecipients-property.html\">bccRecipients</a> property.</p>", 
                "name": "getBccRecipients"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.getCcRecipients-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Object>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.EmailDialog.ccRecipients-property.html\">ccRecipients</a> property.</p>", 
                "name": "getCcRecipients"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.getHtml-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.EmailDialog.html-property.html\">html</a> property.</p>", 
                "name": "getHtml"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.getMessageBody-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.EmailDialog.messageBody-property.html\">messageBody</a> property.</p>", 
                "name": "getMessageBody"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.getSubject-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.EmailDialog.subject-property.html\">subject</a> property.</p>", 
                "name": "getSubject"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.getToRecipients-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Object>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.EmailDialog.toRecipients-property.html\">toRecipients</a> property.</p>", 
                "name": "getToRecipients"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.isSupported-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>return whether or not sending email is supported</p>", 
                "name": "isSupported"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.open-method.properties-param", 
                        "optional": false, 
                        "summary": "<p>object of animation properties. pass <code>animated</code> property (as boolean) to indicate if the dialog should be animated on open.</p>", 
                        "type": "Object", 
                        "name": "properties"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.open-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>open the email dialog. the email dialog itself is a modal window</p>", 
                "name": "open"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.setBarColor-method.barColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "barColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.setBarColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.EmailDialog.barColor-property.html\">barColor</a> property.</p>", 
                "name": "setBarColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.setBccRecipients-method.bccRecipients-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Array<Object>", 
                        "name": "bccRecipients"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.setBccRecipients-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.EmailDialog.bccRecipients-property.html\">bccRecipients</a> property.</p>", 
                "name": "setBccRecipients"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.setCcRecipients-method.ccRecipients-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Array<Object>", 
                        "name": "ccRecipients"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.setCcRecipients-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.EmailDialog.ccRecipients-property.html\">ccRecipients</a> property.</p>", 
                "name": "setCcRecipients"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.setHtml-method.html-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "html"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.setHtml-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.EmailDialog.html-property.html\">html</a> property.</p>", 
                "name": "setHtml"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.setMessageBody-method.messageBody-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "messageBody"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.setMessageBody-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.EmailDialog.messageBody-property.html\">messageBody</a> property.</p>", 
                "name": "setMessageBody"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.setSubject-method.subject-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "subject"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.setSubject-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.EmailDialog.subject-property.html\">subject</a> property.</p>", 
                "name": "setSubject"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.setToRecipients-method.toRecipients-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Array<Object>", 
                        "name": "toRecipients"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.setToRecipients-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.EmailDialog.toRecipients-property.html\">toRecipients</a> property.</p>", 
                "name": "setToRecipients"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }
        ], 
        "examples": [
            {
                "code": "<p>In this example, we send an email with a file attachment.</p>\n<pre><code>var emailDialog = Titanium.UI.createEmailDialog()\nemailDialog.subject = \"Hello from Titanium\";\nemailDialog.toRecipients = ['foo@yahoo.com'];\nemailDialog.messageBody = '&lt;b&gt;Appcelerator Titanium Rocks!&lt;/b&gt;';\nvar f = Ti.Filesystem.getFile('cricket.wav');\nemailDialog.addAttachment(f);\nemailDialog.open();\n</code></pre>", 
                "description": "Simple Email Dialog with Attachment"
            }
        ], 
        "summary": "<p>The Email Dialog is created by <a href=\"Titanium.UI.createEmailDialog-method.html\"><code>Titanium.UI.createEmailDialog</code></a> and allows you to send in application emails on behalf of the application user.</p>", 
        "type": "object", 
        "events": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.EmailDialog.complete-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>fired when the email dialog has completed sending the email</p>", 
                "properties": [
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.UI.EmailDialog.complete.error-callback-property", 
                        "name": "error", 
                        "summary": "<p>string message of the error or null if successfully sent</p>"
                    }, 
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.UI.EmailDialog.complete.result-callback-property", 
                        "name": "result", 
                        "summary": "<p>result status either as SENT, SAVED, CANCELLED or FAILED. (Note: Android result will be SENT even if user discards or saves the message.  SAVED and CANCELLED are not supported on Android.)</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.complete.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "deprecated": null, 
                        "description": null, 
                        "filename": "Titanium.UI.EmailDialog.complete.success-callback-property", 
                        "name": "success", 
                        "summary": "<p>boolean to indicate if the email was successfully sent</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.EmailDialog.complete.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "complete"
            }
        ], 
        "name": "Titanium.UI.EmailDialog"
    }, 
    "Global.String": {
        "properties": [], 
        "description": "<p>The following are built-in functions available on the <a href=\"Global.String-object.html\">String</a> class.\nThese are Titanium-specific extensions for formatting data into locale-specific strings. </p>\n<p>Both iOS and Android use the locale configured by the user for locale-specific formatting.\nThe locale is set in device's system Settings. </p>", 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Global.String-object", 
        "methods": [
            {
                "description": "<p>The format string follows the IEEE printf specification:</p>\n<p>http://www.opengroup.org/onlinepubs/009695399/functions/printf.html</p>\n<p>One value parameter should be passed for each conversion specification in the\nformat string. For example:</p>\n<pre><code>message = String.formatString(\"Hello, %s, you are visitor number %d\", name, number);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Global.String.format-method.formatString-param", 
                        "optional": false, 
                        "summary": "<p>An IEEE <code>printf</code> format string.</p>", 
                        "type": "String", 
                        "name": "formatString"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Global.String.format-method.value-param", 
                        "type": [
                            "String", 
                            "Number"
                        ], 
                        "summary": "<p>A value to substitute into the format string. An arbitrary number of value parameters may be specified.</p>", 
                        "optional": true, 
                        "name": "value"
                    }
                ], 
                "deprecated": null, 
                "filename": "Global.String.format-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "String", 
                    "summary": "Formatted string."
                }, 
                "examples": [], 
                "summary": "<p>Formats a string using a <code>printf</code>-style format string.</p>", 
                "name": "format"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Global.String.formatCurrency-method.value-param", 
                        "optional": false, 
                        "summary": "<p>Currency value to format.</p>", 
                        "type": "Number", 
                        "name": "value"
                    }
                ], 
                "deprecated": null, 
                "filename": "Global.String.formatCurrency-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "String", 
                    "summary": "The specified value, with a locale-specific currency symbol."
                }, 
                "examples": [], 
                "summary": "<p>Formats a number into a locale-specific currency format.</p>", 
                "name": "formatCurrency"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Global.String.formatDate-method.date-param", 
                        "optional": false, 
                        "summary": "<p>Date object to format.</p>", 
                        "type": "Date", 
                        "name": "date"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Global.String.formatDate-method.format-param", 
                        "type": "String", 
                        "summary": "<p>Date format to use, specified as 'short', 'medium', or 'long'.</p>", 
                        "optional": true, 
                        "name": "format"
                    }
                ], 
                "deprecated": null, 
                "filename": "Global.String.formatDate-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "String", 
                    "summary": "String representation of the specified date."
                }, 
                "examples": [], 
                "summary": "<p>Formats a <code>Date</code> object in a localized string format.</p>", 
                "name": "formatDate"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Global.String.formatDecimal-method.value-param", 
                        "optional": false, 
                        "summary": "<p>Value to format.</p>", 
                        "type": "Number", 
                        "name": "value"
                    }
                ], 
                "deprecated": null, 
                "filename": "Global.String.formatDecimal-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "String", 
                    "summary": "String representation of the specified number, using a locale-specific decimal symbol, if required."
                }, 
                "examples": [], 
                "summary": "<p>Formats a number using the locale-specific decimal symbol.</p>", 
                "name": "formatDecimal"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Global.String.formatTime-method.date-param", 
                        "optional": false, 
                        "summary": "<p>Date object to format.</p>", 
                        "type": "Date", 
                        "name": "date"
                    }
                ], 
                "deprecated": null, 
                "filename": "Global.String.formatTime-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "String", 
                    "summary": "String representation of the specified time."
                }, 
                "examples": [], 
                "summary": "<p>Formats a <code>Date</code> object into a locale-specific time format.</p>", 
                "name": "formatTime"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }
        ], 
        "examples": [], 
        "summary": "<p>The JavaScript built-in String type.</p>", 
        "type": "object", 
        "events": [], 
        "name": "Global.String"
    }, 
    "MatrixCreationDict": {
        "properties": [
            {
                "description": null, 
                "default": "(0.5, 0.5)", 
                "deprecated": null, 
                "filename": "MatrixCreationDict.anchorPoint-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "type": "Dictionary", 
                "summary": "<p>Point to rotate around, specified as a dictionary object with <code>x</code> and <code>y</code>\nproperties, where { x: 0.5, y: 0.5 } represents the center of whatever is being\nrotated.</p>", 
                "optional": true, 
                "name": "anchorPoint"
            }, 
            {
                "description": null, 
                "default": "No rotation.", 
                "deprecated": null, 
                "filename": "MatrixCreationDict.rotate-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "type": "Number", 
                "summary": "<p>Rotation angle, in degrees. See the <a href=\"Titanium.UI.2DMatrix.rotate-method.html\">rotate</a> method\nfor a discussion of rotation.</p>", 
                "optional": true, 
                "name": "rotate"
            }, 
            {
                "description": null, 
                "default": 1, 
                "deprecated": null, 
                "filename": "MatrixCreationDict.scale-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "type": "Number", 
                "summary": "<p>Scale the matrix by the specified scaling factor. The same scaling factor is used\nfor both horizontal and vertical scaling.</p>", 
                "optional": true, 
                "name": "scale"
            }
        ], 
        "description": "<p>The matrix is initialized with the specified transforms.</p>\n<p>On iOS, rotation is always performed first, regardless of the order the \nproperties are specified in.</p>\n<p>On Android, specifying both <code>scale</code> and <code>rotate</code> the same dictionary results\nin an incorrect transformation.</p>", 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "MatrixCreationDict-object", 
        "methods": [], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }, 
            {
                "pretty_name": "Mobile Web", 
                "since": "1.8", 
                "name": "mobileweb"
            }
        ], 
        "examples": [], 
        "summary": "<p>Simple object passed to <a href=\"Titanium.UI.create2DMatrix-method.html\"><code>Titanium.UI.create2DMatrix</code></a> to initialize a matrix.</p>", 
        "type": "object", 
        "events": [], 
        "name": "MatrixCreationDict"
    }, 
    "Titanium.API": {
        "properties": [], 
        "description": null, 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.API-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.debug-method.message-param", 
                        "optional": false, 
                        "summary": "<p>the message to log</p>", 
                        "type": "String", 
                        "name": "message"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.debug-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>function for logging debug messages</p>", 
                "name": "debug"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.error-method.message-param", 
                        "optional": false, 
                        "summary": "<p>the message to log</p>", 
                        "type": "String", 
                        "name": "message"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.error-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>function for logging error messages</p>", 
                "name": "error"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.info-method.message-param", 
                        "optional": false, 
                        "summary": "<p>the message to log</p>", 
                        "type": "String", 
                        "name": "message"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.info-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>function for logging informational messages</p>", 
                "name": "info"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.log-method.level-param", 
                        "optional": false, 
                        "summary": "<p>the log level</p>", 
                        "type": "String", 
                        "name": "level"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.log-method.message-param", 
                        "optional": false, 
                        "summary": "<p>the message to log</p>", 
                        "type": "String", 
                        "name": "message"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.log-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>function for logging custom severity messages</p>", 
                "name": "log"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.API.warn-method.message-param", 
                        "optional": false, 
                        "summary": "<p>the message to log</p>", 
                        "type": "String", 
                        "name": "message"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.API.warn-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>function for logging warning messages</p>", 
                "name": "warn"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.1", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.1", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.1", 
                "name": "ipad"
            }, 
            {
                "pretty_name": "Mobile Web", 
                "since": "1.8", 
                "name": "mobileweb"
            }
        ], 
        "objects": [], 
        "examples": [], 
        "summary": "<p>The top level API module.  The API module is mainly used for logging.</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.API"
    }, 
    "TableViewIndexEntry": {
        "properties": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "TableViewIndexEntry.index-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Row index associated with this item.</p>", 
                "type": "Number", 
                "name": "index"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "TableViewIndexEntry.title-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Title to display in the index bar for this item.</p>", 
                "type": "String", 
                "name": "title"
            }
        ], 
        "description": null, 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "TableViewIndexEntry-object", 
        "methods": [], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }, 
            {
                "pretty_name": "Mobile Web", 
                "since": "1.8", 
                "name": "mobileweb"
            }
        ], 
        "examples": [], 
        "summary": "<p>A simple object that represents an index entry in a <code>TableView</code>.</p>", 
        "type": "object", 
        "events": [], 
        "name": "TableViewIndexEntry"
    }, 
    "Titanium.Android.Calendar.Reminder": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.id-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The id of the reminder.</p>", 
                "type": "String", 
                "name": "id"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.method-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The reminder method.  Possible values are the METHOD constants in <a href=\"Titanium.Android.Calendar-module.html\"><code>Titanium.Android.Calendar</code></a>.</p>", 
                "type": "Number", 
                "name": "method"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.minutes-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The minutes before the event when the reminder should occur.</p>", 
                "type": "Number", 
                "name": "minutes"
            }
        ], 
        "description": "<p>Reminders should not be created directly, but rather by using the <code>createReminder</code> method \nof <a href=\"Titanium.Android.Calendar.Event-object.html\"><code>Titanium.Android.Calendar.Event</code></a>.</p>\n<p>See <a href=\"Titanium.Android.Calendar-module.html\"><code>Titanium.Android.Calendar</code></a> for examples of retrieving reminder information and \ncreating reminders for events.</p>", 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.Android.Calendar.Reminder-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.Reminder.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.Reminder.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.Reminder.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.Reminder.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.getId-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.Calendar.Reminder.id-property.html\">id</a> property.</p>", 
                "name": "getId"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.getMethod-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.Calendar.Reminder.method-property.html\">method</a> property.</p>", 
                "name": "getMethod"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.getMinutes-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.Calendar.Reminder.minutes-property.html\">minutes</a> property.</p>", 
                "name": "getMinutes"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.Reminder.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.Calendar.Reminder.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.Calendar.Reminder.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "1.5", 
                "name": "android"
            }
        ], 
        "examples": [], 
        "summary": "<p>An object which represents a single reminder for an event in an Android calendar.</p>", 
        "type": "object", 
        "events": [], 
        "name": "Titanium.Android.Calendar.Reminder"
    }, 
    "Titanium.Filesystem": {
        "properties": [
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.MODE_APPEND-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant for append mode for file operations.</p>", 
                "type": "Number", 
                "name": "MODE_APPEND"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.MODE_READ-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant for read mode for file operations.</p>", 
                "type": "Number", 
                "name": "MODE_READ"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.MODE_WRITE-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Constant for write mode for file operations.</p>", 
                "type": "Number", 
                "name": "MODE_WRITE"
            }, 
            {
                "description": "<p>This is a writable directory that can be used to store applications-specific files. </p>\n<p>On iOS, this directory is specifically designated for user documents, and a\nseparate directory,\n<a href=\"Titanium.Filesystem.applicationSupportDirectory-property.html\">applicationSupportDirectory</a> is\nused for other application data.</p>\n<p>On iOS, files in this directory are backed up unless the\n<a href=\"Titanium.Filesystem.File.remoteBackup-property.html\">remoteBackup</a> flag is set to false.</p>\n<p>On Android, files in this directory cannot be accessed by other applications, so \nit should not be used for files that must be used by another application \n(for example, a video file that will be passed to the system's video player application).\nThese files should be stored in the\n<a href=\"Titanium.Filesystem.externalStorageDirectory-property.html\">externalStorageDirectory</a>.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.applicationDataDirectory-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Path to the application's data directory.</p>", 
                "type": "String", 
                "name": "applicationDataDirectory"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.applicationDirectory-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Path to the iOS application directory.</p>", 
                "type": "String", 
                "name": "applicationDirectory"
            }, 
            {
                "description": "<p>This is a writable directory used on iOS for application files that are <em>not</em> \nuser documents--including settings files, caches, and so on.</p>\n<p>On iOS, files in this directory are backed up unless the\n<a href=\"Titanium.Filesystem.File.remoteBackup-property.html\">remoteBackup</a> flag is set to false.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.applicationSupportDirectory-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Path to the application support directory.</p>", 
                "type": "String", 
                "name": "applicationSupportDirectory"
            }, 
            {
                "description": "<p>This directory can be used for storing arbitrary data. It is read/write and files\nin this directory can be passed to other applications, such as video\nplayers--which is not possible with the \n<a href=\"Titanium.Filesystem.applicationDataDirectory-property.html\">applicationDataDirectory</a>.</p>\n<p>This directory may not be subject to as many memory limitations as the\n<code>applicationDataDirectory</code>, which is stored in the device's internal storage.\nNote, however, that the user may remove or replace the removable storage device\nwithout warning, so the application must be prepared to handle this case gracefully. </p>\n<p>The application should check\n<a href=\"Titanium.Filesystem.isExternalStoragePresent-method.html\">isExternalStoragePresent</a> before\naccessing this location. The application should also handle any exceptions generated \nif the storage device is unmounted during use, or if the files stored on external \nstorage are not available.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.externalStorageDirectory-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Path to a directory on removable storage, such as SD card.</p>", 
                "type": "String", 
                "name": "externalStorageDirectory"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.lineEnding-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Platform-specific line ending constant.</p>", 
                "type": "String", 
                "name": "lineEnding"
            }, 
            {
                "description": "<p>This directory is read-only. If you need to modify any files in this directory,\nthey must first be copied to another directory, such as<br />\n<a href=\"Titanium.Filesystem.applicationDataDirectory-property.html\">applicationDataDirectory</a> or\n<a href=\"Titanium.Filesystem.tempDirectory-property.html\">tempDirectory</a>. </p>\n<p>On iOS, \nwritable files can also be placed in the \n<a href=\"Titanium.Filesystem.applicationSupportDirectory-property.html\">applicationSupportDirectory</a>.\nOn Android, writable files can also be placed in the \n<a href=\"Titanium.Filesystem.externalStorageDirectory-property.html\">externalStorageDirectory</a>.</p>\n<p>Note that when running on the simulator, the resources directory may be writable,\nbut it is not writable on device.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.resourcesDirectory-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Path to the application's resource directory.</p>", 
                "type": "String", 
                "name": "resourcesDirectory"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.separator-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Platform-specific path separator constant.</p>", 
                "type": "String", 
                "name": "separator"
            }, 
            {
                "description": "<p>This directory can be used for storing temporary files. Files in this directory\nmay not persist when the application is shut down and restarted.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.tempDirectory-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Path for the application's temporary directory.</p>", 
                "type": "String", 
                "name": "tempDirectory"
            }
        ], 
        "description": null, 
        "subtype": null, 
        "deprecated": null, 
        "filename": "Titanium.Filesystem-module", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.createFile-method.parameters-param", 
                        "optional": false, 
                        "summary": "<p>(Optional) A dictionary object with properties as defined in <a href=\"Titanium.Filesystem.File-object.html\"><code>Titanium.Filesystem.File</code></a>.</p>", 
                        "type": "Dictionary<Titanium.Filesystem.File>", 
                        "name": "parameters"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.createFile-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Filesystem.File"
                }, 
                "examples": [], 
                "summary": "<p>Create and return an instance of <a href=\"Titanium.Filesystem.File-object.html\"><code>Titanium.Filesystem.File</code></a>.</p>", 
                "name": "createFile"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.createTempDirectory-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Filesystem.File"
                }, 
                "examples": [], 
                "summary": "<p>Creates a temporary directory and returns a <a href=\"Titanium.Filesystem.File-object.html\">File</a> object representing the new directory.</p>", 
                "name": "createTempDirectory"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.createTempFile-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Filesystem.File"
                }, 
                "examples": [], 
                "summary": "<p>Creates a temporary file and returns a <a href=\"Titanium.Filesystem.File-object.html\">File</a> object representing the new file.</p>", 
                "name": "createTempFile"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getApplicationDataDirectory-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.applicationDataDirectory-property.html\">applicationDataDirectory</a> property.</p>", 
                "name": "getApplicationDataDirectory"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getApplicationDirectory-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.applicationDirectory-property.html\">applicationDirectory</a> property.</p>", 
                "name": "getApplicationDirectory"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getApplicationSupportDirectory-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.applicationSupportDirectory-property.html\">applicationSupportDirectory</a> property.</p>", 
                "name": "getApplicationSupportDirectory"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getExternalStorageDirectory-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.externalStorageDirectory-property.html\">externalStorageDirectory</a> property.</p>", 
                "name": "getExternalStorageDirectory"
            }, 
            {
                "description": "<p>Note that <code>getFile</code> does not create a file if one does not exist at the specified\npath. It returns a new <code>File</code> object referring to the specified file path. The \napplication can create a file at that path by calling \n<a href=\"Titanium.Filesystem.File.write-method.html\">write</a> or create a directory by calling\n<a href=\"Titanium.Filesystem.File.createDirectory-method.html\">createDirectory</a> on the <code>File</code> object.</p>\n<p>This method takes a variable number of arguments, where each argument is treated\nas a path component. All of the arguments are joined together using the\nplatform-specific path separator to make the final path.</p>\n<p>If a relative path is passed, the full path should be interpreted relative\nto the current file. For example, if the file <code>Resources/login/login.js</code> \ncontains the following code:</p>\n<pre><code>var icon = Titanium.Filesystem.getFile('icon.png');\n</code></pre>\n<p>The path is interpreted as <code>Resources/login/icon.png</code>. </p>\n<p>On iOS, all relative paths are currently interpreted as relative to the\n<code>Resources</code> directory, <strong>not</strong> to the current context. This is a known issue\nthat will be addressed in a future release.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.getFile-method.path-param", 
                        "optional": false, 
                        "summary": "<p>One or more path components. Path arguments are joined together using the platform specific path separator to form the full path.</p>", 
                        "type": "String", 
                        "name": "path"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getFile-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Filesystem.File"
                }, 
                "examples": [], 
                "summary": "<p>Returns a <code>File</code> object representing the file identified by the path arguments.</p>", 
                "name": "getFile"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getLineEnding-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.lineEnding-property.html\">lineEnding</a> property.</p>", 
                "name": "getLineEnding"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getResourcesDirectory-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.resourcesDirectory-property.html\">resourcesDirectory</a> property.</p>", 
                "name": "getResourcesDirectory"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getSeparator-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.separator-property.html\">separator</a> property.</p>", 
                "name": "getSeparator"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.getTempDirectory-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Filesystem.tempDirectory-property.html\">tempDirectory</a> property.</p>", 
                "name": "getTempDirectory"
            }, 
            {
                "description": "<p>Returns <code>true</code> on Android if an external storage device, such as an SD card, is\navailable for reading and writing.</p>\n<p>Returns <code>false</code> on iOS.</p>", 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.isExternalStoragePresent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>Returns <code>true</code> if the device supports external storage <em>and</em> the external storage device is mounted.</p>", 
                "name": "isExternalStoragePresent"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Filesystem.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Filesystem.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.1", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.1", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.1", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.1", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.1", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.1", 
                "name": "ipad"
            }
        ], 
        "objects": [
            "Titanium.Filesystem.File", 
            "Titanium.Filesystem.FileStream"
        ], 
        "examples": [], 
        "summary": "<p>The top level filesystem module, used to access files and directories on the device.</p>", 
        "type": "module", 
        "events": [], 
        "name": "Titanium.Filesystem"
    }, 
    "Titanium.UI.CoverFlowView": {
        "properties": [
            {
                "description": "<p>Anchor point is specified as a fraction of the view's size. So \n(0.5,0.5) represents the view's center and (1, 1) is the view's bottom-right \ncorner.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.anchorPoint-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Anchor point where animation should occur, relative to the view's boundaries.</p>", 
                "type": "Point", 
                "name": "anchorPoint"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.animatedCenterPoint-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Current position of the view during an animation.</p>", 
                "type": "Point", 
                "name": "animatedCenterPoint"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundColor-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundDisabledColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Disabled background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundDisabledColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundDisabledImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Disabled background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundDisabledImage"
            }, 
            {
                "description": "<p>For normal views, the focused color is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundFocusedColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Focused background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundFocusedColor"
            }, 
            {
                "description": "<p>For normal views, the focused background is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundFocusedImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Focused background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundFocusedImage"
            }, 
            {
                "description": "<p>A gradient can be defined as either linear or radial. A linear gradient\nvaries continuously along a line between the <code>startPoint</code> and <code>endPoint</code>.\nA radial gradient is interpolated between two circles, defined by <code>startPoint</code>\nand <code>startRadius</code> and <code>endPoint</code> and <code>endRadius</code> respectively.</p>\n<p>The start and end points and radius values can be defined in device units,\nin the view's coordinates, or as percentages of the view's size. Thus, if\na view is 60 x 60, the center point of the view can be specified as:</p>\n<pre><code>{ x: 30, y: 30 }\n</code></pre>\n<p>Or:\n    { x: '50%', y: '50%' }</p>\n<p>When specifying multiple colors, you can specify an <em>offset</em> value for\neach color, defining how far into the gradient it takes effect. For example,\nthe following color array specifies a gradient that goes from red to blue back to red:</p>\n<pre><code>colors: [ { color: 'red', offset: 0.0}, { color: 'blue', offset: 0.25 }, { color: 'red', offset: 1.0 } ]\n</code></pre>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundGradient-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [
                    {
                        "code": "<p>The following code excerpt creates two views, one with a linear gradient and one with\na radial gradient.</p>\n<pre><code>var win1 = Titanium.UI.createWindow({\n    title:'Tab 1',\n    backgroundColor:'#fff',\n    layout: 'vertical'\n});\n\nvar radialGradient = Ti.UI.createView({\n    top: 10,\n    width: 100,\n    height: 100,\n    backgroundGradient: {\n        type: 'radial',\n        startPoint: { x: 50, y: 50 },\n        endPoint: { x: 50, y: 50 },\n        colors: [ 'red', 'blue'],\n        startRadius: '90%',\n        endRadius: 0,\n        backfillStart: true\n    }\n});\nvar linearGradient = Ti.UI.createView({\n    top: 10,\n    width: 100,\n    height: 100,\n    backgroundGradient: {\n        type: 'linear',\n        startPoint: { x: '0%', y: '50%' },\n        endPoint: { x: '100%', y: '50%' },\n        colors: [ { color: 'red', offset: 0.0}, { color: 'blue', offset: 0.25 }, { color: 'red', offset: 1.0 } ],\n    }\n});\nwin1.add(radialGradient);\nwin1.add(linearGradient);\nwin1.open();\n</code></pre>", 
                        "description": "Linear and Radial Gradients"
                    }
                ], 
                "summary": "<p>A background gradient for the view.</p>", 
                "type": "Gradient", 
                "name": "backgroundGradient"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundImage-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundImage"
            }, 
            {
                "description": "<p>End caps specify the portion of an image that should not be resized when an \nimage is stretched. This technique is used to implement buttons and other \nresizable image-based interface elements. When a button with end caps is resized, \nthe resizing occurs only in the middle of the button, in the region between the end \ncaps. The end caps themselves keep their original size and appearance. This property \nspecifies the size of the left end cap. The middle (stretchable) portion is assumed to \nbe 1 pixel wide. The right end cap is therefore computed by adding the size of the left \nend cap and the middle portion together and then subtracting that value from the width \nof the image</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundLeftCap-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Size of the left end cap.</p>", 
                "type": "Number", 
                "name": "backgroundLeftCap"
            }, 
            {
                "description": "<p>Setting this to <code>true</code> makes the set <code>backgroundImage</code> repeat across\nthe view as a series of tiles. The tiling is begins in the upper-left\ncorner, where the upper-left corner of the background image is rendered.\nThe image is then tiled to fill the available space of the view.</p>\n<p>Note that setting this to <code>true</code> may incur performance penalties for\nlarge views or background images, as the tiling must be redone\nwhenever a view is resized.</p>\n<p>The following views do not currently support tiled backgrounds:\n<em> <a href=\"Titanium.UI.Button-object.html\"><code>Titanium.UI.Button</code></a>\n</em> <a href=\"Titanium.UI.TextField-object.html\"><code>Titanium.UI.TextField</code></a>\n* <a href=\"Titanium.UI.Label-object.html\"><code>Titanium.UI.Label</code></a></p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundRepeat-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Toggle for whether or not to tile a background across a view.</p>", 
                "type": "Boolean", 
                "name": "backgroundRepeat"
            }, 
            {
                "description": "<p>focusable must be true for normal views.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundSelectedColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Selected background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundSelectedColor"
            }, 
            {
                "description": "<p>For normal views, the selected background is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundSelectedImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Selected background image url for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundSelectedImage"
            }, 
            {
                "description": "<p>End caps specify the portion of an image that should not be resized when an image \nis stretched. This technique is used to implement buttons and other resizable \nimage-based interface elements. When a button with end caps is resized, the resizing \noccurs only in the middle of the button, in the region between the end caps. The end \ncaps themselves keep their original size and appearance. This property specifies the \nsize of the top end cap. The middle (stretchable) portion is assumed to be 1 pixel wide. \nThe bottom end cap is therefore computed by adding the size of the top end cap and the\nmiddle portion together and then subtracting that value from the height of the image.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.backgroundTopCap-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Size of the top end cap.</p>", 
                "type": "Number", 
                "name": "backgroundTopCap"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.borderColor-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border color of the view.</p>", 
                "type": "String", 
                "name": "borderColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.borderRadius-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border radius of the view.</p>", 
                "type": "Number", 
                "name": "borderRadius"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.borderWidth-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border width of the view.</p>", 
                "type": "Number", 
                "name": "borderWidth"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.bottom-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's bottom position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "bottom"
            }, 
            {
                "description": "<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.center-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's center position, in the parent view's coordinates.</p>", 
                "type": "Point", 
                "name": "center"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.children-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of this view's child views.</p>", 
                "type": "Array<Titanium.UI.View>", 
                "name": "children"
            }, 
            {
                "description": null, 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.focusable-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether view should be focusable while navigating with the trackball.</p>", 
                "type": "Boolean", 
                "name": "focusable"
            }, 
            {
                "description": "<p>Can be either a float value or a dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying the view's height dimension. To determine the view's \nsize once rendered, see the <a href=\"Titanium.UI.View.size-property.html\">size</a> property.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.height-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View height, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "height"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.images-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of images to display in the view.</p>", 
                "type": [
                    "Array<String>", 
                    "Array<Titanium.Blob>", 
                    "Array<Titanium.File>", 
                    "Array<CoverFlowImageType>"
                ], 
                "name": "images"
            }, 
            {
                "description": "<p>When <code>true</code> the screen will not power down. Note: enabling this feature will use more \npower, thereby adversely affecting run time when on battery.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.keepScreenOn-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether to keep the device screen on.</p>", 
                "type": "Boolean", 
                "name": "keepScreenOn"
            }, 
            {
                "description": "<p>There are three layout options:</p>\n<ul>\n<li>\n<p><code>absolute</code>. Default layout. A child view's <code>top</code>, <code>bottom</code>, <code>left</code>, and <code>right</code> \n    properties are interpreted as absolute values in the parent's coordinate space.</p>\n<p>If the child includes a <code>top</code> value and <strong>not</strong> a <code>bottom</code> value, the child is \npositioned <code>top</code> units from the top of the parent's bounding box, and its height\nis set based on its <code>height</code> property.</p>\n<p>If the child includes a <code>bottom</code> value and <strong>not</strong> a <code>top</code> value, the child is \npositioned <code>bottom</code> units from the bottom of the parent's bounding box. Its height\nis set based on its <code>height</code> property.</p>\n<p>If the child includes both <code>top</code> and <code>bottom</code> values, the behavior is \nplatform-specific.</p>\n<p>Similar calculations are used for <code>left</code> and <code>right</code>. </p>\n<p>You can also position a child by setting its <code>center</code> property to a <a href=\"Point-object.html\"><code>Point</code></a>.</p>\n<p>If no position is set explicitly, children are centered. For example, if a \nchild specifies a <code>top</code> of 20 and does not specify any other position properties,\nthe child is positioned 20 units from the parent's top, and centered horizontally.</p>\n</li>\n<li>\n<p><code>vertical</code>. Children are laid out vertically from top to bottom. The first child \n    is laid out <code>top</code> units from its parent's bounding box. Each subsequent child is \n    laid out below the previous child. The space between children is equal to the \n    upper child's <code>bottom</code> value plus the lower child's <code>top</code> value.</p>\n<p>Each child is positioned horizontally as for the absolute layout mode.</p>\n</li>\n<li>\n<p><code>horizontal</code>. Like vertical layout, except children are laid out horizontally\n    from left to right, using the <code>left</code> and <code>right</code> values to determine spacing.</p>\n<p>Each child is positioned vertically as in the absolute layout mode.</p>\n</li>\n</ul>", 
                "default": "absolute layout", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.layout-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Specifies how the view positions its children. \nOne of: 'absolute', 'vertical', or 'horizontal'.</p>", 
                "type": "String", 
                "name": "layout"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.left-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's left position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "left"
            }, 
            {
                "description": null, 
                "default": "1.0 (opaque)", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.opacity-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Opacity of this view, from 0.0 (transparent) to 1.0 (opaque).</p>", 
                "type": "Number", 
                "name": "opacity"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.right-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's right position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "right"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.selected-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Index to make selected.</p>", 
                "type": "Number", 
                "name": "selected"
            }, 
            {
                "description": "<p>The correct values will only be available when rendering is fully complete.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.size-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Rendered size of the view as a dictionary of width and height properties.</p>", 
                "type": "Object", 
                "name": "size"
            }, 
            {
                "description": "<p>One of <a href=\"Titanium.UI.Android.SOFT_KEYBOARD_DEFAULT_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_DEFAULT_ON_FOCUS</code></a>, \n<a href=\"Titanium.UI.Android.SOFT_KEYBOARD_HIDE_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_HIDE_ON_FOCUS</code></a>, or \n<a href=\"Titanium.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS</code></a>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.softKeyboardOnFocus-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Determines keyboard behavior when this view is focused.</p>", 
                "type": "Number", 
                "name": "softKeyboardOnFocus"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.top-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The view's top position.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "top"
            }, 
            {
                "description": "<p>If false, will forward the events to peers.</p>", 
                "default": true, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.touchEnabled-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether view should receive touch events.</p>", 
                "type": "Boolean", 
                "name": "touchEnabled"
            }, 
            {
                "description": "<p>Android and Mobile Web only support 2DMatrix transforms.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.transform-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Transformation matrix to apply to the view.</p>", 
                "type": [
                    "Titanium.UI.2DMatrix", 
                    "Titanium.UI.iOS.3DMatrix"
                ], 
                "name": "transform"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.visible-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean value indicating whether the view is visible.</p>", 
                "type": "Boolean", 
                "name": "visible"
            }, 
            {
                "description": "<p>Can be either a float value or a dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying the view's width dimension. To \ndetermine the view's size once rendered, see the \n<a href=\"Titanium.UI.View.size-property.html\">size</a> property.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.width-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's width, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "width"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.zIndex-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Z index position relative to other sibling views.</p>", 
                "type": "Number", 
                "name": "zIndex"
            }
        ], 
        "description": "<p>This iOS-specific API has been moved to <a href=\"Titanium.UI.iOS.CoverFlowView-object.html\"><code>Titanium.UI.iOS.CoverFlowView</code></a>.</p>\n<p>Use the <a href=\"Titanium.UI.createCoverFlowView-method.html\"><code>Titanium.UI.createCoverFlowView</code></a> method to create a cover flow view.</p>", 
        "subtype": "proxy", 
        "deprecated": {
            "removed": "1.9.0", 
            "since": "1.8.0"
        }, 
        "filename": "Titanium.UI.CoverFlowView-object", 
        "methods": [
            {
                "description": "<p>There are certain top-level containers that are not intended to be added \nas the children of other views. These top-level containers include \n<a href=\"Titanium.UI.Window-object.html\">Window</a>, <a href=\"Titanium.UI.iPad.SplitWindow-object.html\">SplitWindow</a>,\nand <a href=\"Titanium.UI.TabGroup-object.html\">TabGroup</a>.  Other types of views must be added \nto a top-level container in order to be displayed on screen.</p>\n<p>The special containers <a href=\"Titanium.UI.iPhone.NavigationGroup-object.html\">NavigationGroup</a>, \n<a href=\"Titanium.UI.iPad.SplitWindow-object.html\">SplitWindow</a>, <a href=\"Titanium.UI.Tab-object.html\">Tab</a>, and \n<a href=\"Titanium.UI.TabGroup-object.html\">TabGroup</a>\nmanage windows. These managed windows may be referred to as <em>children</em> of the \ncontainer, but they are not added using the <code>add</code> method.</p>\n<p>Note that although a <code>NavigationGroup</code>\nmanages windows, it is not itself top-level container.  It must be added to a \n<code>Window</code> in order to be displayed. </p>\n<p><code>Tab</code> is another kind of special container: it is not itself a top-level container, \nbut can only be used within a <code>TabGroup</code>. You cannot <code>add</code> a <code>Tab</code> to an arbitrary\ncontainer.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.add-method.view-param", 
                        "optional": false, 
                        "summary": "<p>View to add to this view's hierarchy</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.add-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds a child to this view's hierarchy.</p>", 
                "name": "add"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": "<p>The <a href=\"Titanium.UI.Animation-object.html\">Animation</a> object or dictionary passed to this\nmethod defines the end state for the animation, the duration of the animation,\nand other properties.</p>\n<p>Note that if you use <code>animate</code> to move a view, the view's actual <em>position</em>\nis changed, but its layout properties, such as <code>top</code>, <code>left</code>, <code>center</code> and \nso on are not changed--these reflect the original values set by the user, not\nthe actual position of the view.</p>\n<p>In this release, the view's actual position is not available to the application. \nThis feature will be added to a future release.</p>\n<p>If you need one or more of the layout  properties to be updated after animation,\nyou can update them in the callback after animation is complete. For example:</p>\n<pre><code>var newTop = view1.top - 100;\nview1.animate({ top: newTop, duration: 500 }, function () {\n    view.top = newTop; \n});\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.animate-method.obj-param", 
                        "optional": false, 
                        "summary": "<p>Either a dictionary of animation properties or an \n<a href=\"Titanium.UI.Animation-object.html\">Animation</a> object.</p>", 
                        "type": [
                            "Titanium.UI.Animation", 
                            "Dictionary<Titanium.UI.Animation>"
                        ], 
                        "name": "obj"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.animate-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Function to be invoked upon completion of the animation.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.animate-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Animates this view.</p>", 
                "name": "animate"
            }, 
            {
                "description": "<p>If both views are connected in the native view hierarchies, returns the \npoint, converted to <code>destinationView</code>'s coordinate system.</p>\n<p>Returns <code>null</code> if either view is not in the view hierarchy.\nKeep in mind that views may be removed from the view hierarchy if their window \nis blurred or if the view is offscreen (such as in some situations with \n<a href=\"Titanium.UI.ScrollableView-object.html\"><code>Titanium.UI.ScrollableView</code></a>).</p>\n<p>If this view is a <a href=\"Titanium.UI.ScrollView-object.html\"><code>Titanium.UI.ScrollView</code></a>, the view's x and y offsets are \nsubtracted from the return value.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.convertPointToView-method.point-param", 
                        "optional": false, 
                        "summary": "<p>A point in this view's coordinate system.<br />\nIf this argument is missing an <code>x</code> or <code>y</code> property, or the properties can not \nbe converted into numbers, an exception will be raised.</p>", 
                        "type": "Point", 
                        "name": "point"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.convertPointToView-method.destinationView-param", 
                        "optional": false, 
                        "summary": "<p>View that specifies the destination coordinate system to convert to.\nIf this argument is not a view, an exception will be raised.</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "destinationView"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.convertPointToView-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Point"
                }, 
                "examples": [], 
                "summary": "<p>Translates a point from this view's coordinate system to another \nview's coordinate system.</p>", 
                "name": "convertPointToView"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getAnchorPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.anchorPoint-property.html\">anchorPoint</a> property.</p>", 
                "name": "getAnchorPoint"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getAnimatedCenterPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.animatedCenterPoint-property.html\">animatedCenterPoint</a> property.</p>", 
                "name": "getAnimatedCenterPoint"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundColor-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundColor-property.html\">backgroundColor</a> property.</p>", 
                "name": "getBackgroundColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundDisabledColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundDisabledColor-property.html\">backgroundDisabledColor</a> property.</p>", 
                "name": "getBackgroundDisabledColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundDisabledImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundDisabledImage-property.html\">backgroundDisabledImage</a> property.</p>", 
                "name": "getBackgroundDisabledImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundFocusedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundFocusedColor-property.html\">backgroundFocusedColor</a> property.</p>", 
                "name": "getBackgroundFocusedColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundFocusedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundFocusedImage-property.html\">backgroundFocusedImage</a> property.</p>", 
                "name": "getBackgroundFocusedImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundGradient-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Gradient"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundGradient-property.html\">backgroundGradient</a> property.</p>", 
                "name": "getBackgroundGradient"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundImage-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundImage-property.html\">backgroundImage</a> property.</p>", 
                "name": "getBackgroundImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundLeftCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundLeftCap-property.html\">backgroundLeftCap</a> property.</p>", 
                "name": "getBackgroundLeftCap"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundRepeat-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundRepeat-property.html\">backgroundRepeat</a> property.</p>", 
                "name": "getBackgroundRepeat"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundSelectedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundSelectedColor-property.html\">backgroundSelectedColor</a> property.</p>", 
                "name": "getBackgroundSelectedColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundSelectedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundSelectedImage-property.html\">backgroundSelectedImage</a> property.</p>", 
                "name": "getBackgroundSelectedImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBackgroundTopCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundTopCap-property.html\">backgroundTopCap</a> property.</p>", 
                "name": "getBackgroundTopCap"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBorderColor-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.borderColor-property.html\">borderColor</a> property.</p>", 
                "name": "getBorderColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBorderRadius-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.borderRadius-property.html\">borderRadius</a> property.</p>", 
                "name": "getBorderRadius"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBorderWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.borderWidth-property.html\">borderWidth</a> property.</p>", 
                "name": "getBorderWidth"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getBottom-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.bottom-property.html\">bottom</a> property.</p>", 
                "name": "getBottom"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getCenter-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.center-property.html\">center</a> property.</p>", 
                "name": "getCenter"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getChildren-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Titanium.UI.View>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.children-property.html\">children</a> property.</p>", 
                "name": "getChildren"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getFocusable-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.focusable-property.html\">focusable</a> property.</p>", 
                "name": "getFocusable"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getHeight-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.height-property.html\">height</a> property.</p>", 
                "name": "getHeight"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getImages-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<String>"
                    }, 
                    {
                        "type": "Array<Titanium.Blob>"
                    }, 
                    {
                        "type": "Array<Titanium.File>"
                    }, 
                    {
                        "type": "Array<CoverFlowImageType>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.images-property.html\">images</a> property.</p>", 
                "name": "getImages"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getKeepScreenOn-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.keepScreenOn-property.html\">keepScreenOn</a> property.</p>", 
                "name": "getKeepScreenOn"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getLayout-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.layout-property.html\">layout</a> property.</p>", 
                "name": "getLayout"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getLeft-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.left-property.html\">left</a> property.</p>", 
                "name": "getLeft"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getOpacity-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.opacity-property.html\">opacity</a> property.</p>", 
                "name": "getOpacity"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getRight-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.right-property.html\">right</a> property.</p>", 
                "name": "getRight"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getSelected-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.selected-property.html\">selected</a> property.</p>", 
                "name": "getSelected"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getSize-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Object"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.size-property.html\">size</a> property.</p>", 
                "name": "getSize"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getSoftKeyboardOnFocus-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.softKeyboardOnFocus-property.html\">softKeyboardOnFocus</a> property.</p>", 
                "name": "getSoftKeyboardOnFocus"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getTop-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.top-property.html\">top</a> property.</p>", 
                "name": "getTop"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getTouchEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.touchEnabled-property.html\">touchEnabled</a> property.</p>", 
                "name": "getTouchEnabled"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getTransform-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.UI.2DMatrix"
                    }, 
                    {
                        "type": "Titanium.UI.iOS.3DMatrix"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.transform-property.html\">transform</a> property.</p>", 
                "name": "getTransform"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getVisible-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.visible-property.html\">visible</a> property.</p>", 
                "name": "getVisible"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.width-property.html\">width</a> property.</p>", 
                "name": "getWidth"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.getZIndex-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.CoverFlowView.zIndex-property.html\">zIndex</a> property.</p>", 
                "name": "getZIndex"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.hide-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Hides this view.</p>", 
                "name": "hide"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.remove-method.view-param", 
                        "optional": false, 
                        "summary": "<p>View to remove from this view's hierarchy.</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.remove-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes a child view from this view's hierarchy.</p>", 
                "name": "remove"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setAnchorPoint-method.anchorPoint-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Point", 
                        "name": "anchorPoint"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setAnchorPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.anchorPoint-property.html\">anchorPoint</a> property.</p>", 
                "name": "setAnchorPoint"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundColor-method.backgroundColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundColor-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundColor-property.html\">backgroundColor</a> property.</p>", 
                "name": "setBackgroundColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundDisabledColor-method.backgroundDisabledColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundDisabledColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundDisabledColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundDisabledColor-property.html\">backgroundDisabledColor</a> property.</p>", 
                "name": "setBackgroundDisabledColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundDisabledImage-method.backgroundDisabledImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundDisabledImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundDisabledImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundDisabledImage-property.html\">backgroundDisabledImage</a> property.</p>", 
                "name": "setBackgroundDisabledImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundFocusedColor-method.backgroundFocusedColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundFocusedColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundFocusedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundFocusedColor-property.html\">backgroundFocusedColor</a> property.</p>", 
                "name": "setBackgroundFocusedColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundFocusedImage-method.backgroundFocusedImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundFocusedImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundFocusedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundFocusedImage-property.html\">backgroundFocusedImage</a> property.</p>", 
                "name": "setBackgroundFocusedImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundGradient-method.backgroundGradient-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Gradient", 
                        "name": "backgroundGradient"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundGradient-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundGradient-property.html\">backgroundGradient</a> property.</p>", 
                "name": "setBackgroundGradient"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundImage-method.backgroundImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundImage-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundImage-property.html\">backgroundImage</a> property.</p>", 
                "name": "setBackgroundImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundLeftCap-method.backgroundLeftCap-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "backgroundLeftCap"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundLeftCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundLeftCap-property.html\">backgroundLeftCap</a> property.</p>", 
                "name": "setBackgroundLeftCap"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundRepeat-method.backgroundRepeat-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "backgroundRepeat"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundRepeat-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundRepeat-property.html\">backgroundRepeat</a> property.</p>", 
                "name": "setBackgroundRepeat"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundSelectedColor-method.backgroundSelectedColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundSelectedColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundSelectedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundSelectedColor-property.html\">backgroundSelectedColor</a> property.</p>", 
                "name": "setBackgroundSelectedColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundSelectedImage-method.backgroundSelectedImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundSelectedImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundSelectedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundSelectedImage-property.html\">backgroundSelectedImage</a> property.</p>", 
                "name": "setBackgroundSelectedImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBackgroundTopCap-method.backgroundTopCap-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "backgroundTopCap"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBackgroundTopCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.backgroundTopCap-property.html\">backgroundTopCap</a> property.</p>", 
                "name": "setBackgroundTopCap"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBorderColor-method.borderColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "borderColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBorderColor-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.borderColor-property.html\">borderColor</a> property.</p>", 
                "name": "setBorderColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBorderRadius-method.borderRadius-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "borderRadius"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBorderRadius-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.borderRadius-property.html\">borderRadius</a> property.</p>", 
                "name": "setBorderRadius"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBorderWidth-method.borderWidth-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "borderWidth"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBorderWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.borderWidth-property.html\">borderWidth</a> property.</p>", 
                "name": "setBorderWidth"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setBottom-method.bottom-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "bottom"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setBottom-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.bottom-property.html\">bottom</a> property.</p>", 
                "name": "setBottom"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setCenter-method.center-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Point", 
                        "name": "center"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setCenter-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.center-property.html\">center</a> property.</p>", 
                "name": "setCenter"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setFocusable-method.focusable-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "focusable"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setFocusable-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.focusable-property.html\">focusable</a> property.</p>", 
                "name": "setFocusable"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setHeight-method.height-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "height"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setHeight-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.height-property.html\">height</a> property.</p>", 
                "name": "setHeight"
            }, 
            {
                "description": "<p>To specify a size for the image, you may pass the image as a simple dictionary, as\ndefined in <a href=\"CoverFlowImageType-object.html\"><code>CoverFlowImageType</code></a>.  If you specify a size, the size must be exact,\nnot 'auto' or a percentage size.</p>\n<p>If the image is passed as a <code>File</code> object or file path, the filename is checked.\nIf the filename includes the '@2x' string used to identify high-resolution images\nfor the Retina display, the image is treated accordingly.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setImage-method.index-param", 
                        "optional": false, 
                        "summary": "<p>Index to add the image at.</p>", 
                        "type": "Number", 
                        "name": "index"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setImage-method.image-param", 
                        "optional": false, 
                        "summary": "<p>Image to add at this index.</p>", 
                        "type": [
                            "String", 
                            "Titanium.Blob", 
                            "Titanium.File", 
                            "CoverFlowImageType"
                        ], 
                        "name": "image"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setImage-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Changes the image for a specified index.</p>", 
                "name": "setImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setImages-method.images-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Array<String>", 
                            "Array<Titanium.Blob>", 
                            "Array<Titanium.File>", 
                            "Array<CoverFlowImageType>"
                        ], 
                        "name": "images"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setImages-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.images-property.html\">images</a> property.</p>", 
                "name": "setImages"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setKeepScreenOn-method.keepScreenOn-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "keepScreenOn"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setKeepScreenOn-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.keepScreenOn-property.html\">keepScreenOn</a> property.</p>", 
                "name": "setKeepScreenOn"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setLayout-method.layout-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "layout"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setLayout-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.layout-property.html\">layout</a> property.</p>", 
                "name": "setLayout"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setLeft-method.left-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "left"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setLeft-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.left-property.html\">left</a> property.</p>", 
                "name": "setLeft"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setOpacity-method.opacity-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "opacity"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setOpacity-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.opacity-property.html\">opacity</a> property.</p>", 
                "name": "setOpacity"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setRight-method.right-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "right"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setRight-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.right-property.html\">right</a> property.</p>", 
                "name": "setRight"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setSelected-method.selected-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "selected"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setSelected-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.selected-property.html\">selected</a> property.</p>", 
                "name": "setSelected"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setSoftKeyboardOnFocus-method.softKeyboardOnFocus-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "softKeyboardOnFocus"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setSoftKeyboardOnFocus-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.softKeyboardOnFocus-property.html\">softKeyboardOnFocus</a> property.</p>", 
                "name": "setSoftKeyboardOnFocus"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setTop-method.top-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "top"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setTop-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.top-property.html\">top</a> property.</p>", 
                "name": "setTop"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setTouchEnabled-method.touchEnabled-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "touchEnabled"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setTouchEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.touchEnabled-property.html\">touchEnabled</a> property.</p>", 
                "name": "setTouchEnabled"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setTransform-method.transform-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Titanium.UI.2DMatrix", 
                            "Titanium.UI.iOS.3DMatrix"
                        ], 
                        "name": "transform"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setTransform-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.transform-property.html\">transform</a> property.</p>", 
                "name": "setTransform"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setVisible-method.visible-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "visible"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setVisible-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.visible-property.html\">visible</a> property.</p>", 
                "name": "setVisible"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setWidth-method.width-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "width"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.width-property.html\">width</a> property.</p>", 
                "name": "setWidth"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.setZIndex-method.zIndex-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "zIndex"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.setZIndex-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.CoverFlowView.zIndex-property.html\">zIndex</a> property.</p>", 
                "name": "setZIndex"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.show-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Makes this view visible.</p>", 
                "name": "show"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.toImage-method.f-param", 
                        "type": "Callback<Object>", 
                        "summary": "<p>Function to be invoked upon completion. If non-null, this method will be \nperformed asynchronously. If null, it will be performed immediately.</p>", 
                        "optional": true, 
                        "name": "f"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.toImage-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Blob"
                }, 
                "examples": [], 
                "summary": "<p>Returns an image of the rendered view, as a Blob.</p>", 
                "name": "toImage"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }
        ], 
        "examples": [
            {
                "code": "<p>Create a simple cover flow view.</p>\n<pre><code>var view = Titanium.UI.createCoverFlowView({\n    images:['a.png','b.png','c.png'],\n    backgroundColor:'#000'\n});\nwindow.add(view);\n</code></pre>", 
                "description": "Simple 3 image cover flow example"
            }
        ], 
        "summary": "<p>Use <a href=\"Titanium.UI.iOS.CoverFlowView-object.html\"><code>Titanium.UI.iOS.CoverFlowView</code></a> instead.</p>", 
        "type": "object", 
        "events": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.change-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the user changes the image using a gesture.</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.change.index-callback-property", 
                        "summary": "<p>Index of the image that is now visible.</p>", 
                        "type": "Number", 
                        "name": "index"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.change.previous-callback-property", 
                        "summary": "<p>Index of the previously-visible image.</p>", 
                        "type": "Number", 
                        "name": "previous"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.change.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.change.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "change"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.CoverFlowView.click-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the user clicks on the view.</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.click.index-callback-property", 
                        "summary": "<p>Index of the image that is now visible.</p>", 
                        "type": "Number", 
                        "name": "index"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.click.previous-callback-property", 
                        "summary": "<p>Index of the previously-visible image.</p>", 
                        "type": "Number", 
                        "name": "previous"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.click.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.CoverFlowView.click.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "click"
            }
        ], 
        "name": "Titanium.UI.CoverFlowView"
    }, 
    "Titanium.UI.ScrollableView": {
        "properties": [
            {
                "description": "<p>Anchor point is specified as a fraction of the view's size. So \n(0.5,0.5) represents the view's center and (1, 1) is the view's bottom-right \ncorner.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.anchorPoint-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Anchor point where animation should occur, relative to the view's boundaries.</p>", 
                "type": "Point", 
                "name": "anchorPoint"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.animatedCenterPoint-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Current position of the view during an animation.</p>", 
                "type": "Point", 
                "name": "animatedCenterPoint"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundDisabledColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Disabled background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundDisabledColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundDisabledImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Disabled background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundDisabledImage"
            }, 
            {
                "description": "<p>For normal views, the focused color is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundFocusedColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Focused background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundFocusedColor"
            }, 
            {
                "description": "<p>For normal views, the focused background is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundFocusedImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Focused background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundFocusedImage"
            }, 
            {
                "description": "<p>A gradient can be defined as either linear or radial. A linear gradient\nvaries continuously along a line between the <code>startPoint</code> and <code>endPoint</code>.\nA radial gradient is interpolated between two circles, defined by <code>startPoint</code>\nand <code>startRadius</code> and <code>endPoint</code> and <code>endRadius</code> respectively.</p>\n<p>The start and end points and radius values can be defined in device units,\nin the view's coordinates, or as percentages of the view's size. Thus, if\na view is 60 x 60, the center point of the view can be specified as:</p>\n<pre><code>{ x: 30, y: 30 }\n</code></pre>\n<p>Or:\n    { x: '50%', y: '50%' }</p>\n<p>When specifying multiple colors, you can specify an <em>offset</em> value for\neach color, defining how far into the gradient it takes effect. For example,\nthe following color array specifies a gradient that goes from red to blue back to red:</p>\n<pre><code>colors: [ { color: 'red', offset: 0.0}, { color: 'blue', offset: 0.25 }, { color: 'red', offset: 1.0 } ]\n</code></pre>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundGradient-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [
                    {
                        "code": "<p>The following code excerpt creates two views, one with a linear gradient and one with\na radial gradient.</p>\n<pre><code>var win1 = Titanium.UI.createWindow({\n    title:'Tab 1',\n    backgroundColor:'#fff',\n    layout: 'vertical'\n});\n\nvar radialGradient = Ti.UI.createView({\n    top: 10,\n    width: 100,\n    height: 100,\n    backgroundGradient: {\n        type: 'radial',\n        startPoint: { x: 50, y: 50 },\n        endPoint: { x: 50, y: 50 },\n        colors: [ 'red', 'blue'],\n        startRadius: '90%',\n        endRadius: 0,\n        backfillStart: true\n    }\n});\nvar linearGradient = Ti.UI.createView({\n    top: 10,\n    width: 100,\n    height: 100,\n    backgroundGradient: {\n        type: 'linear',\n        startPoint: { x: '0%', y: '50%' },\n        endPoint: { x: '100%', y: '50%' },\n        colors: [ { color: 'red', offset: 0.0}, { color: 'blue', offset: 0.25 }, { color: 'red', offset: 1.0 } ],\n    }\n});\nwin1.add(radialGradient);\nwin1.add(linearGradient);\nwin1.open();\n</code></pre>", 
                        "description": "Linear and Radial Gradients"
                    }
                ], 
                "summary": "<p>A background gradient for the view.</p>", 
                "type": "Gradient", 
                "name": "backgroundGradient"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundImage"
            }, 
            {
                "description": "<p>End caps specify the portion of an image that should not be resized when an \nimage is stretched. This technique is used to implement buttons and other \nresizable image-based interface elements. When a button with end caps is resized, \nthe resizing occurs only in the middle of the button, in the region between the end \ncaps. The end caps themselves keep their original size and appearance. This property \nspecifies the size of the left end cap. The middle (stretchable) portion is assumed to \nbe 1 pixel wide. The right end cap is therefore computed by adding the size of the left \nend cap and the middle portion together and then subtracting that value from the width \nof the image</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundLeftCap-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Size of the left end cap.</p>", 
                "type": "Number", 
                "name": "backgroundLeftCap"
            }, 
            {
                "description": "<p>Setting this to <code>true</code> makes the set <code>backgroundImage</code> repeat across\nthe view as a series of tiles. The tiling is begins in the upper-left\ncorner, where the upper-left corner of the background image is rendered.\nThe image is then tiled to fill the available space of the view.</p>\n<p>Note that setting this to <code>true</code> may incur performance penalties for\nlarge views or background images, as the tiling must be redone\nwhenever a view is resized.</p>\n<p>The following views do not currently support tiled backgrounds:\n<em> <a href=\"Titanium.UI.Button-object.html\"><code>Titanium.UI.Button</code></a>\n</em> <a href=\"Titanium.UI.TextField-object.html\"><code>Titanium.UI.TextField</code></a>\n* <a href=\"Titanium.UI.Label-object.html\"><code>Titanium.UI.Label</code></a></p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundRepeat-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Toggle for whether or not to tile a background across a view.</p>", 
                "type": "Boolean", 
                "name": "backgroundRepeat"
            }, 
            {
                "description": "<p>focusable must be true for normal views.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundSelectedColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Selected background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundSelectedColor"
            }, 
            {
                "description": "<p>For normal views, the selected background is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundSelectedImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Selected background image url for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundSelectedImage"
            }, 
            {
                "description": "<p>End caps specify the portion of an image that should not be resized when an image \nis stretched. This technique is used to implement buttons and other resizable \nimage-based interface elements. When a button with end caps is resized, the resizing \noccurs only in the middle of the button, in the region between the end caps. The end \ncaps themselves keep their original size and appearance. This property specifies the \nsize of the top end cap. The middle (stretchable) portion is assumed to be 1 pixel wide. \nThe bottom end cap is therefore computed by adding the size of the top end cap and the\nmiddle portion together and then subtracting that value from the height of the image.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.backgroundTopCap-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Size of the top end cap.</p>", 
                "type": "Number", 
                "name": "backgroundTopCap"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.borderColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border color of the view.</p>", 
                "type": "String", 
                "name": "borderColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.borderRadius-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border radius of the view.</p>", 
                "type": "Number", 
                "name": "borderRadius"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.borderWidth-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border width of the view.</p>", 
                "type": "Number", 
                "name": "borderWidth"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.bottom-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's bottom position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "bottom"
            }, 
            {
                "description": "<p>Views are rendered in the range (currentPage +/- (cacheSize - 1)/2), ROUNDED DOWN for even \nvalues (i.e. cacheSize=4 renders 3 views into the cache.) Keep in mind that improved \nperformance (larger cache) will lead to faster performance, but greater memory usage.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.cacheSize-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Number of views to cache (pre-render).</p>", 
                "type": "Number", 
                "name": "cacheSize"
            }, 
            {
                "description": "<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.center-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's center position, in the parent view's coordinates.</p>", 
                "type": "Point", 
                "name": "center"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.children-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of this view's child views.</p>", 
                "type": "Array<Titanium.UI.View>", 
                "name": "children"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.currentPage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Index of the active page.</p>", 
                "type": "Number", 
                "name": "currentPage"
            }, 
            {
                "description": null, 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.disableBounce-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Determines whether view bouncing effect is disabled.</p>", 
                "type": "Boolean", 
                "name": "disableBounce"
            }, 
            {
                "description": null, 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.focusable-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether view should be focusable while navigating with the trackball.</p>", 
                "type": "Boolean", 
                "name": "focusable"
            }, 
            {
                "description": "<p>Can be either a float value or a dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying the view's height dimension. To determine the view's \nsize once rendered, see the <a href=\"Titanium.UI.View.size-property.html\">size</a> property.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.height-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View height, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "height"
            }, 
            {
                "description": "<p>When <code>true</code> the screen will not power down. Note: enabling this feature will use more \npower, thereby adversely affecting run time when on battery.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.keepScreenOn-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether to keep the device screen on.</p>", 
                "type": "Boolean", 
                "name": "keepScreenOn"
            }, 
            {
                "description": "<p>There are three layout options:</p>\n<ul>\n<li>\n<p><code>absolute</code>. Default layout. A child view's <code>top</code>, <code>bottom</code>, <code>left</code>, and <code>right</code> \n    properties are interpreted as absolute values in the parent's coordinate space.</p>\n<p>If the child includes a <code>top</code> value and <strong>not</strong> a <code>bottom</code> value, the child is \npositioned <code>top</code> units from the top of the parent's bounding box, and its height\nis set based on its <code>height</code> property.</p>\n<p>If the child includes a <code>bottom</code> value and <strong>not</strong> a <code>top</code> value, the child is \npositioned <code>bottom</code> units from the bottom of the parent's bounding box. Its height\nis set based on its <code>height</code> property.</p>\n<p>If the child includes both <code>top</code> and <code>bottom</code> values, the behavior is \nplatform-specific.</p>\n<p>Similar calculations are used for <code>left</code> and <code>right</code>. </p>\n<p>You can also position a child by setting its <code>center</code> property to a <a href=\"Point-object.html\"><code>Point</code></a>.</p>\n<p>If no position is set explicitly, children are centered. For example, if a \nchild specifies a <code>top</code> of 20 and does not specify any other position properties,\nthe child is positioned 20 units from the parent's top, and centered horizontally.</p>\n</li>\n<li>\n<p><code>vertical</code>. Children are laid out vertically from top to bottom. The first child \n    is laid out <code>top</code> units from its parent's bounding box. Each subsequent child is \n    laid out below the previous child. The space between children is equal to the \n    upper child's <code>bottom</code> value plus the lower child's <code>top</code> value.</p>\n<p>Each child is positioned horizontally as for the absolute layout mode.</p>\n</li>\n<li>\n<p><code>horizontal</code>. Like vertical layout, except children are laid out horizontally\n    from left to right, using the <code>left</code> and <code>right</code> values to determine spacing.</p>\n<p>Each child is positioned vertically as in the absolute layout mode.</p>\n</li>\n</ul>", 
                "default": "absolute layout", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.layout-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Specifies how the view positions its children. \nOne of: 'absolute', 'vertical', or 'horizontal'.</p>", 
                "type": "String", 
                "name": "layout"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.left-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's left position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "left"
            }, 
            {
                "description": null, 
                "default": "1.0 (opaque)", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.opacity-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Opacity of this view, from 0.0 (transparent) to 1.0 (opaque).</p>", 
                "type": "Number", 
                "name": "opacity"
            }, 
            {
                "description": null, 
                "default": "black", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.pagingControlColor-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Color of the paging control, in \n<a href=\"http://en.wikipedia.org/wiki/Web_colors#HTML_color_names\">web color</a> name or hex format.</p>", 
                "type": "String", 
                "name": "pagingControlColor"
            }, 
            {
                "description": null, 
                "default": 20, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.pagingControlHeight-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Height of the paging control, in pixels.</p>", 
                "type": "Number", 
                "name": "pagingControlHeight"
            }, 
            {
                "description": null, 
                "default": 3000, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.pagingControlTimeout-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Number of milliseconds to wait before hiding the paging control. Less than or equal to \n0 disables timeout, keeping controls displayed.</p>", 
                "type": "Number", 
                "availability": "creation", 
                "name": "pagingControlTimeout"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.right-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's right position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "right"
            }, 
            {
                "description": null, 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.showPagingControl-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Determines whether the paging control is visible.</p>", 
                "type": "Boolean", 
                "name": "showPagingControl"
            }, 
            {
                "description": "<p>The correct values will only be available when rendering is fully complete.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.size-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Rendered size of the view as a dictionary of width and height properties.</p>", 
                "type": "Object", 
                "name": "size"
            }, 
            {
                "description": "<p>One of <a href=\"Titanium.UI.Android.SOFT_KEYBOARD_DEFAULT_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_DEFAULT_ON_FOCUS</code></a>, \n<a href=\"Titanium.UI.Android.SOFT_KEYBOARD_HIDE_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_HIDE_ON_FOCUS</code></a>, or \n<a href=\"Titanium.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS</code></a>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.softKeyboardOnFocus-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Determines keyboard behavior when this view is focused.</p>", 
                "type": "Number", 
                "name": "softKeyboardOnFocus"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.top-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The view's top position.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "top"
            }, 
            {
                "description": "<p>If false, will forward the events to peers.</p>", 
                "default": true, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.touchEnabled-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether view should receive touch events.</p>", 
                "type": "Boolean", 
                "name": "touchEnabled"
            }, 
            {
                "description": "<p>Android and Mobile Web only support 2DMatrix transforms.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.transform-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Transformation matrix to apply to the view.</p>", 
                "type": [
                    "Titanium.UI.2DMatrix", 
                    "Titanium.UI.iOS.3DMatrix"
                ], 
                "name": "transform"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.views-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Sets the views within this Scrollable View.</p>", 
                "type": "Array<Titanium.UI.View>", 
                "name": "views"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.visible-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean value indicating whether the view is visible.</p>", 
                "type": "Boolean", 
                "name": "visible"
            }, 
            {
                "description": "<p>Can be either a float value or a dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying the view's width dimension. To \ndetermine the view's size once rendered, see the \n<a href=\"Titanium.UI.View.size-property.html\">size</a> property.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.width-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's width, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "width"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.zIndex-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Z index position relative to other sibling views.</p>", 
                "type": "Number", 
                "name": "zIndex"
            }
        ], 
        "description": "<p>Use the <a href=\"Titanium.UI.createScrollableView-method.html\"><code>Titanium.UI.createScrollableView</code></a> method to create a scrollable view.</p>\n<p>ScrollableView supports a visual paging control that may be enabled to indicate on-screen that \na view is visible.</p>\n<p>Only the <code>scroll</code> event exists on Android. To support those that are missing, event listeners \nmay be added to its child views.</p>\n<p>In a previous Titanium version for iOS, the <code>maxZoomScale</code> and <code>minZoomScale</code> properties were \nremoved for performance and parity reasons. As they still remain in <a href=\"Titanium.UI.ScrollView-object.html\"><code>Titanium.UI.ScrollView</code></a>, \nthe equivalent functionality may be obtained by adding a ScrollView to ScrollableView. See the \n\"Simple Scrollable View with 2 Zoomable Images\" example for a demonstration.</p>", 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.UI.ScrollableView-object", 
        "methods": [
            {
                "description": "<p>There are certain top-level containers that are not intended to be added \nas the children of other views. These top-level containers include \n<a href=\"Titanium.UI.Window-object.html\">Window</a>, <a href=\"Titanium.UI.iPad.SplitWindow-object.html\">SplitWindow</a>,\nand <a href=\"Titanium.UI.TabGroup-object.html\">TabGroup</a>.  Other types of views must be added \nto a top-level container in order to be displayed on screen.</p>\n<p>The special containers <a href=\"Titanium.UI.iPhone.NavigationGroup-object.html\">NavigationGroup</a>, \n<a href=\"Titanium.UI.iPad.SplitWindow-object.html\">SplitWindow</a>, <a href=\"Titanium.UI.Tab-object.html\">Tab</a>, and \n<a href=\"Titanium.UI.TabGroup-object.html\">TabGroup</a>\nmanage windows. These managed windows may be referred to as <em>children</em> of the \ncontainer, but they are not added using the <code>add</code> method.</p>\n<p>Note that although a <code>NavigationGroup</code>\nmanages windows, it is not itself top-level container.  It must be added to a \n<code>Window</code> in order to be displayed. </p>\n<p><code>Tab</code> is another kind of special container: it is not itself a top-level container, \nbut can only be used within a <code>TabGroup</code>. You cannot <code>add</code> a <code>Tab</code> to an arbitrary\ncontainer.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.add-method.view-param", 
                        "optional": false, 
                        "summary": "<p>View to add to this view's hierarchy</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.add-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds a child to this view's hierarchy.</p>", 
                "name": "add"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.addView-method.view-param", 
                        "optional": false, 
                        "summary": "<p>The view to add.</p>", 
                        "type": "Object", 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.addView-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds a new view to this Scrollable View.</p>", 
                "name": "addView"
            }, 
            {
                "description": "<p>The <a href=\"Titanium.UI.Animation-object.html\">Animation</a> object or dictionary passed to this\nmethod defines the end state for the animation, the duration of the animation,\nand other properties.</p>\n<p>Note that if you use <code>animate</code> to move a view, the view's actual <em>position</em>\nis changed, but its layout properties, such as <code>top</code>, <code>left</code>, <code>center</code> and \nso on are not changed--these reflect the original values set by the user, not\nthe actual position of the view.</p>\n<p>In this release, the view's actual position is not available to the application. \nThis feature will be added to a future release.</p>\n<p>If you need one or more of the layout  properties to be updated after animation,\nyou can update them in the callback after animation is complete. For example:</p>\n<pre><code>var newTop = view1.top - 100;\nview1.animate({ top: newTop, duration: 500 }, function () {\n    view.top = newTop; \n});\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.animate-method.obj-param", 
                        "optional": false, 
                        "summary": "<p>Either a dictionary of animation properties or an \n<a href=\"Titanium.UI.Animation-object.html\">Animation</a> object.</p>", 
                        "type": [
                            "Titanium.UI.Animation", 
                            "Dictionary<Titanium.UI.Animation>"
                        ], 
                        "name": "obj"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.animate-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Function to be invoked upon completion of the animation.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.animate-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Animates this view.</p>", 
                "name": "animate"
            }, 
            {
                "description": "<p>If both views are connected in the native view hierarchies, returns the \npoint, converted to <code>destinationView</code>'s coordinate system.</p>\n<p>Returns <code>null</code> if either view is not in the view hierarchy.\nKeep in mind that views may be removed from the view hierarchy if their window \nis blurred or if the view is offscreen (such as in some situations with \n<a href=\"Titanium.UI.ScrollableView-object.html\"><code>Titanium.UI.ScrollableView</code></a>).</p>\n<p>If this view is a <a href=\"Titanium.UI.ScrollView-object.html\"><code>Titanium.UI.ScrollView</code></a>, the view's x and y offsets are \nsubtracted from the return value.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.convertPointToView-method.point-param", 
                        "optional": false, 
                        "summary": "<p>A point in this view's coordinate system.<br />\nIf this argument is missing an <code>x</code> or <code>y</code> property, or the properties can not \nbe converted into numbers, an exception will be raised.</p>", 
                        "type": "Point", 
                        "name": "point"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.convertPointToView-method.destinationView-param", 
                        "optional": false, 
                        "summary": "<p>View that specifies the destination coordinate system to convert to.\nIf this argument is not a view, an exception will be raised.</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "destinationView"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.convertPointToView-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Point"
                }, 
                "examples": [], 
                "summary": "<p>Translates a point from this view's coordinate system to another \nview's coordinate system.</p>", 
                "name": "convertPointToView"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getAnchorPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.anchorPoint-property.html\">anchorPoint</a> property.</p>", 
                "name": "getAnchorPoint"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getAnimatedCenterPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.animatedCenterPoint-property.html\">animatedCenterPoint</a> property.</p>", 
                "name": "getAnimatedCenterPoint"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundColor-property.html\">backgroundColor</a> property.</p>", 
                "name": "getBackgroundColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundDisabledColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundDisabledColor-property.html\">backgroundDisabledColor</a> property.</p>", 
                "name": "getBackgroundDisabledColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundDisabledImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundDisabledImage-property.html\">backgroundDisabledImage</a> property.</p>", 
                "name": "getBackgroundDisabledImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundFocusedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundFocusedColor-property.html\">backgroundFocusedColor</a> property.</p>", 
                "name": "getBackgroundFocusedColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundFocusedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundFocusedImage-property.html\">backgroundFocusedImage</a> property.</p>", 
                "name": "getBackgroundFocusedImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundGradient-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Gradient"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundGradient-property.html\">backgroundGradient</a> property.</p>", 
                "name": "getBackgroundGradient"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundImage-property.html\">backgroundImage</a> property.</p>", 
                "name": "getBackgroundImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundLeftCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundLeftCap-property.html\">backgroundLeftCap</a> property.</p>", 
                "name": "getBackgroundLeftCap"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundRepeat-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundRepeat-property.html\">backgroundRepeat</a> property.</p>", 
                "name": "getBackgroundRepeat"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundSelectedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundSelectedColor-property.html\">backgroundSelectedColor</a> property.</p>", 
                "name": "getBackgroundSelectedColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundSelectedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundSelectedImage-property.html\">backgroundSelectedImage</a> property.</p>", 
                "name": "getBackgroundSelectedImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBackgroundTopCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundTopCap-property.html\">backgroundTopCap</a> property.</p>", 
                "name": "getBackgroundTopCap"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBorderColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.borderColor-property.html\">borderColor</a> property.</p>", 
                "name": "getBorderColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBorderRadius-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.borderRadius-property.html\">borderRadius</a> property.</p>", 
                "name": "getBorderRadius"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBorderWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.borderWidth-property.html\">borderWidth</a> property.</p>", 
                "name": "getBorderWidth"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getBottom-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.bottom-property.html\">bottom</a> property.</p>", 
                "name": "getBottom"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getCacheSize-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.cacheSize-property.html\">cacheSize</a> property.</p>", 
                "name": "getCacheSize"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getCenter-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.center-property.html\">center</a> property.</p>", 
                "name": "getCenter"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getChildren-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Titanium.UI.View>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.children-property.html\">children</a> property.</p>", 
                "name": "getChildren"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getCurrentPage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.currentPage-property.html\">currentPage</a> property.</p>", 
                "name": "getCurrentPage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getDisableBounce-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.disableBounce-property.html\">disableBounce</a> property.</p>", 
                "name": "getDisableBounce"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getFocusable-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.focusable-property.html\">focusable</a> property.</p>", 
                "name": "getFocusable"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getHeight-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.height-property.html\">height</a> property.</p>", 
                "name": "getHeight"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getKeepScreenOn-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.keepScreenOn-property.html\">keepScreenOn</a> property.</p>", 
                "name": "getKeepScreenOn"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getLayout-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.layout-property.html\">layout</a> property.</p>", 
                "name": "getLayout"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getLeft-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.left-property.html\">left</a> property.</p>", 
                "name": "getLeft"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getOpacity-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.opacity-property.html\">opacity</a> property.</p>", 
                "name": "getOpacity"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getPagingControlColor-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.pagingControlColor-property.html\">pagingControlColor</a> property.</p>", 
                "name": "getPagingControlColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getPagingControlHeight-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.pagingControlHeight-property.html\">pagingControlHeight</a> property.</p>", 
                "name": "getPagingControlHeight"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getPagingControlTimeout-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.pagingControlTimeout-property.html\">pagingControlTimeout</a> property.</p>", 
                "name": "getPagingControlTimeout"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getRight-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.right-property.html\">right</a> property.</p>", 
                "name": "getRight"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getShowPagingControl-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.showPagingControl-property.html\">showPagingControl</a> property.</p>", 
                "name": "getShowPagingControl"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getSize-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Object"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.size-property.html\">size</a> property.</p>", 
                "name": "getSize"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getSoftKeyboardOnFocus-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.softKeyboardOnFocus-property.html\">softKeyboardOnFocus</a> property.</p>", 
                "name": "getSoftKeyboardOnFocus"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getTop-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.top-property.html\">top</a> property.</p>", 
                "name": "getTop"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getTouchEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.touchEnabled-property.html\">touchEnabled</a> property.</p>", 
                "name": "getTouchEnabled"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getTransform-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Titanium.UI.2DMatrix"
                    }, 
                    {
                        "type": "Titanium.UI.iOS.3DMatrix"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.transform-property.html\">transform</a> property.</p>", 
                "name": "getTransform"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getViews-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Titanium.UI.View>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.views-property.html\">views</a> property.</p>", 
                "name": "getViews"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getVisible-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.visible-property.html\">visible</a> property.</p>", 
                "name": "getVisible"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.width-property.html\">width</a> property.</p>", 
                "name": "getWidth"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.getZIndex-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.ScrollableView.zIndex-property.html\">zIndex</a> property.</p>", 
                "name": "getZIndex"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.hide-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Hides this view.</p>", 
                "name": "hide"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.moveNext-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the current page to the next consecutive view in <a href=\"Titanium.UI.ScrollableView.views-property.html\"><code>Titanium.UI.ScrollableView.views</code></a>.</p>", 
                "name": "moveNext"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.movePrevious-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the current page to the previous consecutive view in <a href=\"Titanium.UI.ScrollableView.views-property.html\"><code>Titanium.UI.ScrollableView.views</code></a>.</p>", 
                "name": "movePrevious"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.remove-method.view-param", 
                        "optional": false, 
                        "summary": "<p>View to remove from this view's hierarchy.</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.remove-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes a child view from this view's hierarchy.</p>", 
                "name": "remove"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.removeView-method.view-param", 
                        "optional": false, 
                        "summary": "<p>A <a href=\"Titanium.UI.View-object.html\"><code>Titanium.UI.View</code></a> object or integer index (iPhone, iPad only) of a view to remove.</p>", 
                        "type": [
                            "Number", 
                            "Object"
                        ], 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.removeView-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes an existing view from this Scrollable View. Does nothing if view proivded does \nnot exist.</p>", 
                "name": "removeView"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.scrollToView-method.view-param", 
                        "optional": false, 
                        "summary": "<p>An integer index or a <a href=\"Titanium.UI.View-object.html\"><code>Titanium.UI.View</code></a> object of the view to set as the current page.</p>", 
                        "type": [
                            "Number", 
                            "Object"
                        ], 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.scrollToView-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Scrolls to the specified view in <a href=\"Titanium.UI.ScrollableView.views-property.html\"><code>Titanium.UI.ScrollableView.views</code></a>.</p>", 
                "name": "scrollToView"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setAnchorPoint-method.anchorPoint-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Point", 
                        "name": "anchorPoint"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setAnchorPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.anchorPoint-property.html\">anchorPoint</a> property.</p>", 
                "name": "setAnchorPoint"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundColor-method.backgroundColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundColor-property.html\">backgroundColor</a> property.</p>", 
                "name": "setBackgroundColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundDisabledColor-method.backgroundDisabledColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundDisabledColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundDisabledColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundDisabledColor-property.html\">backgroundDisabledColor</a> property.</p>", 
                "name": "setBackgroundDisabledColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundDisabledImage-method.backgroundDisabledImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundDisabledImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundDisabledImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundDisabledImage-property.html\">backgroundDisabledImage</a> property.</p>", 
                "name": "setBackgroundDisabledImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundFocusedColor-method.backgroundFocusedColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundFocusedColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundFocusedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundFocusedColor-property.html\">backgroundFocusedColor</a> property.</p>", 
                "name": "setBackgroundFocusedColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundFocusedImage-method.backgroundFocusedImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundFocusedImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundFocusedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundFocusedImage-property.html\">backgroundFocusedImage</a> property.</p>", 
                "name": "setBackgroundFocusedImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundGradient-method.backgroundGradient-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Gradient", 
                        "name": "backgroundGradient"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundGradient-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundGradient-property.html\">backgroundGradient</a> property.</p>", 
                "name": "setBackgroundGradient"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundImage-method.backgroundImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundImage-property.html\">backgroundImage</a> property.</p>", 
                "name": "setBackgroundImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundLeftCap-method.backgroundLeftCap-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "backgroundLeftCap"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundLeftCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundLeftCap-property.html\">backgroundLeftCap</a> property.</p>", 
                "name": "setBackgroundLeftCap"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundRepeat-method.backgroundRepeat-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "backgroundRepeat"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundRepeat-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundRepeat-property.html\">backgroundRepeat</a> property.</p>", 
                "name": "setBackgroundRepeat"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundSelectedColor-method.backgroundSelectedColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundSelectedColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundSelectedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundSelectedColor-property.html\">backgroundSelectedColor</a> property.</p>", 
                "name": "setBackgroundSelectedColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundSelectedImage-method.backgroundSelectedImage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "backgroundSelectedImage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundSelectedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundSelectedImage-property.html\">backgroundSelectedImage</a> property.</p>", 
                "name": "setBackgroundSelectedImage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBackgroundTopCap-method.backgroundTopCap-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "backgroundTopCap"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBackgroundTopCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.backgroundTopCap-property.html\">backgroundTopCap</a> property.</p>", 
                "name": "setBackgroundTopCap"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBorderColor-method.borderColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "borderColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBorderColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.borderColor-property.html\">borderColor</a> property.</p>", 
                "name": "setBorderColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBorderRadius-method.borderRadius-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "borderRadius"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBorderRadius-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.borderRadius-property.html\">borderRadius</a> property.</p>", 
                "name": "setBorderRadius"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBorderWidth-method.borderWidth-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "borderWidth"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBorderWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.borderWidth-property.html\">borderWidth</a> property.</p>", 
                "name": "setBorderWidth"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setBottom-method.bottom-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "bottom"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setBottom-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.bottom-property.html\">bottom</a> property.</p>", 
                "name": "setBottom"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setCacheSize-method.cacheSize-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "cacheSize"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setCacheSize-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.cacheSize-property.html\">cacheSize</a> property.</p>", 
                "name": "setCacheSize"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setCenter-method.center-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Point", 
                        "name": "center"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setCenter-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.center-property.html\">center</a> property.</p>", 
                "name": "setCenter"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setCurrentPage-method.currentPage-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "currentPage"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setCurrentPage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.currentPage-property.html\">currentPage</a> property.</p>", 
                "name": "setCurrentPage"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setDisableBounce-method.disableBounce-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "disableBounce"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setDisableBounce-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.disableBounce-property.html\">disableBounce</a> property.</p>", 
                "name": "setDisableBounce"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setFocusable-method.focusable-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "focusable"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setFocusable-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.focusable-property.html\">focusable</a> property.</p>", 
                "name": "setFocusable"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setHeight-method.height-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "height"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setHeight-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.height-property.html\">height</a> property.</p>", 
                "name": "setHeight"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setKeepScreenOn-method.keepScreenOn-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "keepScreenOn"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setKeepScreenOn-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.keepScreenOn-property.html\">keepScreenOn</a> property.</p>", 
                "name": "setKeepScreenOn"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setLayout-method.layout-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "layout"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setLayout-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.layout-property.html\">layout</a> property.</p>", 
                "name": "setLayout"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setLeft-method.left-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "left"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setLeft-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.left-property.html\">left</a> property.</p>", 
                "name": "setLeft"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setOpacity-method.opacity-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "opacity"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setOpacity-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.opacity-property.html\">opacity</a> property.</p>", 
                "name": "setOpacity"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setPagingControlColor-method.pagingControlColor-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "String", 
                        "name": "pagingControlColor"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setPagingControlColor-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.pagingControlColor-property.html\">pagingControlColor</a> property.</p>", 
                "name": "setPagingControlColor"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setPagingControlHeight-method.pagingControlHeight-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "pagingControlHeight"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setPagingControlHeight-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.pagingControlHeight-property.html\">pagingControlHeight</a> property.</p>", 
                "name": "setPagingControlHeight"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setRight-method.right-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "right"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setRight-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.right-property.html\">right</a> property.</p>", 
                "name": "setRight"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setShowPagingControl-method.showPagingControl-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "showPagingControl"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setShowPagingControl-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.showPagingControl-property.html\">showPagingControl</a> property.</p>", 
                "name": "setShowPagingControl"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setSoftKeyboardOnFocus-method.softKeyboardOnFocus-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "softKeyboardOnFocus"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setSoftKeyboardOnFocus-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.softKeyboardOnFocus-property.html\">softKeyboardOnFocus</a> property.</p>", 
                "name": "setSoftKeyboardOnFocus"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setTop-method.top-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "top"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setTop-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.top-property.html\">top</a> property.</p>", 
                "name": "setTop"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setTouchEnabled-method.touchEnabled-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "touchEnabled"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setTouchEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.touchEnabled-property.html\">touchEnabled</a> property.</p>", 
                "name": "setTouchEnabled"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setTransform-method.transform-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Titanium.UI.2DMatrix", 
                            "Titanium.UI.iOS.3DMatrix"
                        ], 
                        "name": "transform"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setTransform-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.transform-property.html\">transform</a> property.</p>", 
                "name": "setTransform"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setViews-method.views-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Array<Titanium.UI.View>", 
                        "name": "views"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setViews-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.views-property.html\">views</a> property.</p>", 
                "name": "setViews"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setVisible-method.visible-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Boolean", 
                        "name": "visible"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setVisible-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.visible-property.html\">visible</a> property.</p>", 
                "name": "setVisible"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setWidth-method.width-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": [
                            "Number", 
                            "String"
                        ], 
                        "name": "width"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.width-property.html\">width</a> property.</p>", 
                "name": "setWidth"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.setZIndex-method.zIndex-param", 
                        "optional": false, 
                        "summary": "<p>New value for the property.</p>", 
                        "type": "Number", 
                        "name": "zIndex"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.setZIndex-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Sets the value of the <a href=\"Titanium.UI.ScrollableView.zIndex-property.html\">zIndex</a> property.</p>", 
                "name": "setZIndex"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.show-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Makes this view visible.</p>", 
                "name": "show"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.toImage-method.f-param", 
                        "type": "Callback<Object>", 
                        "summary": "<p>Function to be invoked upon completion. If non-null, this method will be \nperformed asynchronously. If null, it will be performed immediately.</p>", 
                        "optional": true, 
                        "name": "f"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.toImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Titanium.Blob"
                }, 
                "examples": [], 
                "summary": "<p>Returns an image of the rendered view, as a Blob.</p>", 
                "name": "toImage"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "0.8", 
                "name": "android"
            }, 
            {
                "pretty_name": "iPhone", 
                "since": "0.8", 
                "name": "iphone"
            }, 
            {
                "pretty_name": "iPad", 
                "since": "0.8", 
                "name": "ipad"
            }
        ], 
        "examples": [
            {
                "code": "<p>Create three views and place each into a scrollable view.</p>\n<pre><code>var win = Ti.UI.createWindow();\n\nvar view1 = Ti.UI.createView({ backgroundColor:'#123' });\nvar view2 = Ti.UI.createView({ backgroundColor:'#246' });\nvar view3 = Ti.UI.createView({ backgroundColor:'#48b' });\n\nvar scrollableView = Ti.UI.createScrollableView({\n  views:[view1,view2,view3],\n  showPagingControl:true\n});\n\nwin.add(scrollableView);\nwin.open();\n</code></pre>", 
                "description": "Simple Scrollable View with 3 Views"
            }, 
            {
                "code": "<p>Create two scroll views, each containing an image view, and place them in a scrollable view.</p>\n<pre><code>var img1 = Ti.UI.createImageView({\n    image:'http://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/' +\n    'Mona_Lisa%2C_by_Leonardo_da_Vinci%2C_from_C2RMF_retouched.jpg/' +\n    '402px-Mona_Lisa%2C_by_Leonardo_da_Vinci%2C_from_C2RMF_retouched.jpg'\n});\nvar img1Wrapper = Ti.UI.createScrollView({\n    maxZoomScale:4.0,\n});\nimg1Wrapper.add(img1);\n\nvar img2 = Ti.UI.createImageView({\n    image:'http://www.nasa.gov/images/content/' + \n    '616903main_rover_comparison1600_1600-1200.jpg'\n});\nvar img2Wrapper = Ti.UI.createScrollView({\n    maxZoomScale:4.0,\n});\nimg2Wrapper.add(img2);\nvar photosView = Ti.UI.createScrollableView({\n    showPagingControl:true,\n    views:[img1Wrapper,img2Wrapper]\n});\nwin.add(photosView);\n</code></pre>", 
                "description": "Simple Scrollable View with 2 Zoomable Images"
            }
        ], 
        "summary": "<p>A view that encapsulates a horizontally-scrolling set of sub-views, navigable using its built-in \nhorizontal swipe gestures.</p>", 
        "type": "object", 
        "events": [
            {
                "description": "<p>There is a subtle difference between singletap and click events.</p>\n<p>A singletap event is generated when the user taps the screen briefly without moving their \nfinger. This gesture will also generate a click event.</p>\n<p>However, a click event can also be generated when the user touches, moves their finger, and \nthen removes it from the screen.</p>\n<p>On Android, a click event can also be generated by a trackball click.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.click-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the device detects a click against this view.</p>", 
                "properties": [
                    {
                        "deprecated": {
                            "since": "1.8.0"
                        }, 
                        "description": null, 
                        "filename": "Titanium.UI.ScrollableView.click.globalPoint-callback-property", 
                        "name": "globalPoint", 
                        "summary": "<p>Dictionary with properties <code>x</code> and <code>y</code> describing the location of the event in screen \ncoordinates.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.click.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.click.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.click.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.click.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "click"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.doubletap-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the device detects a double tap against this view.</p>", 
                "properties": [
                    {
                        "deprecated": {
                            "since": "1.8.0"
                        }, 
                        "description": null, 
                        "filename": "Titanium.UI.ScrollableView.doubletap.globalPoint-callback-property", 
                        "name": "globalPoint", 
                        "summary": "<p>Dictionary with properties <code>x</code> and <code>y</code> describing the location of the event in screen \ncoordinates.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.doubletap.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.doubletap.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.doubletap.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.doubletap.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "doubletap"
            }, 
            {
                "description": "<p>Generated by touching and holding on a touchscreen, this event occurs before the \nfinger is lifted again. Note that <code>longpress</code> cannot be generated with a trackball.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.longpress-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the device detects a long press against this view.</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.longpress.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.longpress.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.longpress.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.longpress.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "longpress"
            }, 
            {
                "description": "<p>Generated by a touch and expand or contract with two fingers, this event occurs continuously \nuntil a finger is lifted again.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.pinch-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "1.8.0", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "1.8.0", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the device detects a pinch gesture against this view.</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.pinch.scale-callback-property", 
                        "summary": "<p>The scale factor relative to the points of the two touches in screen coordinates.</p>", 
                        "type": "Number", 
                        "name": "scale"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.pinch.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.pinch.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.pinch.velocity-callback-property", 
                        "summary": "<p>The velocity of the pinch in scale factor per second.</p>", 
                        "type": "Number", 
                        "name": "velocity"
                    }
                ], 
                "name": "pinch"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.scroll-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the current view is changed.</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.scroll.currentPage-callback-property", 
                        "summary": "<p>Index of the current view of <a href=\"Titanium.UI.ScrollableView.views-property.html\"><code>Titanium.UI.ScrollableView.views</code></a>.</p>", 
                        "type": "Number", 
                        "name": "currentPage"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.scroll.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.scroll.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.scroll.view-callback-property", 
                        "summary": "<p>The current view.</p>", 
                        "type": "Object", 
                        "name": "view"
                    }
                ], 
                "name": "scroll"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.singletap-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when the device detects a single tap against this view.</p>", 
                "properties": [
                    {
                        "deprecated": {
                            "since": "1.8.0"
                        }, 
                        "description": null, 
                        "filename": "Titanium.UI.ScrollableView.singletap.globalPoint-callback-property", 
                        "name": "globalPoint", 
                        "summary": "<p>Dictionary with properties <code>x</code> and <code>y</code> describing the location of the event in screen \ncoordinates.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.singletap.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.singletap.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.singletap.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.singletap.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "singletap"
            }, 
            {
                "description": "<p>Generated in various circumstances, including an incoming call to allow the UI to clean \nup state.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.touchcancel-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when a touch gesture is interrupted by the device.</p>", 
                "properties": [
                    {
                        "deprecated": {
                            "since": "1.8.0"
                        }, 
                        "description": null, 
                        "filename": "Titanium.UI.ScrollableView.touchcancel.globalPoint-callback-property", 
                        "name": "globalPoint", 
                        "summary": "<p>Dictionary with properties <code>x</code> and <code>y</code> describing the location of the event in screen \ncoordinates.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchcancel.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchcancel.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchcancel.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchcancel.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "touchcancel"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.touchend-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when a touch gesture is complete.</p>", 
                "properties": [
                    {
                        "deprecated": {
                            "since": "1.8.0"
                        }, 
                        "description": null, 
                        "filename": "Titanium.UI.ScrollableView.touchend.globalPoint-callback-property", 
                        "name": "globalPoint", 
                        "summary": "<p>Dictionary with properties <code>x</code> and <code>y</code> describing the location of the event in screen \ncoordinates.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchend.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchend.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchend.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchend.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "touchend"
            }, 
            {
                "description": "<p>Event coordinates are relative to the view for which the initial touch occurred.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.touchmove-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired when a touch gesture is moved.</p>", 
                "properties": [
                    {
                        "deprecated": {
                            "since": "1.8.0"
                        }, 
                        "description": null, 
                        "filename": "Titanium.UI.ScrollableView.touchmove.globalPoint-callback-property", 
                        "name": "globalPoint", 
                        "summary": "<p>Dictionary with properties <code>x</code> and <code>y</code> describing the location of the event in screen \ncoordinates.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchmove.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchmove.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchmove.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchmove.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "touchmove"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.ScrollableView.touchstart-event", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "summary": "<p>Fired as soon as the device detects a touch gesture against this view.</p>", 
                "properties": [
                    {
                        "deprecated": {
                            "since": "1.8.0"
                        }, 
                        "description": null, 
                        "filename": "Titanium.UI.ScrollableView.touchstart.globalPoint-callback-property", 
                        "name": "globalPoint", 
                        "summary": "<p>Dictionary with properties <code>x</code> and <code>y</code> describing the location of the event in screen \ncoordinates.</p>"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchstart.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchstart.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchstart.x-callback-property", 
                        "summary": "<p>X coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "x"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.ScrollableView.touchstart.y-callback-property", 
                        "summary": "<p>Y coordinate of the event from the <code>source</code> view.</p>", 
                        "type": "Number", 
                        "name": "y"
                    }
                ], 
                "name": "touchstart"
            }
        ], 
        "name": "Titanium.UI.ScrollableView"
    }, 
    "Titanium.Android.MenuItem": {
        "properties": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.enabled-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>set the enabled state of the item</p>", 
                "type": "Boolean", 
                "name": "enabled"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.groupId-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>groupId for this item</p>", 
                "type": "Number", 
                "name": "groupId"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.itemId-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>itemId for this item</p>", 
                "type": "Number", 
                "name": "itemId"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.order-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>integer used for controlling sort order</p>", 
                "type": "Number", 
                "name": "order"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.title-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>item title</p>", 
                "type": "String", 
                "name": "title"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.titleCondensed-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>condensed item title</p>", 
                "type": "String", 
                "name": "titleCondensed"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.visible-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>set the visible state of the item</p>", 
                "type": "Boolean", 
                "name": "visible"
            }
        ], 
        "description": null, 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.Android.MenuItem-object", 
        "methods": [
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.getEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.MenuItem.enabled-property.html\">enabled</a> property.</p>", 
                "name": "getEnabled"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.getGroupId-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Number"
                }, 
                "examples": [], 
                "summary": "<p>retrieve the groupId for this item</p>", 
                "name": "getGroupId"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.getItemId-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Number"
                }, 
                "examples": [], 
                "summary": "<p>retrieve the itemId for this item</p>", 
                "name": "getItemId"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.getOrder-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Number"
                }, 
                "examples": [], 
                "summary": "<p>retrieve the sort order</p>", 
                "name": "getOrder"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.getTitle-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "String"
                }, 
                "examples": [], 
                "summary": "<p>retrieve the title of the item</p>", 
                "name": "getTitle"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.getTitleCondensed-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "String"
                }, 
                "examples": [], 
                "summary": "<p>retrieve the condensed title of the item</p>", 
                "name": "getTitleCondensed"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.getVisible-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.Android.MenuItem.visible-property.html\">visible</a> property.</p>", 
                "name": "getVisible"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.isEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>retrieve the enabled state of the menu</p>", 
                "name": "isEnabled"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.isVisible-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "Boolean"
                }, 
                "examples": [], 
                "summary": "<p>retrieve the visible state of the menu</p>", 
                "name": "isVisible"
            }, 
            {
                "description": "<p>Multiple listeners can be registered for the same event, so the \n<code>callback</code> parameter is used to determine which listener to remove. </p>\n<p>When adding a listener, you must save a reference to the callback function\nin order to remove the listener later:</p>\n<pre><code>var listener = function() { Ti.API.info(\"Event listener called.); }\nwindow.addEventListener('click', listener);\n</code></pre>\n<p>To remove the listener, pass in a reference to the callback function:</p>\n<pre><code>window.removeEventListener('click', listener);\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.removeEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.removeEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to remove. Must be the same function passed to <code>addEventListener</code>.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.removeEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Removes the specified callback as an event listener for the named event.</p>", 
                "name": "removeEventListener"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.setEnabled-method.enabled-param", 
                        "optional": false, 
                        "summary": "<p>true to enable item, false to disable</p>", 
                        "type": "Boolean", 
                        "name": "enabled"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.setEnabled-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>set the enabled state of the item</p>", 
                "name": "setEnabled"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.setIcon-method.icon-param", 
                        "optional": false, 
                        "summary": "<p>icon to use with the item</p>", 
                        "type": "Object", 
                        "name": "icon"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.setIcon-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>set the icon for the item</p>", 
                "name": "setIcon"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.setTitle-method.title-param", 
                        "optional": false, 
                        "summary": "<p>new title</p>", 
                        "type": "String", 
                        "name": "title"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.setTitle-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>set the title for the item</p>", 
                "name": "setTitle"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.setTitleCondensed-method.condensedTitle-param", 
                        "optional": false, 
                        "summary": "<p>new condensed title</p>", 
                        "type": "String", 
                        "name": "condensedTitle"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.setTitleCondensed-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>set the condensed title for the item</p>", 
                "name": "setTitleCondensed"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.setVisible-method.visible-param", 
                        "optional": false, 
                        "summary": "<p>true to show the item, false to hide</p>", 
                        "type": "Boolean", 
                        "name": "visible"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.setVisible-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>set the visible state of the item</p>", 
                "name": "setVisible"
            }
        ], 
        "platforms": [
            {
                "pretty_name": "Android", 
                "since": "1.5", 
                "name": "android"
            }
        ], 
        "examples": [], 
        "summary": "<p>The Titanium binding of an <a href=\"http://developer.android.com/reference/android/view/MenuItem.html\">Android MenuItem</a></p>", 
        "type": "object", 
        "events": [
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.Android.MenuItem.click-event", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "1.5", 
                        "name": "android"
                    }
                ], 
                "summary": "<p>fired when the user presses the button</p>", 
                "properties": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.click.source-callback-property", 
                        "summary": "<p>Source object that fired the event.</p>", 
                        "type": "Object", 
                        "name": "source"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.Android.MenuItem.click.type-callback-property", 
                        "summary": "<p>Name of the event fired.</p>", 
                        "type": "String", 
                        "name": "type"
                    }
                ], 
                "name": "click"
            }
        ], 
        "name": "Titanium.Android.MenuItem"
    }, 
    "Titanium.UI.TableView": {
        "properties": [
            {
                "description": null, 
                "default": true, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.allowsSelection-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>True if the rows can be selected.</p>", 
                "type": "Boolean", 
                "name": "allowsSelection"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.allowsSelectionDuringEditing-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>True if the rows can be selected while editing the table.</p>", 
                "type": "Boolean", 
                "name": "allowsSelectionDuringEditing"
            }, 
            {
                "description": "<p>Anchor point is specified as a fraction of the view's size. So \n(0.5,0.5) represents the view's center and (1, 1) is the view's bottom-right \ncorner.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.anchorPoint-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Anchor point where animation should occur, relative to the view's boundaries.</p>", 
                "type": "Point", 
                "name": "anchorPoint"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.animatedCenterPoint-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Current position of the view during an animation.</p>", 
                "type": "Point", 
                "name": "animatedCenterPoint"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundDisabledColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Disabled background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundDisabledColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundDisabledImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Disabled background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundDisabledImage"
            }, 
            {
                "description": "<p>For normal views, the focused color is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundFocusedColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Focused background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundFocusedColor"
            }, 
            {
                "description": "<p>For normal views, the focused background is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundFocusedImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Focused background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundFocusedImage"
            }, 
            {
                "description": "<p>A gradient can be defined as either linear or radial. A linear gradient\nvaries continuously along a line between the <code>startPoint</code> and <code>endPoint</code>.\nA radial gradient is interpolated between two circles, defined by <code>startPoint</code>\nand <code>startRadius</code> and <code>endPoint</code> and <code>endRadius</code> respectively.</p>\n<p>The start and end points and radius values can be defined in device units,\nin the view's coordinates, or as percentages of the view's size. Thus, if\na view is 60 x 60, the center point of the view can be specified as:</p>\n<pre><code>{ x: 30, y: 30 }\n</code></pre>\n<p>Or:\n    { x: '50%', y: '50%' }</p>\n<p>When specifying multiple colors, you can specify an <em>offset</em> value for\neach color, defining how far into the gradient it takes effect. For example,\nthe following color array specifies a gradient that goes from red to blue back to red:</p>\n<pre><code>colors: [ { color: 'red', offset: 0.0}, { color: 'blue', offset: 0.25 }, { color: 'red', offset: 1.0 } ]\n</code></pre>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundGradient-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [
                    {
                        "code": "<p>The following code excerpt creates two views, one with a linear gradient and one with\na radial gradient.</p>\n<pre><code>var win1 = Titanium.UI.createWindow({\n    title:'Tab 1',\n    backgroundColor:'#fff',\n    layout: 'vertical'\n});\n\nvar radialGradient = Ti.UI.createView({\n    top: 10,\n    width: 100,\n    height: 100,\n    backgroundGradient: {\n        type: 'radial',\n        startPoint: { x: 50, y: 50 },\n        endPoint: { x: 50, y: 50 },\n        colors: [ 'red', 'blue'],\n        startRadius: '90%',\n        endRadius: 0,\n        backfillStart: true\n    }\n});\nvar linearGradient = Ti.UI.createView({\n    top: 10,\n    width: 100,\n    height: 100,\n    backgroundGradient: {\n        type: 'linear',\n        startPoint: { x: '0%', y: '50%' },\n        endPoint: { x: '100%', y: '50%' },\n        colors: [ { color: 'red', offset: 0.0}, { color: 'blue', offset: 0.25 }, { color: 'red', offset: 1.0 } ],\n    }\n});\nwin1.add(radialGradient);\nwin1.add(linearGradient);\nwin1.open();\n</code></pre>", 
                        "description": "Linear and Radial Gradients"
                    }
                ], 
                "summary": "<p>A background gradient for the view.</p>", 
                "type": "Gradient", 
                "name": "backgroundGradient"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Background image for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundImage"
            }, 
            {
                "description": "<p>End caps specify the portion of an image that should not be resized when an \nimage is stretched. This technique is used to implement buttons and other \nresizable image-based interface elements. When a button with end caps is resized, \nthe resizing occurs only in the middle of the button, in the region between the end \ncaps. The end caps themselves keep their original size and appearance. This property \nspecifies the size of the left end cap. The middle (stretchable) portion is assumed to \nbe 1 pixel wide. The right end cap is therefore computed by adding the size of the left \nend cap and the middle portion together and then subtracting that value from the width \nof the image</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundLeftCap-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Size of the left end cap.</p>", 
                "type": "Number", 
                "name": "backgroundLeftCap"
            }, 
            {
                "description": "<p>Setting this to <code>true</code> makes the set <code>backgroundImage</code> repeat across\nthe view as a series of tiles. The tiling is begins in the upper-left\ncorner, where the upper-left corner of the background image is rendered.\nThe image is then tiled to fill the available space of the view.</p>\n<p>Note that setting this to <code>true</code> may incur performance penalties for\nlarge views or background images, as the tiling must be redone\nwhenever a view is resized.</p>\n<p>The following views do not currently support tiled backgrounds:\n<em> <a href=\"Titanium.UI.Button-object.html\"><code>Titanium.UI.Button</code></a>\n</em> <a href=\"Titanium.UI.TextField-object.html\"><code>Titanium.UI.TextField</code></a>\n* <a href=\"Titanium.UI.Label-object.html\"><code>Titanium.UI.Label</code></a></p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundRepeat-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Toggle for whether or not to tile a background across a view.</p>", 
                "type": "Boolean", 
                "name": "backgroundRepeat"
            }, 
            {
                "description": "<p>focusable must be true for normal views.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundSelectedColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Selected background color of the view.</p>", 
                "type": "String", 
                "name": "backgroundSelectedColor"
            }, 
            {
                "description": "<p>For normal views, the selected background is only used if <code>focusable</code> is <code>true</code>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundSelectedImage-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Selected background image url for the view, specified as a local file path or URL.</p>", 
                "type": "String", 
                "name": "backgroundSelectedImage"
            }, 
            {
                "description": "<p>End caps specify the portion of an image that should not be resized when an image \nis stretched. This technique is used to implement buttons and other resizable \nimage-based interface elements. When a button with end caps is resized, the resizing \noccurs only in the middle of the button, in the region between the end caps. The end \ncaps themselves keep their original size and appearance. This property specifies the \nsize of the top end cap. The middle (stretchable) portion is assumed to be 1 pixel wide. \nThe bottom end cap is therefore computed by adding the size of the top end cap and the\nmiddle portion together and then subtracting that value from the height of the image.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.backgroundTopCap-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Size of the top end cap.</p>", 
                "type": "Number", 
                "name": "backgroundTopCap"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.borderColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border color of the view.</p>", 
                "type": "String", 
                "name": "borderColor"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.borderRadius-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border radius of the view.</p>", 
                "type": "Number", 
                "name": "borderRadius"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.borderWidth-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Border width of the view.</p>", 
                "type": "Number", 
                "name": "borderWidth"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.bottom-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's bottom position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "bottom"
            }, 
            {
                "description": "<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.center-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's center position, in the parent view's coordinates.</p>", 
                "type": "Point", 
                "name": "center"
            }, 
            {
                "description": null, 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.children-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of this view's child views.</p>", 
                "type": "Array<Titanium.UI.View>", 
                "name": "children"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.data-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of objects to be used for the rows of the table view.</p>", 
                "type": [
                    "Array<Titanium.UI.TableViewRow>", 
                    "Array<Titanium.UI.TableViewSection>"
                ], 
                "name": "data"
            }, 
            {
                "description": null, 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.editable-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Allow the user to edit the table view (this must be <code>true</code> for swipe-to-delete).</p>", 
                "type": "Boolean", 
                "name": "editable"
            }, 
            {
                "description": null, 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.editing-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean to control the editing state of the table view.</p>", 
                "type": "Boolean", 
                "name": "editing"
            }, 
            {
                "description": "<p>This property maps to your data object or a property on the row object. For example,\nif you set <code>filterAttribute</code> to <code>'title'</code>, the table view shows only those rows that\ncontain the current search text in the <code>title</code> property.</p>\n<p>Note that the filter is not anchored to the beginning of the string. So typing \"ha\"\nin the text box will include rows titled 'Harold' and 'Harvard', but also 'Sharon'\nand 'Jonathan'.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.filterAttribute-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Filter attribute to be used when searching.</p>", 
                "type": "String", 
                "name": "filterAttribute"
            }, 
            {
                "description": null, 
                "default": true, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.filterCaseInsensitive-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean to indicate if the search should be case sensitive or case insensitive.</p>", 
                "type": "Boolean", 
                "name": "filterCaseInsensitive"
            }, 
            {
                "description": null, 
                "default": false, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.focusable-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether view should be focusable while navigating with the trackball.</p>", 
                "type": "Boolean", 
                "name": "focusable"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.footerTitle-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Table view footer title.</p>", 
                "type": "String", 
                "name": "footerTitle"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.footerView-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Table view footer as a view that will be rendered instead of a label.</p>", 
                "type": "Titanium.UI.View", 
                "name": "footerView"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.headerTitle-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Table view header title.</p>", 
                "type": "String", 
                "name": "headerTitle"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.headerView-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Table view header as a view that will be rendered instead of a label.</p>", 
                "type": "Titanium.UI.View", 
                "name": "headerView"
            }, 
            {
                "description": "<p>Can be either a float value or a dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying the view's height dimension. To determine the view's \nsize once rendered, see the <a href=\"Titanium.UI.View.size-property.html\">size</a> property.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.height-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View height, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "height"
            }, 
            {
                "description": "<p>If an index array is specified, an index bar is displayed on the right-hand side of the \ntable view. Clicking on a title in the index bar scrolls the table view to the row \nindex associated with that title.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.index-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Array of objects (with <code>title</code> and <code>index</code> properties) to control the table view index.</p>", 
                "type": "Array<TableViewIndexEntry>", 
                "name": "index"
            }, 
            {
                "description": "<p>When <code>true</code> the screen will not power down. Note: enabling this feature will use more \npower, thereby adversely affecting run time when on battery.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.keepScreenOn-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether to keep the device screen on.</p>", 
                "type": "Boolean", 
                "name": "keepScreenOn"
            }, 
            {
                "description": "<p>There are three layout options:</p>\n<ul>\n<li>\n<p><code>absolute</code>. Default layout. A child view's <code>top</code>, <code>bottom</code>, <code>left</code>, and <code>right</code> \n    properties are interpreted as absolute values in the parent's coordinate space.</p>\n<p>If the child includes a <code>top</code> value and <strong>not</strong> a <code>bottom</code> value, the child is \npositioned <code>top</code> units from the top of the parent's bounding box, and its height\nis set based on its <code>height</code> property.</p>\n<p>If the child includes a <code>bottom</code> value and <strong>not</strong> a <code>top</code> value, the child is \npositioned <code>bottom</code> units from the bottom of the parent's bounding box. Its height\nis set based on its <code>height</code> property.</p>\n<p>If the child includes both <code>top</code> and <code>bottom</code> values, the behavior is \nplatform-specific.</p>\n<p>Similar calculations are used for <code>left</code> and <code>right</code>. </p>\n<p>You can also position a child by setting its <code>center</code> property to a <a href=\"Point-object.html\"><code>Point</code></a>.</p>\n<p>If no position is set explicitly, children are centered. For example, if a \nchild specifies a <code>top</code> of 20 and does not specify any other position properties,\nthe child is positioned 20 units from the parent's top, and centered horizontally.</p>\n</li>\n<li>\n<p><code>vertical</code>. Children are laid out vertically from top to bottom. The first child \n    is laid out <code>top</code> units from its parent's bounding box. Each subsequent child is \n    laid out below the previous child. The space between children is equal to the \n    upper child's <code>bottom</code> value plus the lower child's <code>top</code> value.</p>\n<p>Each child is positioned horizontally as for the absolute layout mode.</p>\n</li>\n<li>\n<p><code>horizontal</code>. Like vertical layout, except children are laid out horizontally\n    from left to right, using the <code>left</code> and <code>right</code> values to determine spacing.</p>\n<p>Each child is positioned vertically as in the absolute layout mode.</p>\n</li>\n</ul>", 
                "default": "absolute layout", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.layout-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Specifies how the view positions its children. \nOne of: 'absolute', 'vertical', or 'horizontal'.</p>", 
                "type": "String", 
                "name": "layout"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.left-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's left position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "left"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.maxRowHeight-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Maximum row height for table view rows.</p>", 
                "type": "Number", 
                "name": "maxRowHeight"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.minRowHeight-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Minimum row height for table view rows.</p>", 
                "type": "Number", 
                "name": "minRowHeight"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.moving-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean to control the moveable state of the table view.</p>", 
                "type": "Boolean", 
                "name": "moving"
            }, 
            {
                "description": null, 
                "default": "1.0 (opaque)", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.opacity-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Opacity of this view, from 0.0 (transparent) to 1.0 (opaque).</p>", 
                "type": "Number", 
                "name": "opacity"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.right-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's right position, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "right"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.rowHeight-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Default row height for table view rows.</p>", 
                "type": "Number", 
                "name": "rowHeight"
            }, 
            {
                "description": null, 
                "default": true, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.scrollable-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>If <code>true</code>, the tableview can be scrolled.</p>", 
                "type": "Boolean", 
                "name": "scrollable"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.search-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Search field to use for the table view.</p>", 
                "type": "Titanium.UI.SearchBar", 
                "name": "search"
            }, 
            {
                "description": null, 
                "default": "false (search field visible)", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.searchHidden-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean to control the visibility of the search field.</p>", 
                "type": "Boolean", 
                "name": "searchHidden"
            }, 
            {
                "description": null, 
                "default": "platform-specific default color", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.separatorColor-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Separator color between rows, specified as a hex or named value.</p>", 
                "type": "String", 
                "name": "separatorColor"
            }, 
            {
                "description": "<p>For iOS specify one of the <a href=\"Titanium.UI.iPhone.TableViewSeparatorStyle-object.html\">TableViewSeparatorStyle</a> constants.\nFor Mobile Web specify one of the <a href=\"Titanium.UI.MobileWeb.TableViewSeparatorStyle\">TableViewSeparatorStyle</a> constants.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.separatorStyle-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Separator style constant.</p>", 
                "type": "Number", 
                "name": "separatorStyle"
            }, 
            {
                "description": null, 
                "default": true, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.showVerticalScrollIndicator-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether table view displays vertical scroll indicator</p>", 
                "type": "Boolean", 
                "name": "showVerticalScrollIndicator"
            }, 
            {
                "description": "<p>The correct values will only be available when rendering is fully complete.</p>", 
                "permission": "read-only", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.size-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Rendered size of the view as a dictionary of width and height properties.</p>", 
                "type": "Object", 
                "name": "size"
            }, 
            {
                "description": "<p>One of <a href=\"Titanium.UI.Android.SOFT_KEYBOARD_DEFAULT_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_DEFAULT_ON_FOCUS</code></a>, \n<a href=\"Titanium.UI.Android.SOFT_KEYBOARD_HIDE_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_HIDE_ON_FOCUS</code></a>, or \n<a href=\"Titanium.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS-property.html\"><code>Titanium.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS</code></a>.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.softKeyboardOnFocus-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Determines keyboard behavior when this view is focused.</p>", 
                "type": "Number", 
                "name": "softKeyboardOnFocus"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.style-property", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Style of the table view, specified using one of the constants from <a href=\"Titanium.UI.iPhone.TableViewStyle-object.html\"><code>Titanium.UI.iPhone.TableViewStyle</code></a>.</p>", 
                "type": "Number", 
                "name": "style"
            }, 
            {
                "description": "<p>This position is relative to the view's parent. Exact interpretation depends on the \nparent view's <a href=\"Titanium.UI.View.layout-property.html\">layout</a> property. Can be either a float value or \na dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying where the view should be positioned, and does not\nrepresent the view's calculated position.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.top-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>The view's top position.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "top"
            }, 
            {
                "description": "<p>If false, will forward the events to peers.</p>", 
                "default": true, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.touchEnabled-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Whether view should receive touch events.</p>", 
                "type": "Boolean", 
                "name": "touchEnabled"
            }, 
            {
                "description": "<p>Android and Mobile Web only support 2DMatrix transforms.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.transform-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Transformation matrix to apply to the view.</p>", 
                "type": [
                    "Titanium.UI.2DMatrix", 
                    "Titanium.UI.iOS.3DMatrix"
                ], 
                "name": "transform"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.visible-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Boolean value indicating whether the view is visible.</p>", 
                "type": "Boolean", 
                "name": "visible"
            }, 
            {
                "description": "<p>Can be either a float value or a dimension string (for example, '50%' or 'auto').</p>\n<p>This is an input property for specifying the view's width dimension. To \ndetermine the view's size once rendered, see the \n<a href=\"Titanium.UI.View.size-property.html\">size</a> property.</p>", 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.width-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>View's width, in platform-specific units.</p>", 
                "type": [
                    "Number", 
                    "String"
                ], 
                "name": "width"
            }, 
            {
                "description": null, 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.zIndex-property", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Z index position relative to other sibling views.</p>", 
                "type": "Number", 
                "name": "zIndex"
            }
        ], 
        "description": "<p>A table view can contain a set of <a href=\"Titanium.UI.TableViewRow-object.html\">TableViewRow</a>s, each displaying \nan item of data. The default <code>TableViewRow</code> has properties for adding text, as well as \noptional images on the left and right sides, and various system-provided indicators, \nsuch as check marks. Table view rows can also be fully customized by adding child views, \nsuch as labels, buttons, or image views.</p>\n<p>When adding rows to a table view, each row can be passed as a \n<a href=\"Titanium.UI.TableViewRow-object.html\">TableViewRow</a> object, or as dictionary specifying \nthe properties for a table row, in which case the <code>TableView</code> will create \n<code>TableViewRow</code> objects as needed. </p>\n<p>Use the <a href=\"Titanium.UI.createTableView-method.html\"><code>Titanium.UI.createTableView</code></a> method to create a table view.</p>", 
        "subtype": "proxy", 
        "deprecated": null, 
        "filename": "Titanium.UI.TableView-object", 
        "methods": [
            {
                "description": "<p>There are certain top-level containers that are not intended to be added \nas the children of other views. These top-level containers include \n<a href=\"Titanium.UI.Window-object.html\">Window</a>, <a href=\"Titanium.UI.iPad.SplitWindow-object.html\">SplitWindow</a>,\nand <a href=\"Titanium.UI.TabGroup-object.html\">TabGroup</a>.  Other types of views must be added \nto a top-level container in order to be displayed on screen.</p>\n<p>The special containers <a href=\"Titanium.UI.iPhone.NavigationGroup-object.html\">NavigationGroup</a>, \n<a href=\"Titanium.UI.iPad.SplitWindow-object.html\">SplitWindow</a>, <a href=\"Titanium.UI.Tab-object.html\">Tab</a>, and \n<a href=\"Titanium.UI.TabGroup-object.html\">TabGroup</a>\nmanage windows. These managed windows may be referred to as <em>children</em> of the \ncontainer, but they are not added using the <code>add</code> method.</p>\n<p>Note that although a <code>NavigationGroup</code>\nmanages windows, it is not itself top-level container.  It must be added to a \n<code>Window</code> in order to be displayed. </p>\n<p><code>Tab</code> is another kind of special container: it is not itself a top-level container, \nbut can only be used within a <code>TabGroup</code>. You cannot <code>add</code> a <code>Tab</code> to an arbitrary\ncontainer.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.add-method.view-param", 
                        "optional": false, 
                        "summary": "<p>View to add to this view's hierarchy</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "view"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.add-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds a child to this view's hierarchy.</p>", 
                "name": "add"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.addEventListener-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.addEventListener-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Callback function to invoke when the event is fired.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.addEventListener-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Adds the specified callback as an event listener for the named event.</p>", 
                "name": "addEventListener"
            }, 
            {
                "description": "<p>The <a href=\"Titanium.UI.Animation-object.html\">Animation</a> object or dictionary passed to this\nmethod defines the end state for the animation, the duration of the animation,\nand other properties.</p>\n<p>Note that if you use <code>animate</code> to move a view, the view's actual <em>position</em>\nis changed, but its layout properties, such as <code>top</code>, <code>left</code>, <code>center</code> and \nso on are not changed--these reflect the original values set by the user, not\nthe actual position of the view.</p>\n<p>In this release, the view's actual position is not available to the application. \nThis feature will be added to a future release.</p>\n<p>If you need one or more of the layout  properties to be updated after animation,\nyou can update them in the callback after animation is complete. For example:</p>\n<pre><code>var newTop = view1.top - 100;\nview1.animate({ top: newTop, duration: 500 }, function () {\n    view.top = newTop; \n});\n</code></pre>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.animate-method.obj-param", 
                        "optional": false, 
                        "summary": "<p>Either a dictionary of animation properties or an \n<a href=\"Titanium.UI.Animation-object.html\">Animation</a> object.</p>", 
                        "type": [
                            "Titanium.UI.Animation", 
                            "Dictionary<Titanium.UI.Animation>"
                        ], 
                        "name": "obj"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.animate-method.callback-param", 
                        "optional": false, 
                        "summary": "<p>Function to be invoked upon completion of the animation.</p>", 
                        "type": "Callback<Object>", 
                        "name": "callback"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.animate-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Animates this view.</p>", 
                "name": "animate"
            }, 
            {
                "description": "<p>Appends a single row or an array of rows to the end of the table.\nEach row can be passed as a <a href=\"Titanium.UI.TableViewRow-object.html\">TableViewRow</a> object,\nor as dictionary specifying the properties for a table row, in which case\nthe <code>TableView</code> will create <code>TableViewRow</code> objects as needed.</p>\n<p>On iOS, the row(s) can be inserted with animation by specifying a <code>properties</code>\nparameter.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.appendRow-method.row-param", 
                        "optional": false, 
                        "summary": "<p>If appending a single row, this should contain only the row being appended. If appending multiple rows, this should be an array of the rows being appended.</p>", 
                        "type": [
                            "Titanium.UI.TableViewRow", 
                            "Dictionary<Titanium.UI.TableViewRow>", 
                            "Array<Titanium.UI.TableViewRow>", 
                            "Array<Dictionary<Titanium.UI.TableViewRow>>"
                        ], 
                        "name": "row"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.appendRow-method.properties-param", 
                        "type": "TableViewAnimationProperties", 
                        "summary": "<p>Animation properties, only used on iOS.</p>", 
                        "optional": true, 
                        "name": "properties"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.appendRow-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Appends one or more rows to the table.</p>", 
                "name": "appendRow"
            }, 
            {
                "description": "<p>If both views are connected in the native view hierarchies, returns the \npoint, converted to <code>destinationView</code>'s coordinate system.</p>\n<p>Returns <code>null</code> if either view is not in the view hierarchy.\nKeep in mind that views may be removed from the view hierarchy if their window \nis blurred or if the view is offscreen (such as in some situations with \n<a href=\"Titanium.UI.ScrollableView-object.html\"><code>Titanium.UI.ScrollableView</code></a>).</p>\n<p>If this view is a <a href=\"Titanium.UI.ScrollView-object.html\"><code>Titanium.UI.ScrollView</code></a>, the view's x and y offsets are \nsubtracted from the return value.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.convertPointToView-method.point-param", 
                        "optional": false, 
                        "summary": "<p>A point in this view's coordinate system.<br />\nIf this argument is missing an <code>x</code> or <code>y</code> property, or the properties can not \nbe converted into numbers, an exception will be raised.</p>", 
                        "type": "Point", 
                        "name": "point"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.convertPointToView-method.destinationView-param", 
                        "optional": false, 
                        "summary": "<p>View that specifies the destination coordinate system to convert to.\nIf this argument is not a view, an exception will be raised.</p>", 
                        "type": "Titanium.UI.View", 
                        "name": "destinationView"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.convertPointToView-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "Point"
                }, 
                "examples": [], 
                "summary": "<p>Translates a point from this view's coordinate system to another \nview's coordinate system.</p>", 
                "name": "convertPointToView"
            }, 
            {
                "description": "<p>On iOS, the row can be deleted with animation by specifying a <code>properties</code>\nparameter.</p>", 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.deleteRow-method.row-param", 
                        "optional": false, 
                        "summary": "<p>Index of the row to delete.</p>", 
                        "type": "Number", 
                        "name": "row"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.deleteRow-method.properties-param", 
                        "type": "TableViewAnimationProperties", 
                        "summary": "<p>Animation properties. Only used on iOS.</p>", 
                        "optional": true, 
                        "name": "properties"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.deleteRow-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Deletes an existing row.</p>", 
                "name": "deleteRow"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.deselectRow-method.row-param", 
                        "optional": false, 
                        "summary": "<p>Row index to deselect.</p>", 
                        "type": "Number", 
                        "name": "row"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.deselectRow-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Programmatically deselects a row.</p>", 
                "name": "deselectRow"
            }, 
            {
                "description": null, 
                "parameters": [
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.fireEvent-method.name-param", 
                        "optional": false, 
                        "summary": "<p>Name of the event.</p>", 
                        "type": "String", 
                        "name": "name"
                    }, 
                    {
                        "description": null, 
                        "deprecated": null, 
                        "filename": "Titanium.UI.TableView.fireEvent-method.event-param", 
                        "optional": false, 
                        "summary": "<p>A dictionary of keys and values to add to the <a href=\"Titanium.Event-object.html\"><code>Titanium.Event</code></a> object sent to the listeners.</p>", 
                        "type": "Dictionary", 
                        "name": "event"
                    }
                ], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.fireEvent-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": {
                    "type": "void"
                }, 
                "examples": [], 
                "summary": "<p>Fires a synthesized event to any registered listeners.</p>", 
                "name": "fireEvent"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getAllowsSelection-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.allowsSelection-property.html\">allowsSelection</a> property.</p>", 
                "name": "getAllowsSelection"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getAllowsSelectionDuringEditing-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.allowsSelectionDuringEditing-property.html\">allowsSelectionDuringEditing</a> property.</p>", 
                "name": "getAllowsSelectionDuringEditing"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getAnchorPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.anchorPoint-property.html\">anchorPoint</a> property.</p>", 
                "name": "getAnchorPoint"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getAnimatedCenterPoint-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.animatedCenterPoint-property.html\">animatedCenterPoint</a> property.</p>", 
                "name": "getAnimatedCenterPoint"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundColor-property.html\">backgroundColor</a> property.</p>", 
                "name": "getBackgroundColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundDisabledColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundDisabledColor-property.html\">backgroundDisabledColor</a> property.</p>", 
                "name": "getBackgroundDisabledColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundDisabledImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundDisabledImage-property.html\">backgroundDisabledImage</a> property.</p>", 
                "name": "getBackgroundDisabledImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundFocusedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundFocusedColor-property.html\">backgroundFocusedColor</a> property.</p>", 
                "name": "getBackgroundFocusedColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundFocusedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundFocusedImage-property.html\">backgroundFocusedImage</a> property.</p>", 
                "name": "getBackgroundFocusedImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundGradient-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Gradient"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundGradient-property.html\">backgroundGradient</a> property.</p>", 
                "name": "getBackgroundGradient"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundImage-property.html\">backgroundImage</a> property.</p>", 
                "name": "getBackgroundImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundLeftCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundLeftCap-property.html\">backgroundLeftCap</a> property.</p>", 
                "name": "getBackgroundLeftCap"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundRepeat-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Boolean"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundRepeat-property.html\">backgroundRepeat</a> property.</p>", 
                "name": "getBackgroundRepeat"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundSelectedColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundSelectedColor-property.html\">backgroundSelectedColor</a> property.</p>", 
                "name": "getBackgroundSelectedColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundSelectedImage-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundSelectedImage-property.html\">backgroundSelectedImage</a> property.</p>", 
                "name": "getBackgroundSelectedImage"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBackgroundTopCap-method", 
                "platforms": [
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.backgroundTopCap-property.html\">backgroundTopCap</a> property.</p>", 
                "name": "getBackgroundTopCap"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBorderColor-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.borderColor-property.html\">borderColor</a> property.</p>", 
                "name": "getBorderColor"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBorderRadius-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.borderRadius-property.html\">borderRadius</a> property.</p>", 
                "name": "getBorderRadius"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBorderWidth-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.borderWidth-property.html\">borderWidth</a> property.</p>", 
                "name": "getBorderWidth"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getBottom-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Number"
                    }, 
                    {
                        "type": "String"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.bottom-property.html\">bottom</a> property.</p>", 
                "name": "getBottom"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getCenter-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Point"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.center-property.html\">center</a> property.</p>", 
                "name": "getCenter"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getChildren-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
                    }, 
                    {
                        "pretty_name": "Mobile Web", 
                        "since": "1.8", 
                        "name": "mobileweb"
                    }
                ], 
                "returns": [
                    {
                        "type": "Array<Titanium.UI.View>"
                    }
                ], 
                "examples": [], 
                "summary": "<p>Gets the value of the <a href=\"Titanium.UI.TableView.children-property.html\">children</a> property.</p>", 
                "name": "getChildren"
            }, 
            {
                "description": null, 
                "parameters": [], 
                "deprecated": null, 
                "filename": "Titanium.UI.TableView.getData-method", 
                "platforms": [
                    {
                        "pretty_name": "Android", 
                        "since": "0.8", 
                        "name": "android"
                    }, 
                    {
                        "pretty_name": "iPhone", 
                        "since": "0.8", 
                        "name": "iphone"
                    }, 
                    {
                        "pretty_name": "iPad", 
                        "since": "0.8", 
                        "name": "ipad"
           