SADI::Data::Def::DatatypeProperty - definition of an owl datatype property


SADI documentation  | view source Contained in the SADI distribution.

Index


NAME

Top

SADI::Data::Def::DatatypeProperty - definition of an owl datatype property

SYNOPSIS

Top

 use SADI::Data::Def::DatatypeProperty;

 # create a new data type
 my $datatype = new SADI::Data::Def::DatatypeProperty
    ( name        => 'MySequenceProperty',
      domain      => 'http://some.domain.com/MySequenceDomain',
      uri         => 'http://some.domain.com/MySequenceProperty',
      range       => 'http://some.domain.com/MySequence',
      parent      => 'http://some.domain.com/MySequencePropertyParent',
    );

 # get the name of this datatype property
 print $datatype->name;




DESCRIPTION

Top

A container representing an OWL datatype property 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 datatype property

parent

A parent for this datatype property ... defaults to SADI::Data::OWL::DatatypeProperty

domain

The domain of this datatype property

range

The range of this datatype property

uri

The uri of this datatype property

SUBROUTINES

Top


SADI documentation  | view source Contained in the SADI distribution.