Why not adopt me?
NAME
Netscape::Bookmarks::Separator - manipulate, or create Netscape Bookmarks files
SYNOPSIS
use Netscape::Bookmarks::Category;
use Netscape::Bookmarks::Separator;
#add a separator to a category listing
my $category = new Netscape::Bookmarks::Category { ... };
my $separator = new Netscape::Bookmarks::Separator;
my $category->add($separator);
#print the separator
#note that Netscape::Category::as_string does this for you
print $separator->as_string;
DESCRIPTION
THIS IS AN ABANDONED MODULE. THERE IS NO SUPPORT. YOU CAN ADOPT IT IF YOU LIKE: https://pause.perl.org/pause/query?ACTION=pause_04about#takeover
Store a Netscape bookmark separator object.
METHODS
- Netscape::Bookmarks::Separator->new
-
Creates a new Separator object. This method takes no arguments. This object represents a Singleton object. The module only makes on instance which everybody else shares.
- $obj->as_string
-
Prints the separator object in the Netscape bookmark format. One should not have to do this as Netscape::Bookmarks::Category will take care of it.
- $obj->title
-
Prints a string to represent a separator. This method exists to round out polymorphism among the Netscape::* classes. The string does not have a trailing newline.
- $obj->remove
-
Performs any clean up necessary to remove this object from the Bookmarks tree.
AUTHOR
brian d foy <bdfoy@cpan.org>
COPYRIGHT AND LICENSE
Copyright © 2002-2019, brian d foy <bdfoy@cpan.org>. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.