Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{scrollbar}

Summary

Suppose my linkable component uses init arguments to load a general scripting engine (or formula processor or something like that) which in turn needs to be initialised with arguments (e.g. to load a script from a given file). The second set of (valid) initialisation arguments is only known after the first initialization is done. Also this might be further nested, requiring some kind of iterative initialisation, like:

Code Block
borderStylesolid
repeat
{
  args = linkableComponent.getInitArgs();
  ... fill in the args ...
} until (linkableComponent.init(args) == INIT_COMPLETE);

How to address in Version 1

...

How to address in Version 2

...