ColdFusion 8 Application Specific Mappings Work With The CFComponent Extends Attribute

<cfcomponent
	output="false"
	hint="I am the base component for this package.">
 
	<cffunction
		name="Test"
		access="public"
		returntype="string"
		output="false">
 
		<cfreturn "I am com.Base.Test()" />
	</cffunction>
 
</cfcomponent>

For Cut-and-Paste