Class: Origen::Chips::RSS_Note

Inherits:
Object
  • Object
show all
Defined in:
lib/origen/chips/note.rb

Overview

This class is used to store spec note information used to document IP

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#featureObject

Returns the value of attribute feature.



5
6
7
# File 'lib/origen/chips/note.rb', line 5

def feature
  @feature
end

#idObject

Returns the value of attribute id.



5
6
7
# File 'lib/origen/chips/note.rb', line 5

def id
  @id
end

#typeObject

Returns the value of attribute type.



5
6
7
# File 'lib/origen/chips/note.rb', line 5

def type
  @type
end