Class: Origen::Chips::RSS_Note
Overview
This class is used to store spec note information used to document IP
Instance Attribute Summary collapse
-
#feature ⇒ Object
Returns the value of attribute feature.
-
#id ⇒ Object
Returns the value of attribute id.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(id, type, feature) ⇒ RSS_Note
constructor
A new instance of RSS_Note.
Constructor Details
#initialize(id, type, feature) ⇒ RSS_Note
Returns a new instance of RSS_Note.
7 8 9 10 11 |
# File 'lib/origen/chips/note.rb', line 7 def initialize(id, type, feature) @id = id @type = type @feature = feature end |
Instance Attribute Details
#feature ⇒ Object
Returns the value of attribute feature.
5 6 7 |
# File 'lib/origen/chips/note.rb', line 5 def feature @feature end |
#id ⇒ Object
Returns the value of attribute id.
5 6 7 |
# File 'lib/origen/chips/note.rb', line 5 def id @id end |
#type ⇒ Object
Returns the value of attribute type.
5 6 7 |
# File 'lib/origen/chips/note.rb', line 5 def type @type end |