The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

SADI::Data::Def::OWLClass - definition of an owl class

SYNOPSIS

use SADI::Data::Def::OWLClass;

# create a new data type
my $class = new SADI::Data::Def::OWLClass
   ( name        => 'MySequenceClass',
     type        => 'http://some.domain.com/classes#MySequenceClass',
     parent      => 'http://some.domain.com/classes#MySequenceClassParent',
   );

# get the name of this owl class
print $class->name;

DESCRIPTION

A container representing an OWL class definition

AUTHORS

Edward Kawas (edward.kawas [at] gmail [dot] com)

ACCESSIBLE ATTRIBUTES

Details are in SADI::Base. Here just a list of them:

name

A name of this owl class

parent

A parent for this owl class ... defaults to SADI::Data::OWL::Class

type

The type of this owl class

SUBROUTINES