Example #1
0
	def _Bool(self, oNode, DATA):
		"""
		DATA is an xml node containing a string that represents a Boolean
		"""
		if DATA.text == None:
			return None
		else:
			return  NativeToNative_Convertor._Bool(self, oNode, DATA.text)