Exemple #1
0
    @Override
    public void changedFileBase(final INaviModule module, final IAddress fileBase) {
      final Address newAddress = new Address(fileBase.toBigInteger());

      for (final IModuleListener listener : m_listeners) {
        try {
          listener.changedFilebase(Module.this, newAddress);
        } catch (final Exception exception) {
          CUtilityFunctions.logException(exception);
        }
      }
    }