class SelfCallMixin:
	def CallMethod(self, methodname, args=None):
		"""
		Call a method with the name methodname on self.
		"""
		if hasattr(self, methodname):
			if args != None:
				getattr(self, methodname)(args)
			else:
				getattr(self, methodname)()


