/******************************************************************************* * Copyright (c) 2008 Olivier Moises * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Olivier Moises- initial API and implementation *******************************************************************************/ package org.eclipse.wazaabi.engine.edp.tests.model.company; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Test Class</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getStringAttribute1 <em>String Attribute1</em>}</li> * <li>{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getStringAttribute2 <em>String Attribute2</em>}</li> * <li>{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getIntAttribute1 <em>Int Attribute1</em>}</li> * <li>{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getIntAttribute2 <em>Int Attribute2</em>}</li> * </ul> * </p> * * @see org.eclipse.wazaabi.engine.edp.tests.model.company.CompanyPackage#getTestClass() * @model * @generated */ public interface TestClass extends EObject { /** * Returns the value of the '<em><b>String Attribute1</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>String Attribute1</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>String Attribute1</em>' attribute. * @see #setStringAttribute1(String) * @see org.eclipse.wazaabi.engine.edp.tests.model.company.CompanyPackage#getTestClass_StringAttribute1() * @model * @generated */ String getStringAttribute1(); /** * Sets the value of the '{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getStringAttribute1 <em>String Attribute1</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>String Attribute1</em>' attribute. * @see #getStringAttribute1() * @generated */ void setStringAttribute1(String value); /** * Returns the value of the '<em><b>String Attribute2</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>String Attribute2</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>String Attribute2</em>' attribute. * @see #setStringAttribute2(String) * @see org.eclipse.wazaabi.engine.edp.tests.model.company.CompanyPackage#getTestClass_StringAttribute2() * @model * @generated */ String getStringAttribute2(); /** * Sets the value of the '{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getStringAttribute2 <em>String Attribute2</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>String Attribute2</em>' attribute. * @see #getStringAttribute2() * @generated */ void setStringAttribute2(String value); /** * Returns the value of the '<em><b>Int Attribute1</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Int Attribute1</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Int Attribute1</em>' attribute. * @see #setIntAttribute1(int) * @see org.eclipse.wazaabi.engine.edp.tests.model.company.CompanyPackage#getTestClass_IntAttribute1() * @model * @generated */ int getIntAttribute1(); /** * Sets the value of the '{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getIntAttribute1 <em>Int Attribute1</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Int Attribute1</em>' attribute. * @see #getIntAttribute1() * @generated */ void setIntAttribute1(int value); /** * Returns the value of the '<em><b>Int Attribute2</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Int Attribute2</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Int Attribute2</em>' attribute. * @see #setIntAttribute2(int) * @see org.eclipse.wazaabi.engine.edp.tests.model.company.CompanyPackage#getTestClass_IntAttribute2() * @model * @generated */ int getIntAttribute2(); /** * Sets the value of the '{@link org.eclipse.wazaabi.engine.edp.tests.model.company.TestClass#getIntAttribute2 <em>Int Attribute2</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Int Attribute2</em>' attribute. * @see #getIntAttribute2() * @generated */ void setIntAttribute2(int value); } // TestClass