| XML-Atom-Ext-Media documentation | Contained in the XML-Atom-Ext-Media distribution. |
XML::Atom::Ext::Media::Thumbnail - Represents <media:thumbnail> elements
version 0.092840
Returns our XML::Atom::Namespace object, akin to element_ns in XML::Atom::Ext::Media
Implemented in the subclasses.
Returns the name of the namespaced element we represent, like group for <media:group>
Andreas Marienborg <andremar@cpan.org>
This software is copyright (c) 2009 by Andreas Marienborg.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| XML-Atom-Ext-Media documentation | Contained in the XML-Atom-Ext-Media distribution. |
package XML::Atom::Ext::Media::Thumbnail; our $VERSION = '0.092840'; #ABSTRACT: Represents <media:thumbnail> elements use strict; use warnings; use base qw( XML::Atom::Base ); __PACKAGE__->mk_attr_accessors(qw/url height width time/); sub element_ns { return XML::Atom::Ext::Media->element_ns; } sub element_name { return 'thumbnail'; } 1;
__END__