blob: ff7ebd62b128d30067e8931914ea9c0d59166263 [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST
*
* 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/
*
* SPDX-License-Identifier: EPL-2.0
*
*/
package org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_constraints;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Norm With Max Value</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_constraints.NormWithMaxValue#getMax_value <em>Max value</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_constraints.Layer_weight_constraintsPackage#getNormWithMaxValue()
* @model abstract="true"
* @generated
*/
public interface NormWithMaxValue extends norm {
/**
* Returns the value of the '<em><b>Max value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Max value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Max value</em>' attribute.
* @see #setMax_value(double)
* @see org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_constraints.Layer_weight_constraintsPackage#getNormWithMaxValue_Max_value()
* @model dataType="org.eclipse.uml2.types.Real" required="true" ordered="false"
* @generated
*/
double getMax_value();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Layer_weight_constraints.NormWithMaxValue#getMax_value <em>Max value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max value</em>' attribute.
* @see #getMax_value()
* @generated
*/
void setMax_value(double value);
} // NormWithMaxValue