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


SADI documentation  | view source Contained in the SADI distribution.

Index


NAME

Top

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

SYNOPSIS

Top

 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

Top

A container representing an OWL class definition

AUTHORS

Top

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

ACCESSIBLE ATTRIBUTES

Top

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

Top


SADI documentation  | view source Contained in the SADI distribution.