Class: MasterView::Analyzer::ListEntry
- Inherits:
-
Object
- Object
- MasterView::Analyzer::ListEntry
- Defined in:
- lib/masterview/analyzer.rb
Instance Attribute Summary collapse
-
#hash_invalid ⇒ Object
writeonly
Sets the attribute hash_invalid.
-
#import ⇒ Object
Returns the value of attribute import.
-
#index ⇒ Object
Returns the value of attribute index.
-
#name ⇒ Object
Returns the value of attribute name.
-
#page_attributes ⇒ Object
Returns the value of attribute page_attributes.
Instance Method Summary collapse
- #hash_invalid? ⇒ Boolean
-
#initialize(name, index, import, page_attributes) ⇒ ListEntry
constructor
A new instance of ListEntry.
Constructor Details
#initialize(name, index, import, page_attributes) ⇒ ListEntry
Returns a new instance of ListEntry.
83 84 85 86 87 88 |
# File 'lib/masterview/analyzer.rb', line 83 def initialize(name, index, import, page_attributes) @name = name @index = index @import = import @page_attributes = page_attributes end |
Instance Attribute Details
#hash_invalid=(value) ⇒ Object (writeonly)
Sets the attribute hash_invalid
82 83 84 |
# File 'lib/masterview/analyzer.rb', line 82 def hash_invalid=(value) @hash_invalid = value end |
#import ⇒ Object
Returns the value of attribute import.
81 82 83 |
# File 'lib/masterview/analyzer.rb', line 81 def import @import end |
#index ⇒ Object
Returns the value of attribute index.
81 82 83 |
# File 'lib/masterview/analyzer.rb', line 81 def index @index end |
#name ⇒ Object
Returns the value of attribute name.
81 82 83 |
# File 'lib/masterview/analyzer.rb', line 81 def name @name end |
#page_attributes ⇒ Object
Returns the value of attribute page_attributes.
81 82 83 |
# File 'lib/masterview/analyzer.rb', line 81 def page_attributes @page_attributes end |
Instance Method Details
#hash_invalid? ⇒ Boolean
90 91 92 |
# File 'lib/masterview/analyzer.rb', line 90 def hash_invalid? @hash_invalid end |