File: CardinalityConstraint.pm

package info (click to toggle)
libowl-directsemantics-perl 0.001-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 664 kB
  • sloc: perl: 5,519; makefile: 7; sh: 1
file content (19 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package OWL::DirectSemantics::TraitFor::Element::CardinalityConstraint;

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

use 5.008;





use Moose::Role;

has 'property' => (is => 'rw', isa => 'RDF::Trine::Node', required=>1);
has 'value'    => (is => 'rw', isa => 'RDF::Trine::Node', required=>1);

1;