Class: ObjCType
- Inherits:
-
Object
show all
- Defined in:
- lib/ObjCGenerator/types.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
#initialize(name) ⇒ ObjCType
Returns a new instance of ObjCType.
3
4
5
|
# File 'lib/ObjCGenerator/types.rb', line 3
def initialize( name )
@varname = name
end
|
Instance Attribute Details
#varname ⇒ Object
Returns the value of attribute varname.
2
3
4
|
# File 'lib/ObjCGenerator/types.rb', line 2
def varname
@varname
end
|
Instance Method Details
#conversion_value(origin) ⇒ Object
12
13
14
|
# File 'lib/ObjCGenerator/types.rb', line 12
def conversion_value origin
"-subcalss-"
end
|
#copyrow(newVarName) ⇒ Object
24
25
26
|
# File 'lib/ObjCGenerator/types.rb', line 24
def copyrow newVarName
"-subcalss-"
end
|
#default_value ⇒ Object
9
10
11
|
# File 'lib/ObjCGenerator/types.rb', line 9
def default_value
"-subcalss-"
end
|
#description_row ⇒ Object
21
22
23
|
# File 'lib/ObjCGenerator/types.rb', line 21
def description_row
"-subcalss-"
end
|
#hash_row ⇒ Object
27
28
29
|
# File 'lib/ObjCGenerator/types.rb', line 27
def hash_row
"-subcalss-"
end
|
#inEquality_test(other) ⇒ Object
18
19
20
|
# File 'lib/ObjCGenerator/types.rb', line 18
def inEquality_test other
"-subcalss-"
end
|
#property_definition ⇒ Object
6
7
8
|
# File 'lib/ObjCGenerator/types.rb', line 6
def property_definition
"-subcalss-"
end
|
#to_dictionary_item ⇒ Object
15
16
17
|
# File 'lib/ObjCGenerator/types.rb', line 15
def to_dictionary_item
"-subcalss-"
end
|