├── .classpath ├── .gitattributes ├── .gitignore ├── .project ├── COPYING.txt ├── HunSpellTest.launch ├── HunspellMainDE.launch ├── HunspellMainDK.launch ├── README.md ├── TestDictionary.launch ├── java-test └── dk │ └── dren │ └── hunspell │ ├── TestDictionary.java │ └── TestHunSpell.java ├── lib └── jna.jar ├── native-build.pl ├── native-lib ├── hunspell-darwin-ppc-32.jnilib ├── hunspell-win-x86-32.dll ├── hunspell-win-x86-64.dll ├── libhunspell-darwin-x86-32.dylib ├── libhunspell-darwin-x86-64.dylib ├── libhunspell-linux-x86-32.so └── libhunspell-linux-x86-64.so ├── native-src └── hunspell-1.6.2.tar.gz ├── pom.xml ├── readme-darwin-64bit.txt ├── src └── dk │ └── dren │ └── hunspell │ ├── Hunspell.java │ ├── HunspellLibrary.java │ └── HunspellMain.java └── testkeystore /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/.classpath -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | /bin 3 | native-src/hunspell-1.3.2 4 | .settings 5 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/.project -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/COPYING.txt -------------------------------------------------------------------------------- /HunSpellTest.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/HunSpellTest.launch -------------------------------------------------------------------------------- /HunspellMainDE.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/HunspellMainDE.launch -------------------------------------------------------------------------------- /HunspellMainDK.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/HunspellMainDK.launch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/README.md -------------------------------------------------------------------------------- /TestDictionary.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/TestDictionary.launch -------------------------------------------------------------------------------- /java-test/dk/dren/hunspell/TestDictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/java-test/dk/dren/hunspell/TestDictionary.java -------------------------------------------------------------------------------- /java-test/dk/dren/hunspell/TestHunSpell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/java-test/dk/dren/hunspell/TestHunSpell.java -------------------------------------------------------------------------------- /lib/jna.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/lib/jna.jar -------------------------------------------------------------------------------- /native-build.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-build.pl -------------------------------------------------------------------------------- /native-lib/hunspell-darwin-ppc-32.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-lib/hunspell-darwin-ppc-32.jnilib -------------------------------------------------------------------------------- /native-lib/hunspell-win-x86-32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-lib/hunspell-win-x86-32.dll -------------------------------------------------------------------------------- /native-lib/hunspell-win-x86-64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-lib/hunspell-win-x86-64.dll -------------------------------------------------------------------------------- /native-lib/libhunspell-darwin-x86-32.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-lib/libhunspell-darwin-x86-32.dylib -------------------------------------------------------------------------------- /native-lib/libhunspell-darwin-x86-64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-lib/libhunspell-darwin-x86-64.dylib -------------------------------------------------------------------------------- /native-lib/libhunspell-linux-x86-32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-lib/libhunspell-linux-x86-32.so -------------------------------------------------------------------------------- /native-lib/libhunspell-linux-x86-64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-lib/libhunspell-linux-x86-64.so -------------------------------------------------------------------------------- /native-src/hunspell-1.6.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/native-src/hunspell-1.6.2.tar.gz -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/pom.xml -------------------------------------------------------------------------------- /readme-darwin-64bit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/readme-darwin-64bit.txt -------------------------------------------------------------------------------- /src/dk/dren/hunspell/Hunspell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/src/dk/dren/hunspell/Hunspell.java -------------------------------------------------------------------------------- /src/dk/dren/hunspell/HunspellLibrary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/src/dk/dren/hunspell/HunspellLibrary.java -------------------------------------------------------------------------------- /src/dk/dren/hunspell/HunspellMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/src/dk/dren/hunspell/HunspellMain.java -------------------------------------------------------------------------------- /testkeystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dren-dk/HunspellJNA/HEAD/testkeystore --------------------------------------------------------------------------------