var TestInterface = function(){	
	//variable to hold interface reference.
	var inspector = null;
	
	//REQUIRED! Interface method which will receive the interface enclosure.
	this.setUpInterface = function(enclosedInspector){inspector=enclosedInspector;}
	
	//REQUIRED! Interface method which will return the interface name!
	this.getInterfaceName = function(){return 'TestInterface';}
	
	//List of specified members required for this interface to be implemented.
	this.testMethod1 = function(x,y,z){
		return inspector('testMethod1')(x,y,z);
	};
	
	this.testMethod2 = function(q,r,s){
		return inspector('testMethod2')(q,r,s);
	}
}