Esempio n. 1
0
	def list_properties(self , type=''):
		if type == '':
			print wm_utils.format_tuple_array(self.property_map, "------[Properties]-----")
		else:
			self.list_properties_by_types([type])
Esempio n. 2
0
	def list_properties_by_types(self , types):	
		for type in types:
			ret = self.get_properties_map(type)
			print wm_utils.format_tuple_array(ret, "--------[" + type + "]-------")
Esempio n. 3
0
	def list_env_properties(self , type=''):
		print wm_utils.format_tuple_array(self.env_props_map, "------[Env Properties]-----")