All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentcs.guing.common.persistence.ModelManager Maven / Gradle / Ivy

There is a newer version: 6.2.0
Show newest version
/**
 * Copyright (c) The openTCS Authors.
 *
 * This program is free software and subject to the MIT license. (For details,
 * see the licensing information (LICENSE.txt) you should have received with
 * this copy of the software.)
 */
package org.opentcs.guing.common.persistence;

import org.opentcs.access.KernelServicePortal;
import org.opentcs.guing.common.model.SystemModel;

/**
 * Manages (loads, persists and keeps) the driving course model.
 */
public interface ModelManager {

  /**
   * Returns the current system model.
   *
   * @return The current system model.
   */
  SystemModel getModel();

  /**
   * Creates a new, empty system model.
   */
  void createEmptyModel();

  /**
   * Saves the given system model to a file.
   *
   * @param chooseName Whether a dialog to choose a file name shall be shown.
   * @return Whether the model was actually saved.
   */
  boolean saveModelToFile(boolean chooseName);

  /**
   * Creates figures and process adapters for all model components in the current system model.
   */
  void restoreModel();

  /**
   * Loads all model objects from the kernel and creates the corresponding
   * figures.
   *
   * @param portal The kernel client portal.
   */
  void restoreModel(KernelServicePortal portal);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy