|
Oak::Filer::Component - Filer to save/load data into/from Components |
Oak::Filer::Component - Filer to save/load data into/from Components
This module provides access for saving and reading data into a Component XML, to be used by components. Must pass XML FILENAME
Throws a Oak::Filer::Component::Error::ErrorReadingXML when there was something wrong when trying to read the XML file.
Throws a Oak::Filer::Component::Error::ErrorReadingXML when there was something wrong when trying to read the XML file.
The following exceptions are introduced by Oak::Filer::Component
require Oak::Filer::Component;
my $filer = new Oak::Filer::Component(
FILENAME => "tralala.xml"
)
my $hash = $filer->load();
$filer->store(
mine => $hash->{mine},
owned => $hash->{owned}
);
Copyright (c) 2001 Daniel Ruoso <daniel@ruoso.com> Marcelo de Paula Bezerra <mosca@oktiva.com.br> All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
Oak::Filer::Component - Filer to save/load data into/from Components |