<cfcomponent>
<cfset VARIABLES.Value = "" />
<cffunction
name="Get"
access="public"
returntype="any"
output="false"
hint="Gets the property value.">
<cfreturn VARIABLES.Value />
</cffunction>
<cffunction
name="Set"
access="public"
returntype="void"
output="false"
hint="Sets the property value.">
<cfargument
name="Value"
type="any"
required="false"
/>
<cfif NOT StructKeyExists( ARGUMENTS, "Value" )>
<cfset VARIABLES.Value = JavaCast( "null", 0 ) />
<cfelse>
<cfset VARIABLES.Value = ARGUMENTS.Value />
</cfif>
<cfreturn />
</cffunction>
</cfcomponent>