P
Phillip Taylor
I have an interface called Lockable and an interface called
TableObject. How do I make sure that any class which implements
Lockable also implements my other, TableObject interface?
Do I have to copy the definition of the TableObject interface into
Lockable? I'd rather not do that incase I need to downcast them to
simple TableObject's later.
TableObject. How do I make sure that any class which implements
Lockable also implements my other, TableObject interface?
Do I have to copy the definition of the TableObject interface into
Lockable? I'd rather not do that incase I need to downcast them to
simple TableObject's later.