| XML-XBEL documentation | Contained in the XML-XBEL distribution. |
XML::XBEL::url - private methods for XBEL URLs.
None.
Private methods for XBEL URLs.
$Revision: 1.2 $
$Date: 2004/06/23 04:15:13 $
Aaron Straup Cope <ascope@cpan.org>
<XML::XBEL>
Copyright (c) 2004 Aaron Straup Cope. All Rights Reserved.
This is free software, you may use it and distribute it under the same terms as Perl itself.
| XML-XBEL documentation | Contained in the XML-XBEL distribution. |
use strict; package XML::XBEL::url; use base qw (XML::XBEL::base);
# $Id: url.pm,v 1.2 2004/06/23 04:15:13 asc Exp $ sub href { my $self = shift; return $self->_attribute("href",$_[0]); } sub visited { my $self = shift; return $self->_attribute("visited",@_); } sub modified { my $self = shift; return $self->_attribute("modified",@_); }
return 1;