﻿//-----------------------------------------------------------------------------
// RDF
//
// Copyright 2005-2010 - Xcential Group LLC.
//
//-----------------------------------------------------------------------------

//=============================================================================
// Constructor

function RDF()
{

   //--------------------------------------------------------------------------
   // Private Interface

   //--------------------------------------------------------------------------
   // Privileged Interface

   this.valueOf = function()
   {

      return "RDF";
   }

   //--------------------------------------------------------------------------
   // Initialization

}

RDF.ClassName = "RDF";

//=============================================================================
// Static Interface

RDF.NAMESPACE_URI = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
RDF.PREFERRED_PREFIX = "rdf";

RDF.MEDIA_TYPE = "application/rdf+xml";

//=============================================================================


