/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.core.component.model.api; /** * Defines shapes of components. * * @author Doreen Seider */ public enum ComponentShape { /** Circle. */ CIRCLE, /** Square. */ SQUARE; }