The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package OWL::DirectSemantics::Element::InverseObjectProperties;

BEGIN {
	$OWL::DirectSemantics::Element::InverseObjectProperties::AUTHORITY = 'cpan:TOBYINK';
	$OWL::DirectSemantics::Element::InverseObjectProperties::VERSION   = '0.001';
};

use 5.008;





use Moose;

extends 'OWL::DirectSemantics::Element';
with 'OWL::DirectSemantics::Writer::Dump';
with 'OWL::DirectSemantics::Writer::FunctionalSyntax';

has 'props' => (is => 'rw', isa => 'ArrayRef[RDF::Trine::Node]', required=>1);

sub fs_arguments { return @{$_[0]->props}; }

1;

__END__

=head1 NAME

OWL::DirectSemantics::Element::InverseObjectProperties - represents an OWL InverseObjectProperties

=head1 DESCRIPTION

This class represents the InverseObjectProperties 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<< props >>

The properties.
The value is a ArrayRef[RDF::Trine::Node].
This is a required attribute.



=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.