MCPcopy Create free account
hub / github.com/SFML/SFML / findClass

Method findClass

src/SFML/Window/Android/JniHelper.cpp:44–51  ·  view source on GitHub ↗

///////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

42
43////////////////////////////////////////////////////////////
44std::optional<JniListClass> JniListClass::findClass(JNIEnv& env)
45{
46 jclass listClass = env.FindClass("java/util/List");
47 if (!listClass)
48 return std::nullopt;
49
50 return JniListClass(env, listClass);
51}
52
53
54////////////////////////////////////////////////////////////

Callers

nothing calls this directly

Calls 3

JniListClassClass · 0.85
JniMotionRangeClassClass · 0.85
JniInputDeviceClassClass · 0.85

Tested by

no test coverage detected