org.opentcs.data.model.visualization.ShapeLayoutElement 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.data.model.visualization;
import java.io.Serializable;
import org.opentcs.util.annotations.ScheduledApiChange;
/**
* A layout element describing a geometrical shape to be displayed.
*
* This class is simply a marker class for identifying shape elements. The
* actual description of the geometrical shape is contained in the element's
* properties.
*
*
* @author Stefan Walter (Fraunhofer IML)
* @deprecated Will be removed.
*/
@Deprecated
@ScheduledApiChange(details = "Will be removed.", when = "6.0")
public class ShapeLayoutElement
extends LayoutElement
implements Serializable {
/**
* Creates a new ShapeLayoutElement.
*/
public ShapeLayoutElement() {
// Do nada.
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy