52North / matlab-control

Mavenized fork of http://code.google.com/p/matlabcontrol (also on Maven Central)
BSD 3-Clause "New" or "Revised" License
6 stars 5 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