class MediaArtsDb::Comic::ComicWork

NOTE: すべてのコンポーネントをComponentクラスだけで表現することも可能であるが、 コンポーネントを区別する手段として一番わかり易いのがクラスを分けることだと思うので、 冗長ではあるがコンポーネントの種類ごとにクラスを作成する。

Public Class Methods

new(id, content = {}, retrieved = false) click to toggle source
Calls superclass method MediaArtsDb::Comic::Component::new
# File lib/media_arts_db/comic/component.rb, line 53
def initialize(id, content = {}, retrieved = false)
  super(id, content, retrieved)
  @retriever = FindComicWork.new(@id)
end