Class: Xcodeproj::ImportItem
- Inherits:
-
Object
- Object
- Xcodeproj::ImportItem
- Defined in:
- lib/core_blur/check/item.rb
Instance Attribute Summary collapse
-
#belong_module ⇒ Object
Returns the value of attribute belong_module.
-
#file_path ⇒ Object
Returns the value of attribute file_path.
-
#import_file_name ⇒ Object
Returns the value of attribute import_file_name.
-
#import_name ⇒ Object
Returns the value of attribute import_name.
-
#line_index ⇒ Object
Returns the value of attribute line_index.
-
#module_name ⇒ Object
Returns the value of attribute module_name.
Instance Method Summary collapse
-
#initialize ⇒ ImportItem
constructor
A new instance of ImportItem.
Constructor Details
#initialize ⇒ ImportItem
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_module ⇒ Object
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_path ⇒ Object
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_name ⇒ Object
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_name ⇒ Object
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_index ⇒ Object
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_name ⇒ Object
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 |