Interface ModelWrapper.ModelModifier

Enclosing class:
ModelWrapper

public static interface ModelWrapper.ModelModifier
An interface that covers methods trying to access the Model. Read modifyModel(Model) for more information
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    The function responsible for changes to the Model
  • Method Details

    • modifyModel

      void modifyModel(Model model) throws Exception
      The function responsible for changes to the Model
      Parameters:
      model - a reference to the Model object. In order to grant safe access to the model, the reference ceases to hold meaning once this function terminates
      Throws:
      Exception - the modelModifier can optionally throw Exceptions, which will be escalated to the caller.