Shared parameter?

Not as far as I know. param.depends reacts to parameters, not parameterized classes. You have to specify which parameters you want to depend on when using param.depends.

Interestingly, you can just omit the param.depends entirely from your methods, and each one will react all parameters declared in the class without having to specify which. Refer to: What is the purpose of @param.depends in a parameterized class?

1 Like