NAME
Net::Delicious::Tag - OOP for del.icio.us tag thingies
SYNOPSIS
use Net::Delicious;
my $del = Net::Delicious->new({...});
foreach my $tag ($del->tags()) {
# $tag is a Net::Delicious::Tag
# object.
print "$tag\n";
}
DESCRIPTION
OOP for del.icio.us tag thingies.
NOTES
This package overrides the perl builtin stringify operator and returns the value of the object's tag method.
It isn't really expected that you will instantiate these objects outside of Net::Delicious itself.
PACKAGE METHODS
__PACKAGE__->new(\%args)
Returns a Net::Delicious::Tag object. Woot!
OBJECT METHODS
$obj->count()
Returns an int.
$obj->tag()
Returns an string.
$obj->as_hashref()
Return the object as a hash ref safe for serializing and re-blessing.
VERSION
0.96
DATE
$Date: 2006/01/13 17:09:11 $
AUTHOR
Aaron Straup Cope <ascope@cpan.org>
SEE ALSO
LICENSE
Copyright (c) 2004-2006 Aaron Straup Cope. All rights reserved.
This is free software, you may use it and distribute it under the same terms as Perl itself.