<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Polymorphism in ActionScript 3.0</title>
	<atom:link href="http://blog.oinam.com/2006/polymorphism-in-actionscript-30/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oinam.com/2006/polymorphism-in-actionscript-30/</link>
	<description>All about Oinam</description>
	<lastBuildDate>Tue, 14 Jul 2009 11:14:49 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Jorge Pereira</title>
		<link>http://blog.oinam.com/2006/polymorphism-in-actionscript-30/comment-page-1/#comment-28429</link>
		<dc:creator>Jorge Pereira</dc:creator>
		<pubDate>Tue, 21 Apr 2009 05:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.oinam.com/__blog/?p=11#comment-28429</guid>
		<description>To El above,

Initially I thought typecasting: A(m).abc()

But in any case, if you find yourself needing to do it often, then it&#039;s time to revise your code</description>
		<content:encoded><![CDATA[<p>To El above,</p>
<p>Initially I thought typecasting: A(m).abc()</p>
<p>But in any case, if you find yourself needing to do it often, then it&#8217;s time to revise your code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RaymonWazerri</title>
		<link>http://blog.oinam.com/2006/polymorphism-in-actionscript-30/comment-page-1/#comment-2287</link>
		<dc:creator>RaymonWazerri</dc:creator>
		<pubDate>Fri, 20 Apr 2007 23:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.oinam.com/__blog/?p=11#comment-2287</guid>
		<description>Hey, 
I love what you&#039;e doing! 
Don&#039;t ever change and best of luck. 
 
Raymon W.</description>
		<content:encoded><![CDATA[<p>Hey, <br />
I love what you&#8217;e doing! <br />
Don&#8217;t ever change and best of luck. </p>
<p>Raymon W.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El</title>
		<link>http://blog.oinam.com/2006/polymorphism-in-actionscript-30/comment-page-1/#comment-736</link>
		<dc:creator>El</dc:creator>
		<pubDate>Wed, 24 Jan 2007 00:12:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.oinam.com/__blog/?p=11#comment-736</guid>
		<description>Actually, a question:

Class A - a super class with method abc();
Class B - a subclass of A that has overridden abc() method;

var m:A = new B();

m.abc() =&gt; calls abc() from class B;

How do I call abc() from class A (syntax)?
(i&#039;ve tried e.g.,  m.super.abc() which didn&#039;t work)

Regards,

El</description>
		<content:encoded><![CDATA[<p>Actually, a question:</p>
<p>Class A &#8211; a super class with method abc();<br />
Class B &#8211; a subclass of A that has overridden abc() method;</p>
<p>var m:A = new B();</p>
<p>m.abc() =&gt; calls abc() from class B;</p>
<p>How do I call abc() from class A (syntax)?<br />
(i&#8217;ve tried e.g.,&#8195;m.super.abc() which didn&#8217;t work)</p>
<p>Regards,</p>
<p>El</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip</title>
		<link>http://blog.oinam.com/2006/polymorphism-in-actionscript-30/comment-page-1/#comment-115</link>
		<dc:creator>Philip</dc:creator>
		<pubDate>Tue, 10 Jan 2006 16:48:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.oinam.com/__blog/?p=11#comment-115</guid>
		<description>It looks like c# besides no 
virtual keyword is included

i think there aren&#039;t more changes for new language version ...
</description>
		<content:encoded><![CDATA[<p>It looks like c# besides no <br />
virtual keyword is included</p>
<p>i think there aren&#8217;t more changes for new language version &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blog.oinam.com/2006/polymorphism-in-actionscript-30/comment-page-1/#comment-114</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 02 Jan 2006 05:12:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.oinam.com/__blog/?p=11#comment-114</guid>
		<description>when using polymorphism through inheritance you came across that problem in AS2.0 of not having an ability to protect your methods from being overridden. 

I always preferred to use interfaces to enforce polymorphism whenever possible.</description>
		<content:encoded><![CDATA[<p>when using polymorphism through inheritance you came across that problem in <span class="caps">AS2.0 </span>of not having an ability to protect your methods from being overridden. </p>
<p>I always preferred to use interfaces to enforce polymorphism whenever possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony MacDonell</title>
		<link>http://blog.oinam.com/2006/polymorphism-in-actionscript-30/comment-page-1/#comment-113</link>
		<dc:creator>Tony MacDonell</dc:creator>
		<pubDate>Mon, 02 Jan 2006 04:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.oinam.com/__blog/?p=11#comment-113</guid>
		<description>Actually, Polymorphism goes far beyond Inhertiance and overriding methods these days.

The truest expression of it in Actionscript 3 (and 2 as well) is the usage of interfaces, and usage of interfaces as a data type.

Actionscript 3 actually allows you to type a variable to an Interface. You see this frequently used in the new Flex Framework. By typing a var to an interface, you can easily escape from inheritance pitfalls while maintaining the benefits of polymorphism.</description>
		<content:encoded><![CDATA[<p>Actually, Polymorphism goes far beyond Inhertiance and overriding methods these days.</p>
<p>The truest expression of it in Actionscript 3 (and 2 as well) is the usage of interfaces, and usage of interfaces as a data type.</p>
<p>Actionscript 3 actually allows you to type a variable to an Interface. You see this frequently used in the new Flex Framework. By typing a var to an interface, you can easily escape from inheritance pitfalls while maintaining the benefits of polymorphism.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
