Wilfredo12 / matlabcontrol

Automatically exported from code.google.com/p/matlabcontrol
0 stars 0 forks source link

Unable to create MatlabProxyFactoryOptions instance and set its parameters #16

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

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

GoogleCodeExporter commented 9 years ago
My mistake, it is working now.

Original comment by konstant...@gmail.com on 18 Feb 2014 at 10:25

GoogleCodeExporter commented 9 years ago

Original comment by nonot...@gmail.com on 25 Feb 2014 at 10:23