File: Category.pm

package info (click to toggle)
libxml-atom-perl 0.41-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 512 kB
  • ctags: 302
  • sloc: perl: 2,790; xml: 673; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# $Id$

package XML::Atom::Category;
use strict;
use base qw( XML::Atom::Base );

use XML::Atom;

__PACKAGE__->mk_attr_accessors(qw( term scheme label ));

sub element_name { 'category' }

## Maintain backwards compatibility with the old Link->set method.
sub set { shift->set_attr(@_) }

1;