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

org.opentcs.kernel.extensions.controlcenter.vehicles.NullVehicleCommAdapterDescription Maven / Gradle / Ivy

/**
 * 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.kernel.extensions.controlcenter.vehicles;

import org.opentcs.drivers.vehicle.VehicleCommAdapterDescription;

/**
 * A {@link VehicleCommAdapterDescription} for no comm adapter.
 */
public class NullVehicleCommAdapterDescription
    extends
      VehicleCommAdapterDescription {

  /**
   * Creates a new instance.
   */
  public NullVehicleCommAdapterDescription() {
  }

  @Override
  public String getDescription() {
    return "-";
  }

  @Override
  public boolean isSimVehicleCommAdapter() {
    return false;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy