class ModelMaker::SetProperty

Public Instance Methods

assignation_value() click to toggle source
# File src/lib/modelmaker.rb, line 226
def assignation_value
    "[[NSMutableSet alloc] initWithSet:#{exposed_name}]"
end
exposed_type() click to toggle source
# File src/lib/modelmaker.rb, line 214
def exposed_type
    'NSSet *'
end
init_line() click to toggle source
# File src/lib/modelmaker.rb, line 222
def init_line
    "#{internal_name} = [[NSMutableSet alloc] init]"
end
internal_type() click to toggle source
# File src/lib/modelmaker.rb, line 210
def internal_type
    'NSMutableSet *'
end
needs_init?() click to toggle source
# File src/lib/modelmaker.rb, line 218
def needs_init?
    true
end