| 367 | } |
| 368 | |
| 369 | static jint SetChartGeomShape(JNIEnv *env, jclass clazz, jlong geom, jstring type, jstring shape) { |
| 370 | xg::geom::AbstractGeom *_geom = reinterpret_cast<xg::geom::AbstractGeom *>(geom); |
| 371 | std::string _shape = JavaStringToString(env, shape); |
| 372 | _geom->Shape(_shape); |
| 373 | return 0; |
| 374 | } |
| 375 | |
| 376 | static jint SetChartGeomAdjust(JNIEnv *env, jclass clazz, jlong geom, jstring type, jstring adjust) { |
| 377 | xg::geom::AbstractGeom *_geom = reinterpret_cast<xg::geom::AbstractGeom *>(geom); |
nothing calls this directly
no test coverage detected