001/**
002 * Copyright (C) 2010, FuseSource Corp.  All rights reserved.
003 */
004package org.fusesource.hawtjni.runtime;
005
006/**
007 * <p>
008 *  This is a marker class. Methods that take this as an argument
009 *  will receive that actual native 'JNIEnv *' value.  Since this
010 *  class cannot be instantiated, Java callers must pass null
011 *  for the value.
012 * </p>
013 *
014 * @author <a href="http://hiramchirino.com">Hiram Chirino</a>
015 */
016public class JNIEnv {
017    private JNIEnv() {}
018}