blob: ff8f81f4ab3e60e868e9ffd4ec61cbb27145a181 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008,2009 Communication & Systems.
*
* 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 Giuliani - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.atl.profiler.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Profiling Model</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.m2m.atl.profiler.model.ProfilingModel#getModelName <em>Model Name</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.m2m.atl.profiler.model.ModelPackage#getProfilingModel()
* @model
* @generated
*/
public interface ProfilingModel extends ProfilingOperation {
/**
* Returns the value of the '<em><b>Model Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Model Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Model Name</em>' attribute.
* @see #setModelName(String)
* @see org.eclipse.m2m.atl.profiler.model.ModelPackage#getProfilingModel_ModelName()
* @model required="true"
* @generated
*/
String getModelName();
/**
* Sets the value of the '{@link org.eclipse.m2m.atl.profiler.model.ProfilingModel#getModelName <em>Model Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Model Name</em>' attribute.
* @see #getModelName()
* @generated
*/
void setModelName(String value);
} // ProfilingModel