ScatterHQ / machinist

A library for constructing finite state machines
Apache License 2.0
57 stars 12 forks source link

MethodSuffixOutputter should support configuring the prefix #10

Closed itamarst closed 10 years ago

itamarst commented 10 years ago

E.g. in one case I would like to use _output_ as a prefix since these methods are not part of the external public API of the object.

exarkun commented 10 years ago

This seems reasonable, I guess. Note that you can also achieve this hiding by putting all of your output methods on a different object that isn't exposed to the application at all, though.

exarkun commented 10 years ago

This feature is implemented by the referenced PR.