triggerDataMember / invokeImplicitAccessor issue?

Before I supply code (because I’m starting to suspect I didn’t recall this functionality accurately) I’m basing my claim on this blog post from Adam Cameron, which (if I’m reading correctly) boils down to:

  1. Create a CFC.
  2. Give it some properties.
  3. The properties should be accessible as if it were a struct and through its generated getters/setters. An either-or situation.

which comes from reading his bullet, here:

setting invokeImplicitAccessor=true in Application.cfc means that if you have accessors for the property (well: you don’t even need the properties specified, in reality) then they will be called implicitly if you access the property.

Perhaps my forcing the type in the input is stripping the CFC of its ability to call its accessors via its properties?

EDIT : Negative. Removed the type from the input parameter, same error as before. Can call the bean’s getter/setter, but trying to access its property yields enable [trigger data member] in administrator to also invoke getters and setters.