1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
package OWL::DirectSemantics::Element::Ontology;
BEGIN {
$OWL::DirectSemantics::Element::Ontology::AUTHORITY = 'cpan:TOBYINK';
$OWL::DirectSemantics::Element::Ontology::VERSION = '0.001';
};
use 5.008;
use Moose;
extends 'OWL::DirectSemantics::Element';
with 'OWL::DirectSemantics::Writer::Dump';
with 'OWL::DirectSemantics::Writer::FunctionalSyntax';
has 'ontologyIRI' => (is => 'rw', isa => 'RDF::Trine::Node');
has 'versionIRI' => (is => 'rw', isa => 'RDF::Trine::Node');
has 'imports' => (
is => 'rw',
isa => 'ArrayRef',
auto_deref => 1,
default => sub{[]},
traits => ['Array'],
handles => { add_import => 'push' },
);
has 'annotations' => (
is => 'rw',
isa => 'ArrayRef',
auto_deref => 1,
default => sub{[]},
traits => ['Array'],
handles => { add_annotation => 'push' },
);
has 'axioms' => (
is => 'rw',
isa => 'ArrayRef',
auto_deref => 1,
default => sub{[]},
traits => ['Array'],
handles => { add_axiom => 'push' },
);
sub fs_arguments
{
my ($self) = @_;
my @imports = map { sprintf('Import(%s)', $_->as_ntriples) } @{$self->imports};
if (defined $self->versionIRI and defined $self->ontologyIRI)
{
return ($self->ontologyIRI, $self->versionIRI, @imports);
}
if (defined $self->ontologyIRI)
{
return ($self->ontologyIRI, @imports);
}
return @imports;
}
1;
__END__
=head1 NAME
OWL::DirectSemantics::Element::Ontology - represents an OWL Ontology
=head1 DESCRIPTION
This class represents the Ontology element in OWL Direct Semantics.
This class inherits from OWL::DirectSemantics::Element.
It does the OWL::DirectSemantics::Writer::FunctionalSyntax and
OWL::DirectSemantics::Writer::Dump roles.
=head2 Attributes
=over
=item C<< annotations >>
A list of annotations associated with this object.
The value is a ArrayRef.
=item C<< axioms >>
A list of axioms for the ontology.
The value is a ArrayRef.
=item C<< imports >>
A list of imported ontologies.
The value is a ArrayRef of RDF::Trine::Node objects.
=item C<< ontologyIRI >>
A URI identifying the ontology.
The value is a RDF::Trine::Node.
=item C<< versionIRI >>
A URI identifying the version of the ontology.
The value is a RDF::Trine::Node.
=back
=head1 SEE ALSO
L<OWL::DirectSemantics>,
L<OWL::DirectSemantics::Element>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT
Copyright 2011-2012 Toby Inkster
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|