OCRepresentation getRoomRepresentation(void) { m_roomRep.clearChildren(); m_roomRep.addChild(getLightRepresentation()); m_roomRep.addChild(getFanRepresentation()); return m_roomRep; }
/* * Class: org_iotivity_base_OcRepresentation * Method: clearChildren * Signature: ()V */ JNIEXPORT void JNICALL Java_org_iotivity_base_OcRepresentation_clearChildren (JNIEnv *env, jobject thiz) { LOGD("OcRepresentation_clearChildren"); OCRepresentation *rep = JniOcRepresentation::getOCRepresentationPtr(env, thiz); if (!rep) return; rep->clearChildren(); }