public interface Class1Remote
extends com.mathworks.toolbox.javabuilder.pooling.Poolable
Class1Remote class provides a Java RMI-compliant interface to the
M-functions from the files:
C:\\Users\\Ina\\Desktop\\Jan\\Test_MATLAB_JAR\\GUI_Test\\GUI_Test.m C:\\Users\\Ina\\Desktop\\Jan\\Test_MATLAB_JAR\\GUI_Test\\GUI_Test_export.mThe
dispose() method must be called on a Class1Remote
instance when it is no longer needed to ensure that native resources allocated by this
class are properly freed, and the server-side proxy is unexported. (Failure to call
dispose may result in server-side threads not being properly shut down, which often
appears as a hang.)
This interface is designed to be used together with
com.mathworks.toolbox.javabuilder.remoting.RemoteProxy to automatically
generate RMI server proxy objects for instances of GUI_Test.Class1.| Modifier and Type | Method and Description |
|---|---|
void |
dispose()
Frees native resources associated with the remote server object
|
java.lang.Object[] |
GUI_Test_export(int nargout,
java.lang.Object... rhs)
Provides the standard interface for calling the
GUI_Test_export
M-function with 1 input argument. |
java.lang.Object[] |
GUI_Test(int nargout,
java.lang.Object... rhs)
Provides the standard interface for calling the
GUI_Test M-function
with 1 input argument. |
java.lang.Object[] GUI_Test(int nargout,
java.lang.Object... rhs)
throws java.rmi.RemoteException
GUI_Test M-function
with 1 input argument.
Input arguments to standard interface methods may be passed as sub-classes of
com.mathworks.toolbox.javabuilder.MWArray, or as arrays of any
supported Java type (i.e. scalars and multidimensional arrays of any numeric,
boolean, or character type, or String). Arguments passed as Java types are
converted to MATLAB arrays according to default conversion rules.
All inputs to this method must implement either Serializable (pass-by-value) or
Remote (pass-by-reference) as per the RMI specification.
M-documentation as provided by the author of the M function:
% GUI_TEST MATLAB code for GUI_Test.fig
% GUI_TEST, by itself, creates a new GUI_TEST or raises the existing
% singleton*.
%
% H = GUI_TEST returns the handle to a new GUI_TEST or the handle to
% the existing singleton*.
%
% GUI_TEST('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUI_TEST.M with the given input arguments.
%
% GUI_TEST('Property','Value',...) creates a new GUI_TEST or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GUI_Test_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUI_Test_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
nargout - Number of outputs to return.rhs - The inputs to the M function.com.mathworks.toolbox.javabuilder.MWArray.
Each output array should be freed by calling its dispose() method.java.jmi.RemoteException - An error has occurred during the function call or
in communication with the server.java.rmi.RemoteExceptionjava.lang.Object[] GUI_Test_export(int nargout,
java.lang.Object... rhs)
throws java.rmi.RemoteException
GUI_Test_export
M-function with 1 input argument.
Input arguments to standard interface methods may be passed as sub-classes of
com.mathworks.toolbox.javabuilder.MWArray, or as arrays of any
supported Java type (i.e. scalars and multidimensional arrays of any numeric,
boolean, or character type, or String). Arguments passed as Java types are
converted to MATLAB arrays according to default conversion rules.
All inputs to this method must implement either Serializable (pass-by-value) or
Remote (pass-by-reference) as per the RMI specification.
M-documentation as provided by the author of the M function:
% GUI_TEST_EXPORT MATLAB code for GUI_Test_export.fig
% GUI_TEST_EXPORT, by itself, creates a new GUI_TEST_EXPORT or raises the
existing
% singleton*.
%
% H = GUI_TEST_EXPORT returns the handle to a new GUI_TEST_EXPORT or the
handle to
% the existing singleton*.
%
% GUI_TEST_EXPORT('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUI_TEST_EXPORT.M with the given input arguments.
%
% GUI_TEST_EXPORT('Property','Value',...) creates a new GUI_TEST_EXPORT or
raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GUI_Test_export_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUI_Test_export_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
nargout - Number of outputs to return.rhs - The inputs to the M function.com.mathworks.toolbox.javabuilder.MWArray.
Each output array should be freed by calling its dispose() method.java.jmi.RemoteException - An error has occurred during the function call or
in communication with the server.java.rmi.RemoteExceptionvoid dispose()
throws java.rmi.RemoteException
java.rmi.RemoteException