MACROMEDIA COLDFUSION MX 7.0.2-USING COLDFUSION MX WITH FLEX 2 Use Manual page 59

Table of Contents

Advertisement

<cfthrow message="'#arguments.val#' is not a valid numeric"/>
</cfif>
</cffunction>
<cffunction name="getfirstName" output="false" access="public"
returntype="any">
<cfreturn this.firstName>
</cffunction>
<cffunction name="setfirstName" output="false" access="public"
returntype="void">
<cfargument name="val" required="true">
<cfset this.firstName = arguments.val>
</cffunction>
<cffunction name="getlastName" output="false" access="public"
returntype="any">
<cfreturn this.lastName>
</cffunction>
<cffunction name="setlastName" output="false" access="public"
returntype="void">
<cfargument name="val" required="true">
<cfset this.lastName = arguments.val>
</cffunction>
<cffunction name="getaddress" output="false" access="public"
returntype="any">
<cfreturn this.address>
</cffunction>
<cffunction name="setaddress" output="false" access="public"
returntype="void">
<cfargument name="val" required="true">
<cfset this.address = arguments.val>
</cffunction>
<cffunction name="getcity" output="false" access="public"
returntype="any">
<cfreturn this.city>
</cffunction>
<cffunction name="setcity" output="false" access="public"
returntype="void">
<cfargument name="val" required="true">
<cfset this.city = arguments.val>
</cffunction>
<cffunction name="getstate" output="false" access="public"
returntype="any">
Example application
59

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION MX 7.0.2-USING COLDFUSION MX WITH FLEX 2 and is the answer not in the manual?

Questions and answers

Subscribe to Our Youtube Channel

This manual is also suitable for:

Coldfusion mx

Table of Contents