class Origen::Chips::RSS_Note

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

Attributes

feature[RW]
id[RW]
type[RW]

Public Class Methods

new(id, type, feature) click to toggle source
# File lib/origen/chips/note.rb, line 7
def initialize(id, type, feature)
  @id = id
  @type = type
  @feature = feature
end