ColdFusion 8 Application Specific Mappings Work With The CFComponent Extends Attribute

<cfcomponent
	extends="com.Base"
	output="false">
 
	<cffunction
		name="Test"
		access="public"
		returntype="string"
		output="false">
 
		<!---
			Return test string from both the super component
			(from extends attribute) and the current component.
		--->
		<cfreturn (
			"[ #SUPER.Test()# ] " &
			"I am com.Test.Test()"
			) />
	</cffunction>
 
</cfcomponent>

For Cut-and-Paste