method names with fluent interface
- by deamon
I have a Permissions class with methods in fluent style like this:
somePermissions.setRead(true).setWrite(false).setExecute(true)
The question is, whether I should name these methods set{Property} or only {property}. The latter would look like this:
somePermissions.read(true).write(false).execute(true)
If I look at these methods separately I…