Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

For SNAP 10 the toolboxes are thematically reorganised.

...

Code Block
languagejava
@HelpSetRegistration(helpSet = "help.hs", position = 4430)
package eu.esa.opt.fub.wew.docs;

import eu.esa.snap.netbeans.javahelp.api.HelpSetRegistration;

Invoke Help

How the help must be invoked has changed. Before the help could be invoked by instantiating a HelpCtx object and calling display() on it. Now HelpDisplayer.show(); must be invoked. Either with an instance of HelpCtx or the help ID as String.

If links to external pages are used and they shall be shown in system browser the html tag needs to be changed as follows:

...

In SNAP 10, the access to SNAP from Python is provided by an external plugin ‘esa_snappy'. This plugin basically contains the functionalities of the previous ‘snappy’ module in SNAP versions <= 9. The plugin works with the standard CPython, so that any native Python extension modules such as numpy and scipy can be used. The esa_snappy module depends on a bi-directional Java-Python bridge jpy that enables calls from Python into a Java virtual machine and, at the same time, the other way round. This bridge is implemented by the jpy Project and is independent from the esa_snappy module.

...