Skip to content

Commit

Permalink
updated version and asdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
Cliff Hall committed Mar 18, 2008
1 parent 9101717 commit e4d1a6b
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
7 changes: 7 additions & 0 deletions asdoc/all-index-N.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@
Notify the <code>IObservers</code> for a particular <code>INotification</code>.</td>
</tr>
<tr>
<td colspan="2" class="idxrow"><a onclick="javascript:loadClassListFrame('org/puremvc/as3/interfaces/class-list.html');" href="org/puremvc/as3/interfaces/IFacade.html#notifyObservers()">notifyObservers</a>(note:<a href="org/puremvc/as3/interfaces/INotification.html" onclick="javascript:loadClassListFrame('org/puremvc/as3/interfaces./class-list.html');">org.puremvc.as3.interfaces:INotification</a>) &mdash; Method in interface org.puremvc.as3.interfaces.<a onclick="javascript:loadClassListFrame('org/puremvc/as3/interfaces/class-list.html');" href="org/puremvc/as3/interfaces/IFacade.html">IFacade</a></td>
</tr>
<tr>
<td width="20"></td><td>
Notify the <code>IObservers</code> for a particular <code>INotification</code>.</td>
</tr>
<tr>
<td colspan="2" class="idxrow"><a onclick="javascript:loadClassListFrame('org/puremvc/as3/interfaces/class-list.html');" href="org/puremvc/as3/interfaces/IView.html#notifyObservers()">notifyObservers</a>(note:<a href="org/puremvc/as3/interfaces/INotification.html" onclick="javascript:loadClassListFrame('org/puremvc/as3/interfaces./class-list.html');">org.puremvc.as3.interfaces:INotification</a>) &mdash; Method in interface org.puremvc.as3.interfaces.<a onclick="javascript:loadClassListFrame('org/puremvc/as3/interfaces/class-list.html');" href="org/puremvc/as3/interfaces/IView.html">IView</a></td>
</tr>
<tr>
Expand Down
37 changes: 36 additions & 1 deletion asdoc/org/puremvc/as3/interfaces/IFacade.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../../../../style.css" type="text/css" media="screen">
<link rel="stylesheet" href="../../../../print.css" type="text/css" media="print">
<meta content="IFacade,org.puremvc.as3.interfaces.IFacade,hasCommand,hasMediator,hasProxy,registerCommand,registerMediator,registerProxy,removeCommand,removeMediator,removeProxy,retrieveMediator,retrieveProxy" name="keywords">
<meta content="IFacade,org.puremvc.as3.interfaces.IFacade,hasCommand,hasMediator,hasProxy,notifyObservers,registerCommand,registerMediator,registerProxy,removeCommand,removeMediator,removeProxy,retrieveMediator,retrieveProxy" name="keywords">
<title>org.puremvc.as3.interfaces.IFacade</title>
</head>
<body>
Expand Down Expand Up @@ -119,6 +119,14 @@
<tr class="">
<td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol">
<div class="summarySignature">
<a class="signatureLink" href="#notifyObservers()">notifyObservers</a>(note:<a href="INotification.html">INotification</a>):void</div>
<div class="summaryTableDescription">
Notify the <code>IObservers</code> for a particular <code>INotification</code>.</div>
</td><td class="summaryTableOwnerCol">IFacade</td>
</tr>
<tr class="">
<td class="summaryTablePaddingCol">&nbsp;</td><td class="summaryTableInheritanceCol">&nbsp;</td><td class="summaryTableSignatureCol">
<div class="summarySignature">
<a class="signatureLink" href="#registerCommand()">registerCommand</a>(noteName:String, commandClassRef:Class):void</div>
<div class="summaryTableDescription">
Register an <code>ICommand</code> with the <code>Controller</code>.</div>
Expand Down Expand Up @@ -276,6 +284,33 @@
</tr>
</table>
</div>
<a name="notifyObservers()"></a>
<table cellspacing="0" cellpadding="0" class="detailHeader">
<tr>
<td class="detailHeaderName">notifyObservers</td><td class="detailHeaderParens">()</td><td class="detailHeaderType">method</td><td class="detailHeaderRule">&nbsp;</td>
</tr>
</table>
<div class="detailBody">
<code>public function notifyObservers(note:<a href="INotification.html">INotification</a>):void</code><p>
Notify the <code>IObservers</code> for a particular <code>INotification</code>.

<P>
All previously attached <code>IObservers</code> for this <code>INotification</code>'s
list are notified and are passed a reference to the <code>INotification</code> in
the order in which they were registered.</P>
<P>
NOTE: Use this method only if you are sending custom Notifications. Otherwise
use the sendNotification method which does not require you to create the
Notification instance.</P>

</p><span class="label">Parameters</span>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="20px"></td><td><code><span class="label">note</span>:<a href="INotification.html">INotification</a></code> &mdash; the <code>INotification</code> to notify <code>IObservers</code> of.
</td>
</tr>
</table>
</div>
<a name="registerCommand()"></a>
<table cellspacing="0" cellpadding="0" class="detailHeader">
<tr>
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Release Date: 03/17/08
License: Creative Commons Attribution 3.0 United States License
--------------------------------------------------------------------------
2.0.3 Added notifyObservers back to IFacade, where it is required
if you are sending custom Notifications.
if you are sending custom Notifications. No unit tests required.

2.0.2 Refactored View.removeMediator method, moving the logic for removing
an observer into a removeObserver method (also on IView), which is now
Expand Down

0 comments on commit e4d1a6b

Please sign in to comment.