/** * @copyright * ==================================================================== * Copyright (c) 2005 CollabNet. All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://subversion.tigris.org/license-1.html. * If newer versions of this license are posted there, you may use a * newer version instead, at your option. * * This software consists of voluntary contributions made by many * individuals. For exact contribution history, see the revision * history and logs, available at http://subversion.tigris.org/. * ==================================================================== * @endcopyright * * @file org_tigris_subversion_javahl_Version.cpp * @brief Implementation of the native methods in the Java class Version. */ #include "../include/org_tigris_subversion_javahl_Version.h" #include "JNIStackElement.h" #include "svn_version.h" JNIEXPORT jint JNICALL Java_org_tigris_subversion_javahl_Version_getMajor(JNIEnv *env, jobject jthis) { JNIEntry(Version, getMajor); return SVN_VER_MAJOR; } JNIEXPORT jint JNICALL Java_org_tigris_subversion_javahl_Version_getMinor(JNIEnv *env, jobject jthis) { JNIEntry(Version, getMinor); return SVN_VER_MINOR; } JNIEXPORT jint JNICALL Java_org_tigris_subversion_javahl_Version_getPatch(JNIEnv *env, jobject jthis) { JNIEntry(Version, getPatch); return SVN_VER_PATCH; } JNIEXPORT jstring JNICALL Java_org_tigris_subversion_javahl_Version_getTag(JNIEnv *env, jobject jthis) { JNIEntry(Version, getTag); jstring tag = JNIUtil::makeJString(SVN_VER_TAG); if (JNIUtil::isJavaExceptionThrown()) return NULL; return tag; } JNIEXPORT jstring JNICALL Java_org_tigris_subversion_javahl_Version_getNumberTag(JNIEnv *env, jobject jthis) { JNIEntry(Version, getNumberTag); jstring numtag = JNIUtil::makeJString(SVN_VER_NUMTAG); if (JNIUtil::isJavaExceptionThrown()) return NULL; return numtag; }