public class MATLABStackFrame extends Object implements Serializable
MATLABException.
A MATLABStackFrame contains name of the MATLAB file, name of the function in the file and the
line number in the file.
NOTE: Users don't need to create an instance of this class from scratch.
It will be available if a MATLAB error on server causes MATLABException to be thrown on the
client side.
| Constructor and Description |
|---|
MATLABStackFrame(String file,
String name,
int line)
Construct
MATLABStackFrame using file name, function name and line number |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj)
Returns true if 2
MATLABStackFrame instances have the same file name, function name and line number |
String |
getFile()
Get the complete path to MATLAB file including the extension.
|
int |
getLine()
Get the line number in MATLAB file
|
String |
getName()
Get the name of MATLAB function in MATLAB file.
|
int |
hashCode()
Return hash value for an instance of
MATLABStackFrame instance |
String |
toString()
Return string representation of an instance of
MATLABStackFrame |
public String getFile()
public String getName()
public int getLine()
public String toString()
MATLABStackFramepublic boolean equals(Object obj)
MATLABStackFrame instances have the same file name, function name and line numberCopyright © 2015–2021. All rights reserved.