Class | RSS::ImageItemModel::Item |
In: |
rss/image.rb
|
Parent: | Element |
image_width= | -> | _image_width= |
image_height= | -> | _image_height= |
image_width | -> | width |
image_height | -> | height |
# File rss/image.rb, line 60 def initialize(about=nil, resource=nil) super() @about = about @resource = resource end
# File rss/image.rb, line 90 def image_height=(new_value) if @do_validate self._image_height = Integer(new_value) else self._image_height = new_value.to_i end end
# File rss/image.rb, line 81 def image_width=(new_value) if @do_validate self._image_width = Integer(new_value) else self._image_width = new_value.to_i end end