test ivar name list
This commit is contained in:
@ -48,6 +48,18 @@ module Parfait
|
||||
return @object_class
|
||||
end
|
||||
|
||||
def object_instance_names
|
||||
names = List.new
|
||||
index = 1
|
||||
while index <= self.get_length
|
||||
item = get(index)
|
||||
names.push item
|
||||
index = index + 1
|
||||
end
|
||||
self
|
||||
|
||||
names
|
||||
end
|
||||
def sof_reference_name
|
||||
"#{@object_class.name}_Layout"
|
||||
end
|
||||
|
@ -65,7 +65,7 @@ module Parfait
|
||||
end
|
||||
|
||||
def get_instance_variables
|
||||
get_layout().get_instance_variables
|
||||
get_layout().object_instance_names
|
||||
end
|
||||
|
||||
def get_instance_variable name
|
||||
|
Reference in New Issue
Block a user