
Remove Interface Methods from class methods
Quote:
> I have a class that Implements several interfaces, but some of
> them are used by helper objects and I don't want these methods
> to appear in the standard class interface. How do I implements
> these Interfaces but only have there methods appear when the
> interface is in use.
Declare them private
Armin