-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
353 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.8 | ||
3.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
jnigen/test_data/sources/full/kapt-output/SomeEnum_class.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#ifndef HEADER_SOMEENUM_CLASS_H_INCLUDED | ||
#define HEADER_SOMEENUM_CLASS_H_INCLUDED | ||
|
||
|
||
//THIS FILE IS AUTO-GENERATED. DO NOT EDIT | ||
|
||
#include "type_mapping.h" | ||
|
||
class SomeEnum_class : public smjni::java_runtime::simple_java_class<jSomeEnum> | ||
{ | ||
public: | ||
SomeEnum_class(JNIEnv * env); | ||
|
||
smjni::local_java_ref<jSomeEnum> get_NORTH(JNIEnv * env) const | ||
{ return m_NORTH.get(env, *this); } | ||
smjni::local_java_ref<jSomeEnum> get_SOUTH(JNIEnv * env) const | ||
{ return m_SOUTH.get(env, *this); } | ||
smjni::local_java_ref<jSomeEnum> get_WEST(JNIEnv * env) const | ||
{ return m_WEST.get(env, *this); } | ||
smjni::local_java_ref<jSomeEnum> get_EAST(JNIEnv * env) const | ||
{ return m_EAST.get(env, *this); } | ||
private: | ||
const smjni::java_static_field<jSomeEnum, jSomeEnum> m_NORTH; | ||
const smjni::java_static_field<jSomeEnum, jSomeEnum> m_SOUTH; | ||
const smjni::java_static_field<jSomeEnum, jSomeEnum> m_WEST; | ||
const smjni::java_static_field<jSomeEnum, jSomeEnum> m_EAST; | ||
|
||
}; | ||
|
||
|
||
inline SomeEnum_class::SomeEnum_class(JNIEnv * env): | ||
simple_java_class(env), | ||
m_NORTH(env, *this, "NORTH"), | ||
m_SOUTH(env, *this, "SOUTH"), | ||
m_WEST(env, *this, "WEST"), | ||
m_EAST(env, *this, "EAST") | ||
{} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.