Class: Xcodeproj::ImportItem

Inherits:
Object
  • Object
show all
Defined in:
lib/core_blur/check/item.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeImportItem

Returns a new instance of ImportItem.



9
10
11
12
13
14
15
16
# File 'lib/core_blur/check/item.rb', line 9

def initialize
  @import_name = nil
  @module_name = nil
  @file_path = nil
  @import_file_name = nil
  @line_index = nil
  @belong_module = nil
end

Instance Attribute Details

#belong_moduleObject

Returns the value of attribute belong_module.



8
9
10
# File 'lib/core_blur/check/item.rb', line 8

def belong_module
  @belong_module
end

#file_pathObject

Returns the value of attribute file_path.



5
6
7
# File 'lib/core_blur/check/item.rb', line 5

def file_path
  @file_path
end

#import_file_nameObject

Returns the value of attribute import_file_name.



6
7
8
# File 'lib/core_blur/check/item.rb', line 6

def import_file_name
  @import_file_name
end

#import_nameObject

Returns the value of attribute import_name.



3
4
5
# File 'lib/core_blur/check/item.rb', line 3

def import_name
  @import_name
end

#line_indexObject

Returns the value of attribute line_index.



7
8
9
# File 'lib/core_blur/check/item.rb', line 7

def line_index
  @line_index
end

#module_nameObject

Returns the value of attribute module_name.



4
5
6
# File 'lib/core_blur/check/item.rb', line 4

def module_name
  @module_name
end