Changeset 882 for coldbox/trunk/src/system/extras/baseTest.cfc
- Timestamp:
- 09/30/07 07:42:47 (6 years ago)
- Files:
-
- 1 modified
-
coldbox/trunk/src/system/extras/baseTest.cfc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/src/system/extras/baseTest.cfc
r867 r882 52 52 53 53 <!--- getter for AppMapping ---> 54 <cffunction name="getAppMapping" access="public" returntype="string" output="false" >54 <cffunction name="getAppMapping" access="public" returntype="string" output="false" hint="Get the AppMapping"> 55 55 <cfreturn instance.AppMapping> 56 56 </cffunction> 57 57 58 <cffunction name="setAppMapping" access="public" output="false" returntype="void" hint="Set AppMapping"> 58 <!--- setter for AppMapping ---> 59 <cffunction name="setAppMapping" access="public" output="false" returntype="void" hint="Set the AppMapping"> 59 60 <cfargument name="AppMapping" type="string" required="true"/> 60 61 <cfset instance.AppMapping = arguments.AppMapping/> … … 62 63 63 64 <!--- getter for ConfigMapping ---> 64 <cffunction name="getConfigMapping" access="public" returntype="string" output="false" >65 <cffunction name="getConfigMapping" access="public" returntype="string" output="false" hint="Get the ConfigMapping"> 65 66 <cfreturn instance.ConfigMapping> 66 67 </cffunction> 67 68 68 <cffunction name="setConfigMapping" access="public" output="false" returntype="void" hint="Set ConfigMapping"> 69 <!--- setter for ConfigMapping ---> 70 <cffunction name="setConfigMapping" access="public" output="false" returntype="void" hint="Set the ConfigMapping"> 69 71 <cfargument name="ConfigMapping" type="string" required="true"/> 70 72 <cfset instance.ConfigMapping = arguments.ConfigMapping/> … … 72 74 73 75 <!--- getter for controller ---> 74 <cffunction name="getcontroller" access="public" returntype="any" output="false" >76 <cffunction name="getcontroller" access="public" returntype="any" output="false" hint="Get a reference to the ColdBox controller"> 75 77 <cfreturn instance.controller> 76 78 </cffunction>
