Jeremy Rottman
Member since Dec 29, 2009
- Profile: /members/5059-jeremy-rottman.htm
- Comments: 4
Recent Blog Comments By Jeremy Rottman
-
Ask Ben: Using ColdFusion Components As Return Types, Argument Types, And Property Types
Posted on Dec 29, 2009 at 5:11 PM
I sent something very similar over to Ray Camden on day two after the release of CF9. He did say it was a known bug. As of yet, I have not been able to find a workaround that I liked. Importing the name space is nice, but not something I would like to do with an application as large as the one I a... read more »
-
Ask Ben: Using ColdFusion Components As Return Types, Argument Types, And Property Types
Posted on Dec 29, 2009 at 4:48 PM
@Ben Lets say I have these two files: UserVO.cfc UserService.cfc UserVO.cfc: component { property name="Firstname" type="string"; property name="Lastname" type="string"; public string function getFirstname() { return Firstname; } public void function setFirstname(required string Firstna... read more »
-
Ask Ben: Using ColdFusion Components As Return Types, Argument Types, And Property Types
Posted on Dec 29, 2009 at 4:30 PM
Something that I have noticed with the cf9 scripting interface is that you can no longer accept an argument with a defined type. This is something I do quite a bit with flex coding. As an example I would do something like this: public com.model.vo.Member function DoSomethingMemberIsh( required c... read more »