Show
Ignore:
Timestamp:
09/30/07 07:42:47 (6 years ago)
Author:
lmajano
Message:

An incredible amount of fixes updates and additions. Project Interceptors has also been completed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • coldbox/trunk/src/system/extras/baseTest.cfc

    r867 r882  
    5252 
    5353        <!--- 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"> 
    5555                <cfreturn instance.AppMapping> 
    5656        </cffunction> 
    5757         
    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"> 
    5960                <cfargument name="AppMapping" type="string" required="true"/> 
    6061                <cfset instance.AppMapping = arguments.AppMapping/> 
     
    6263 
    6364        <!--- 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"> 
    6566                <cfreturn instance.ConfigMapping> 
    6667        </cffunction> 
    6768         
    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"> 
    6971                <cfargument name="ConfigMapping" type="string" required="true"/> 
    7072                <cfset instance.ConfigMapping = arguments.ConfigMapping/> 
     
    7274 
    7375        <!--- 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"> 
    7577                <cfreturn instance.controller> 
    7678        </cffunction>