com.mkdoc.schema
Interface SchemaClass

All Known Implementing Classes:
SchemaProperty

public interface SchemaClass

Loosely modelled on an RDF Schema class.

Version:
0.1 2005-06-15
Author:
Philip Shaw

Method Summary
 java.lang.String getLabel()
          Get the human-readable label for the class.
 java.lang.String getName()
          Get a unique "camel case" name for the class.
 java.lang.String getUri()
          Get the resource URI of the class.
 

Method Detail

getUri

public java.lang.String getUri()
Get the resource URI of the class.

Returns:
The URI of the class.
Since:
Version 0.1 2005-06-15

getLabel

public java.lang.String getLabel()
Get the human-readable label for the class.

Returns:
The human-readable label for the class.
Since:
Version 0.1 2005-06-15

getName

public java.lang.String getName()
Get a unique "camel case" name for the class.

This often, but not always, coincides with the URI suffix for the type.

Returns:
A name that is unique within a given schema.