NAME
OWL::Data::Def::OWLClass - definition of an owl class
SYNOPSIS
use OWL::Data::Def::OWLClass;
# create a new data type
my $class = new OWL::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 OWL::Base. Here just a list of them:
- name
-
A name of this owl class
- parent
-
A parent for this owl class ... defaults to OWL::Data::OWL::Class
- type
-
The type of this owl class