Files
Phraseanet/www/include/jslibs/yui2.8/docs/YAHOO.util.CustomEvent.html
2011-02-16 16:09:48 +01:00

856 lines
49 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>API: event YAHOO.util.CustomEvent (YUI Library)</title>
<link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" />
<link rel="stylesheet" type="text/css" href="assets/api.css" />
<script type="text/javascript" src="assets/api-js"></script>
<script type="text/javascript" src="assets/ac-js"></script>
</head>
<body id="yahoo-com">
<div id="doc3" class="yui-t2">
<div id="hd">
<h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1>
<h3>Event Utility&nbsp; <span class="subtitle">2.8.2r1</span></h3>
<a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a>
&gt; <a href="./module_event.html" title="event">event</a>
&gt; YAHOO.util.CustomEvent
<form onsubmit="return false">
<div id="propertysearch">
Search: <input autocomplete="off" id="searchinput" />
<div id="searchresults">
&nbsp;
</div>
</div>
</form>
</div>
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form">
<fieldset>
<legend>Filters</legend>
<span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span>
<span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span>
<span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span>
</fieldset>
</form>
<h2>
Class <b property="yui:name">YAHOO.util.CustomEvent</b>
<span class="extends">
</span>
</h2>
<!-- class tree goes here -->
<div class="summary description" property="yui:description">
The CustomEvent class lets you define events for your application
that can be subscribed to by one or more independent component.
</div>
<div class="section constructor details" rel="yui:constructor" resource="#constructor">
<h3 id="constructor">Constructor</h3>
<div class="content">
<div class="detail">
<strong property="yui:name">YAHOO.util.CustomEvent</strong>
<code>
(
type
,
context
,
silent
,
signature
,
fireOnce
)
</code>
<div class="description">
<dl rel="yui:parameters">
<dt>Parameters:</dt>
<dd rel="yui:parameter">
<code><span property="yui:name">type</span>
&lt;<span property="yui:type">String</span>&gt;
</code>
<span property="yui:description"> The type of event, which is passed to the callback
when the event fires</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">context</span>
&lt;<span property="yui:type">Object</span>&gt;
</code>
<span property="yui:description"> The context the event will fire from. "this" will
refer to this object in the callback. Default value:
the window object. The listener can override this.</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">silent</span>
&lt;<span property="yui:type">boolean</span>&gt;
</code>
<span property="yui:description"> pass true to prevent the event from writing to
the debugsystem</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">signature</span>
&lt;<span property="yui:type">int</span>&gt;
</code>
<span property="yui:description"> the signature that the custom event subscriber
will receive. YAHOO.util.CustomEvent.LIST or
YAHOO.util.CustomEvent.FLAT. The default is
YAHOO.util.CustomEvent.LIST.</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">fireOnce</span>
&lt;<span property="yui:type">boolean</span>&gt;
</code>
<span property="yui:description"> If configured to fire once, the custom event
will only notify subscribers a single time regardless of how many times
the event is fired. In addition, new subscribers will be notified
immediately if the event has already been fired.</span>
</dd>
</dl>
</div>
</div>
</div>
</div>
<div rel="yui:properties" resource="#properties">
<div class="section field details">
<h3 id="properties">Properties</h3>
<div class="content">
<div class="" rel="yui:property" resource="#property_fired">
<h4><a name="property_fired" property="yui:name">fired</a>
- <code><span property="yui:type">boolean</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
Indicates whether or not this event has ever been fired.
</div>
</div>
<div class="default" property="yui:defaultValue">
Default Value: false
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_firedWith">
<h4><a name="property_firedWith" property="yui:name">firedWith</a>
- <code><span property="yui:type">Array</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
For fireOnce events the arguments the event was fired with are stored
so that new subscribers get the proper payload.
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_fireOnce">
<h4><a name="property_fireOnce" property="yui:name">fireOnce</a>
- <code><span property="yui:type">boolean</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
If configured to fire once, the custom event will only notify subscribers
a single time regardless of how many times the event is fired. In addition,
new subscribers will be notified immediately if the event has already been
fired.
</div>
</div>
<div class="default" property="yui:defaultValue">
Default Value: false
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_lastError">
<h4><a name="property_lastError" property="yui:name">lastError</a>
- <code><span property="yui:type">Error</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
In order to make it possible to execute the rest of the subscriber
stack when one thows an exception, the subscribers exceptions are
caught. The most recent exception is stored in this property
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_scope">
<h4><a name="property_scope" property="yui:name">scope</a>
- <code><span property="yui:type">object</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
The context the event will fire from by default. Defaults to the window obj.
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_signature">
<h4><a name="property_signature" property="yui:name">signature</a>
- <code><span property="yui:type">int</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
Custom events support two styles of arguments provided to the event
subscribers.
<ul>
<li>YAHOO.util.CustomEvent.LIST:
<ul>
<li>param1: event name</li>
<li>param2: array of arguments sent to fire</li>
<li>param3: <optional> a custom object supplied by the subscriber</li>
</ul>
</li>
<li>YAHOO.util.CustomEvent.FLAT
<ul>
<li>param1: the first argument passed to fire. If you need to
pass multiple parameters, use and array or object literal</li>
<li>param2: <optional> a custom object supplied by the subscriber</li>
</ul>
</li>
</ul>
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_silent">
<h4><a name="property_silent" property="yui:name">silent</a>
- <code><span property="yui:type">boolean</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
By default all custom events are logged in the debug build. Set silent to true
to disable debug output for this event.
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_subscribers">
<h4><a name="property_subscribers" property="yui:name">subscribers</a>
- <code><span property="yui:type">Subscriber[]</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
The subscribers to this event
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_type">
<h4><a name="property_type" property="yui:name">type</a>
- <code><span property="yui:type">string</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
The type of event, returned to subscribers when the event fires
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_YAHOO.util.CustomEvent.FLAT">
<h4><a name="property_YAHOO.util.CustomEvent.FLAT" property="yui:name">YAHOO.util.CustomEvent.FLAT</a>
- <code>static <span property="yui:type">int</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
Subscriber listener sigature constant. The FLAT type returns two
parameters: the first argument passed to fire and the optional
custom object
</div>
</div>
<hr />
</div>
<div class="" rel="yui:property" resource="#property_YAHOO.util.CustomEvent.LIST">
<h4><a name="property_YAHOO.util.CustomEvent.LIST" property="yui:name">YAHOO.util.CustomEvent.LIST</a>
- <code>static <span property="yui:type">int</span></code>
</h4>
<div class="detail">
<div class="description" property="yui:description">
Subscriber listener sigature constant. The LIST type returns three
parameters: the event type, the array of args passed to fire, and
the optional custom object
</div>
</div>
<hr />
</div>
</div>
</div>
</div>
<div rel="yui:methods" resource="#methods">
<div class="section method details">
<h3 id="methods">Methods</h3>
<div class="content">
<div class="private" rel="yui:method" resource="#method__delete">
<h4>
<a name="method__delete">_delete</a></h4>
<div class="detail" >
<code>
private
void
<strong property="yui:name">_delete</strong>
(
)
</code>
<div class="description" property="yui:description">
</div>
<div class="description">
</div>
</div>
<hr />
</div>
<div class="" rel="yui:method" resource="#method_fire">
<h4>
<a name="method_fire">fire</a></h4>
<div class="detail" >
<code>
boolean
<strong property="yui:name">fire</strong>
(
arguments
)
</code>
<div class="description" property="yui:description">
Notifies the subscribers. The callback functions will be executed
from the context specified when the event was created, and with the
following parameters:
<ul>
<li>The type of event</li>
<li>All of the arguments fire() was executed with as an array</li>
<li>The custom object (if any) that was passed into the subscribe()
method</li>
</ul>
</div>
<div class="description">
<dl rel="yui:parameters">
<dt>Parameters:</dt>
<dd rel="yui:parameter">
<code><span property="yui:name">arguments</span>
&lt;<span property="yui:type">Object*</span>&gt;
</code>
<span property="yui:description"> an arbitrary set of parameters to pass to
the handler.</span>
</dd>
</dl>
<dl>
<dt>Returns:
<code property="yui:return">
boolean
</code></dt>
<dd property="yui:returnInfo">false if one of the subscribers returned false,
true otherwise</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="" rel="yui:method" resource="#method_subscribe">
<h4>
<a name="method_subscribe">subscribe</a></h4>
<div class="detail" >
<code>
void
<strong property="yui:name">subscribe</strong>
(
fn
,
obj
)
</code>
<div class="description" property="yui:description">
Subscribes the caller to this event
</div>
<div class="description">
<dl rel="yui:parameters">
<dt>Parameters:</dt>
<dd rel="yui:parameter">
<code><span property="yui:name">fn</span>
&lt;<span property="yui:type">Function</span>&gt;
</code>
<span property="yui:description"> The function to execute</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">obj</span>
&lt;<span property="yui:type">Object</span>&gt;
</code>
<span property="yui:description"> An object to be passed along when the event fires.
overrideContext <boolean|Object> If true, the obj passed in becomes the execution
context of the listener. If an object, that object becomes the execution context.</span>
</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="" rel="yui:method" resource="#method_toString">
<h4>
<a name="method_toString">toString</a></h4>
<div class="detail" >
<code>
void
<strong property="yui:name">toString</strong>
(
)
</code>
<div class="description" property="yui:description">
</div>
<div class="description">
</div>
</div>
<hr />
</div>
<div class="" rel="yui:method" resource="#method_unsubscribe">
<h4>
<a name="method_unsubscribe">unsubscribe</a></h4>
<div class="detail" >
<code>
boolean
<strong property="yui:name">unsubscribe</strong>
(
fn
,
obj
)
</code>
<div class="description" property="yui:description">
Unsubscribes subscribers.
</div>
<div class="description">
<dl rel="yui:parameters">
<dt>Parameters:</dt>
<dd rel="yui:parameter">
<code><span property="yui:name">fn</span>
&lt;<span property="yui:type">Function</span>&gt;
</code>
<span property="yui:description"> The subscribed function to remove, if not supplied
all will be removed</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">obj</span>
&lt;<span property="yui:type">Object</span>&gt;
</code>
<span property="yui:description"> The custom object passed to subscribe. This is
optional, but if supplied will be used to
disambiguate multiple listeners that are the same
(e.g., you subscribe many object using a function
that lives on the prototype)</span>
</dd>
</dl>
<dl>
<dt>Returns:
<code property="yui:return">
boolean
</code></dt>
<dd property="yui:returnInfo">True if the subscriber was found and detached.</dd>
</dl>
</div>
</div>
<hr />
</div>
<div class="" rel="yui:method" resource="#method_unsubscribeAll">
<h4>
<a name="method_unsubscribeAll">unsubscribeAll</a></h4>
<div class="detail" >
<code>
int
<strong property="yui:name">unsubscribeAll</strong>
(
)
</code>
<div class="description" property="yui:description">
Removes all listeners
</div>
<div class="description">
<dl>
<dt>Returns:
<code property="yui:return">
int
</code></dt>
<dd property="yui:returnInfo">The number of listeners unsubscribed</dd>
</dl>
</div>
</div>
<hr />
</div>
</div>
</div>
</div>
<div rel="yui:events" resource="#events">
<div class="section method details">
<h3 id="events">Events</h3>
<div class="content">
<div class="" rel="yui:event" resource="#event_subscribeEvent">
<h4>
<a name="event_subscribeEvent">subscribeEvent</a></h4>
<div class="detail">
<code>
<strong property="yui:name">subscribeEvent</strong>
(
fn
,
obj
,
override
)
</code>
<div class="description" property="yui:description">
Custom events provide a custom event that fires whenever there is
a new subscriber to the event. This provides an opportunity to
handle the case where there is a non-repeating event that has
already fired has a new subscriber.
</div>
<div class="description">
<dl rel="yui:parameters">
<dt>Parameters:</dt>
<dd rel="yui:parameter">
<code><span property="yui:name">fn</span>
&lt;<span property="yui:type">Function</span>&gt;
</code>
<span property="yui:description"> The function to execute</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">obj</span>
&lt;<span property="yui:type">object</span>&gt;
</code>
<span property="yui:description"> <Object> An object to be passed along when the event fires.
Defaults to the custom event.</span>
</dd>
<dd rel="yui:parameter">
<code><span property="yui:name">override</span>
&lt;<span property="yui:type">object</span>&gt;
</code>
<span property="yui:description"> <boolean|Object> If true, the obj passed in becomes the
execution context of the listener. If an object, that object becomes
the execution context. Defaults to the custom event.</span>
</dd>
</dl>
</div>
</div>
<hr />
</div>
</div>
</div>
</div>
<div rel="yui:attributes" resource="#configattributes">
</div>
</div>
</div>
<div class="yui-b">
<div class="nav">
<div id="moduleList" class="module">
<h4>Modules</h4>
<ul class="content">
<li class=""><a href="module_animation.html" title="animation">animation</a></li>
<li class=""><a href="module_autocomplete.html" title="autocomplete">autocomplete</a></li>
<li class=""><a href="module_button.html" title="button">button</a></li>
<li class=""><a href="module_calendar.html" title="calendar">calendar</a></li>
<li class=""><a href="module_carousel.html" title="carousel">carousel</a></li>
<li class=""><a href="module_charts.html" title="charts">charts</a></li>
<li class=""><a href="module_colorpicker.html" title="colorpicker">colorpicker</a></li>
<li class=""><a href="module_connection.html" title="connection">connection</a></li>
<li class=""><a href="module_container.html" title="container">container</a></li>
<li class=""><a href="module_cookie.html" title="cookie">cookie</a></li>
<li class=""><a href="module_datasource.html" title="datasource">datasource</a></li>
<li class=""><a href="module_datatable.html" title="datatable">datatable</a></li>
<li class=""><a href="module_datemath.html" title="datemath">datemath</a></li>
<li class=""><a href="module_dom.html" title="dom">dom</a></li>
<li class=""><a href="module_dragdrop.html" title="dragdrop">dragdrop</a></li>
<li class=""><a href="module_editor.html" title="editor">editor</a></li>
<li class=""><a href="module_element.html" title="element">element</a></li>
<li class=""><a href="module_element-delegate.html" title="element-delegate">element-delegate</a></li>
<li class="selected"><a href="module_event.html" title="event">event</a></li>
<li class=""><a href="module_event-delegate.html" title="event-delegate">event-delegate</a></li>
<li class=""><a href="module_event-mouseenter.html" title="event-mouseenter">event-mouseenter</a></li>
<li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li>
<li class=""><a href="module_get.html" title="get">get</a></li>
<li class=""><a href="module_history.html" title="history">history</a></li>
<li class=""><a href="module_imagecropper.html" title="imagecropper">imagecropper</a></li>
<li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li>
<li class=""><a href="module_json.html" title="json">json</a></li>
<li class=""><a href="module_layout.html" title="layout">layout</a></li>
<li class=""><a href="module_logger.html" title="logger">logger</a></li>
<li class=""><a href="module_menu.html" title="menu">menu</a></li>
<li class=""><a href="module_paginator.html" title="paginator">paginator</a></li>
<li class=""><a href="module_profiler.html" title="profiler">profiler</a></li>
<li class=""><a href="module_profilerviewer.html" title="profilerviewer">profilerviewer</a></li>
<li class=""><a href="module_progressbar.html" title="progressbar">progressbar</a></li>
<li class=""><a href="module_resize.html" title="resize">resize</a></li>
<li class=""><a href="module_selector.html" title="selector">selector</a></li>
<li class=""><a href="module_slider.html" title="slider">slider</a></li>
<li class=""><a href="module_storage.html" title="Storage">Storage</a></li>
<li class=""><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li>
<li class=""><a href="module_swf.html" title="swf">swf</a></li>
<li class=""><a href="module_swfdetect.html" title="swfdetect">swfdetect</a></li>
<li class=""><a href="module_swfstore.html" title="swfstore">swfstore</a></li>
<li class=""><a href="module_tabview.html" title="tabview">tabview</a></li>
<li class=""><a href="module_treeview.html" title="treeview">treeview</a></li>
<li class=""><a href="module_uploader.html" title="uploader">uploader</a></li>
<li class=""><a href="module_yahoo.html" title="yahoo">yahoo</a></li>
<li class=""><a href="module_yuiloader.html" title="yuiloader">yuiloader</a></li>
<li class=""><a href="module_yuitest.html" title="yuitest">yuitest</a></li>
</ul>
</div>
<div id="classList" class="module">
<h4>Classes</h4>
<ul class="content">
<li class="selected"><a href="YAHOO.util.CustomEvent.html" title="YAHOO.util.CustomEvent">YAHOO.util.CustomEvent</a></li>
<li class=""><a href="YAHOO.util.Event.html" title="YAHOO.util.Event">YAHOO.util.Event</a></li>
<li class=""><a href="YAHOO.util.EventProvider.html" title="YAHOO.util.EventProvider">YAHOO.util.EventProvider</a></li>
<li class=""><a href="YAHOO.util.KeyListener.html" title="YAHOO.util.KeyListener">YAHOO.util.KeyListener</a></li>
<li class=""><a href="YAHOO.util.Subscriber.html" title="YAHOO.util.Subscriber">YAHOO.util.Subscriber</a></li>
</ul>
</div>
<div id="fileList" class="module">
<h4>Files</h4>
<ul class="content">
<li class=""><a href="CustomEvent.js.html" title="CustomEvent.js">CustomEvent.js</a></li>
<li class=""><a href="Event.js.html" title="Event.js">Event.js</a></li>
<li class=""><a href="EventProvider.js.html" title="EventProvider.js">EventProvider.js</a></li>
<li class=""><a href="KeyListener.js.html" title="KeyListener.js">KeyListener.js</a></li>
</ul>
</div>
<div id="propertyList" class="module">
<h4>Properties</h4>
<ul class="content">
<li class=""><a href="#property_fired" title="fired">fired</a></li>
<li class=""><a href="#property_firedWith" title="firedWith">firedWith</a></li>
<li class=""><a href="#property_fireOnce" title="fireOnce">fireOnce</a></li>
<li class=""><a href="#property_lastError" title="lastError">lastError</a></li>
<li class=""><a href="#property_scope" title="scope">scope</a></li>
<li class=""><a href="#property_signature" title="signature">signature</a></li>
<li class=""><a href="#property_silent" title="silent">silent</a></li>
<li class=""><a href="#property_subscribers" title="subscribers">subscribers</a></li>
<li class=""><a href="#property_type" title="type">type</a></li>
<li class=""><a href="#property_YAHOO.util.CustomEvent.FLAT" title="YAHOO.util.CustomEvent.FLAT">YAHOO.util.CustomEvent.FLAT</a></li>
<li class=""><a href="#property_YAHOO.util.CustomEvent.LIST" title="YAHOO.util.CustomEvent.LIST">YAHOO.util.CustomEvent.LIST</a></li>
</ul>
</div>
<div id="methodsList" class="module">
<h4>Methods</h4>
<ul class="content">
<li class="private"><a href="#method__delete" title="_delete">_delete</a></li>
<li class=""><a href="#method_fire" title="fire">fire</a></li>
<li class=""><a href="#method_subscribe" title="subscribe">subscribe</a></li>
<li class=""><a href="#method_toString" title="toString">toString</a></li>
<li class=""><a href="#method_unsubscribe" title="unsubscribe">unsubscribe</a></li>
<li class=""><a href="#method_unsubscribeAll" title="unsubscribeAll">unsubscribeAll</a></li>
</ul>
</div>
<div id="eventsList" class="module">
<h4>Events</h4>
<ul class="content">
<li class=""><a href="#event_subscribeEvent" title="subscribeEvent">subscribeEvent</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="ft">
<hr />
Copyright &copy; 2010 Yahoo! Inc. All rights reserved.
</div>
</div>
<script type="text/javascript">
var ALL_YUI_PROPS = [{"access": "private", "host": "YAHOO.util.CustomEvent", "name": "_delete", "url": "YAHOO.util.CustomEvent.html#method__delete", "type": "method"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "fire", "url": "YAHOO.util.CustomEvent.html#method_fire", "type": "method"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "fired", "url": "YAHOO.util.CustomEvent.html#property_fired", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "firedWith", "url": "YAHOO.util.CustomEvent.html#property_firedWith", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "fireOnce", "url": "YAHOO.util.CustomEvent.html#property_fireOnce", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "lastError", "url": "YAHOO.util.CustomEvent.html#property_lastError", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "scope", "url": "YAHOO.util.CustomEvent.html#property_scope", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "signature", "url": "YAHOO.util.CustomEvent.html#property_signature", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "silent", "url": "YAHOO.util.CustomEvent.html#property_silent", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "subscribe", "url": "YAHOO.util.CustomEvent.html#method_subscribe", "type": "method"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "subscribeEvent", "url": "YAHOO.util.CustomEvent.html#event_subscribeEvent", "type": "event"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "subscribers", "url": "YAHOO.util.CustomEvent.html#property_subscribers", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "toString", "url": "YAHOO.util.CustomEvent.html#method_toString", "type": "method"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "type", "url": "YAHOO.util.CustomEvent.html#property_type", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "unsubscribe", "url": "YAHOO.util.CustomEvent.html#method_unsubscribe", "type": "method"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "unsubscribeAll", "url": "YAHOO.util.CustomEvent.html#method_unsubscribeAll", "type": "method"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "YAHOO.util.CustomEvent.FLAT", "url": "YAHOO.util.CustomEvent.html#property_YAHOO.util.CustomEvent.FLAT", "type": "property"}, {"access": "", "host": "YAHOO.util.CustomEvent", "name": "YAHOO.util.CustomEvent.LIST", "url": "YAHOO.util.CustomEvent.html#property_YAHOO.util.CustomEvent.LIST", "type": "property"}];
</script>
</body>
</html>