def initialize(fileName)
@author = nil
@cover = nil
+ @path = fileName
@series = nil
@title = nil
@volume = nil
def inspect
data = []
+ if nil != @author
+ data.push('author="' + @author + '"')
+ end
if nil != @series
data.push('series="' + @series + '"')
end
if nil != @title
data.push('title="' + @title + '"')
end
- if nil != @author
- data.push('author="' + @author + '"')
+ if nil != @path
+ data.push('path="' + @path + '"')
end
return '(Book:' + data.join(',') + ')'
end