c7825206036933b17f5853108f74d920fe46884d
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / XML / Atom / Category.pm
1 # $Id$
2
3 package XML::Atom::Category;
4 use strict;
5 use base qw( XML::Atom::Base );
6
7 use XML::Atom;
8
9 __PACKAGE__->mk_attr_accessors(qw( term scheme label ));
10
11 sub element_name { 'category' }
12
13 ## Maintain backwards compatibility with the old Link->set method.
14 sub set { shift->set_attr(@_) }
15
16 1;