# File lib/tapkit/access/entity.rb, line 60
                def add_attribute( attribute )
                        if class_property? attribute.name then
                                @class_properties << attribute
                        end

                        if primary_key_attribute? attribute.name then
                                @primary_key_attributes << attribute
                        end

                        @attributes << attribute
                end