# File lib/tapkit/access/join.rb, line 11
                def ==( other )
                        if Join === other then
                                if (@source == other.source) and (@destination == other.destination) then
                                        true
                                else
                                        false
                                end
                        else
                                false
                        end
                end