com.mathworks.jmi.NativeMatlab Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matlab-control-jmistub Show documentation
Show all versions of matlab-control-jmistub Show documentation
MATLAB JMI Stubs as provided compile-time dependency
The newest version!
package com.mathworks.jmi;
/**
* A partial stubbed out implementation of the NativeMatlab class with the
* method's used by matlabcontrol. This stub exists so that matlabcontrol can
* compile against this library. At runtime this library is not referenced,
* instead the jmi.jar on MATLAB's classpath is used. The build script for
* matlabcontrol intentionally does not include this library in the distribution
* folder it generates.
*
* @author Joshua Kaplan
*/
public class NativeMatlab {
public static boolean nativeIsMatlabThread() {
throw new UnsupportedOperationException("stub");
}
}