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

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;

A container representing an OWL class definition

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

Details are in SADI::Base. Here just a list of them:
A name of this owl class
A parent for this owl class ... defaults to SADI::Data::OWL::Class
The type of this owl class
