static void viewer_manager_genlist_normal_callback(void* data, Evas_Object* obj, void* event_info)
{
	__COMMON_FUNC_ENTER__;
	assertm_if(NULL == manager_object, "manager_object is NULL!!");
	assertm_if(NULL == event_info, "event_info is NULL!!");
	assertm_if(NULL == data, "data is NULL!!");
	assertm_if(NULL == obj, "obj is NULL!!");

	wifi_device_info_t *device_info = (wifi_device_info_t *) data;

	DEBUG_LOG(UG_NAME_NORMAL, "event_info:[%s]", (char*) elm_object_style_get(obj));

	radio_button_cb(device_info, obj, event_info);
	elm_genlist_item_selected_set((Elm_Object_Item *)event_info, FALSE);

	__COMMON_FUNC_EXIT__;
	return;
}
const std::string Object::getStyle ()
{
  const char *tmp = elm_object_style_get (o);
  return tmp ? tmp : string ();
}