blob: d37071cdd9cb82a6c6d45f14b6eab4ac703e0b3b [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.Vision_layers;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Upsample</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Vision_layers.Upsample#getMode <em>Mode</em>}</li>
* <li>{@link org.eclipse.papyrus.aiml.profile.AIML.Vision_layers.Upsample#isAlign_corners <em>Align corners</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.aiml.profile.AIML.Vision_layers.Vision_layersPackage#getUpsample()
* @model
* @generated
*/
public interface Upsample extends Vision_layers_1 {
/**
* Returns the value of the '<em><b>Mode</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Mode</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Mode</em>' attribute.
* @see #setMode(String)
* @see org.eclipse.papyrus.aiml.profile.AIML.Vision_layers.Vision_layersPackage#getUpsample_Mode()
* @model dataType="org.eclipse.uml2.types.String" ordered="false"
* @generated
*/
String getMode();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Vision_layers.Upsample#getMode <em>Mode</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mode</em>' attribute.
* @see #getMode()
* @generated
*/
void setMode(String value);
/**
* Returns the value of the '<em><b>Align corners</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Align corners</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Align corners</em>' attribute.
* @see #setAlign_corners(boolean)
* @see org.eclipse.papyrus.aiml.profile.AIML.Vision_layers.Vision_layersPackage#getUpsample_Align_corners()
* @model dataType="org.eclipse.uml2.types.Boolean" ordered="false"
* @generated
*/
boolean isAlign_corners();
/**
* Sets the value of the '{@link org.eclipse.papyrus.aiml.profile.AIML.Vision_layers.Upsample#isAlign_corners <em>Align corners</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Align corners</em>' attribute.
* @see #isAlign_corners()
* @generated
*/
void setAlign_corners(boolean value);
} // Upsample