As far as I understand, the purpose of a Bridge pattern is, quoting from Wikipedia, "to decouple an abstraction from its implementation". Well isn't that exactly what an interface does. By deciding on an interface and forcing a class to use that interface, any other class can interact with this one without the need for any knowledge about the internal workings.
So is an interface equivalent to a Bridge?
Thanks,
PM