Problem Naming an Interface
Posted
by Jens Schauder
on Stack Overflow
See other posts from Stack Overflow
or by Jens Schauder
Published on 2010-06-09T06:57:58Z
Indexed on
2010/06/09
7:02 UTC
Read the original article
Hit count: 234
language-agnostic
|naming
I have an interface named PropertyFilter
which used to take a Property
and decide if accepts it or not. And the world was good.
But now the interface changed, so that implementations may choose to add additional Property
s. For example a Customer
property might get expanded into Name
and Address
properties.
I think it is obvious this is not a Filter anymore, but how would you call such a thing?
© Stack Overflow or respective owner