class Udgenerator::Type

Public Class Methods

new() click to toggle source
# File lib/udgenerator/type.rb, line 74
def initialize()
end

Public Instance Methods

==(type) click to toggle source
# File lib/udgenerator/type.rb, line 76
def == (type)
        true
end
defaultValue() click to toggle source
# File lib/udgenerator/type.rb, line 85
def defaultValue
        ""
end
imp_set_message() click to toggle source
# File lib/udgenerator/type.rb, line 91
def imp_set_message
        ""
end
objectExchange(obj) click to toggle source
# File lib/udgenerator/type.rb, line 97
def objectExchange(obj)
        obj
end
property() click to toggle source
# File lib/udgenerator/type.rb, line 100
def property
        "@property #{self.type_name} #{self.name};\n"
end
swift_default_value() click to toggle source
# File lib/udgenerator/type.rb, line 88
def swift_default_value
        ""
end
swift_type_name() click to toggle source
# File lib/udgenerator/type.rb, line 82
def swift_type_name
        "Type"
end
typeExchange(obj) click to toggle source
# File lib/udgenerator/type.rb, line 94
def typeExchange(obj)
        obj
end
type_name() click to toggle source
# File lib/udgenerator/type.rb, line 79
def type_name
        "Type"
end