<cfcomponent
extends="GenericGetterSetter"
output="false"
hint="Handles methods for a person.">
<cfset VARIABLES.Instance = {
Gender = "",
Name = "",
NickName = "",
Hair = "",
Eyes = "",
Age = "",
Height = "",
Sexyness = ""
} />
<cffunction
name="Init"
access="public"
returntype="any"
output="false"
hint="Returns an intialized component.">
<cfset SUPER.Init( ArgumentCollection = ARGUMENTS ) />
<cfreturn THIS />
</cffunction>
<cffunction name="GetGender" kinky:type="spoof"></cffunction>
<cffunction name="SetGender" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
<cffunction name="GetName" kinky:type="spoof"></cffunction>
<cffunction name="SetName" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
<cffunction name="GetNickName" kinky:type="spoof"></cffunction>
<cffunction name="SetNickName" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
<cffunction name="GetHair" kinky:type="spoof"></cffunction>
<cffunction name="SetHair" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
<cffunction name="GetEyes" kinky:type="spoof"></cffunction>
<cffunction name="SetEyes" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
<cffunction name="GetAge" kinky:type="spoof"></cffunction>
<cffunction name="SetAge" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
<cffunction name="GetHeight" kinky:type="spoof"></cffunction>
<cffunction name="SetHeight" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
<cffunction name="GetSexyness" kinky:type="spoof"></cffunction>
<cffunction name="SetSexyness" kinky:type="spoof">
<cfargument name="Value" />
</cffunction>
</cfcomponent>