﻿// register the AjaxTutorial namespace
Type.registerNamespace("AjaxTutorial");
    
// define the ISelfDescribingObject interface 
AjaxTutorial.ISelfDescribingObject = function() { }  
    
AjaxTutorial.ISelfDescribingObject.prototype = {
  describeYourself : function() {}
}
    
// register the ISelfDescribingObject interface 
AjaxTutorial.ISelfDescribingObject.registerInterface(
  "AjaxTutorial.ISelfDescribingObject");
