/******************************************************************************* * Copyright (c) 2018 IRT AESE (IRT Saint Exupéry). * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0 * * Contributors: * Arnaud Dieumegard (IRT Saint Exupéry) - initial API and implementation * Pierre Virelizier (IRT Saint Exupéry) * Julien Baclet (IRT Saint Exupéry) * Pierre Gaufillet (IRT Saint Exupéry) *******************************************************************************/ /** */ package com.irtsaintexupery.pseim.seim; /** * * A representation of the model object 'Boolean Property'. * * *

* The following features are supported: *

* * * @see com.irtsaintexupery.pseim.seim.SeimPackage#getBooleanProperty() * @model * @generated */ public interface BooleanProperty extends BasicProperty { /** * Returns the value of the 'Value' attribute. * The default value is "false". * *

* If the meaning of the 'Value' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Value' attribute. * @see #setValue(boolean) * @see com.irtsaintexupery.pseim.seim.SeimPackage#getBooleanProperty_Value() * @model default="false" required="true" * @generated */ boolean isValue(); /** * Sets the value of the '{@link com.irtsaintexupery.pseim.seim.BooleanProperty#isValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #isValue() * @generated */ void setValue(boolean value); } // BooleanProperty