Following the documentation I first tried:
MatlabProxyFactoryOptions options = new MatlabProxyFactoryOptions.Builder()
options.build();
options.setHidden(true);
The error is: type mismatch and if the type of options is changed to builder:
Builder options = new MatlabProxyFactoryOptions.Builder();
options.build();
options.setHidden(true);
There are no errors, however none of this options takes into effect.
Then I tried:
MatlabProxyFactoryOptions.Builder options = new
MatlabProxyFactoryOptions.Builder();
options.build();
options.setHidden(true);
no errors but matlab does not run hidden again
Original issue reported on code.google.com by konstant...@gmail.com on 17 Feb 2014 at 11:20
Original issue reported on code.google.com by
konstant...@gmail.com
on 17 Feb 2014 at 11:20