/** * Copyright (c) 2012-2016 Marsha Chechik, Alessio Di Sandro, Michalis Famelis, * Rick Salay. * 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: * Alessio Di Sandro - Implementation. */ package edu.toronto.cs.se.modelepedia.tutorial.state; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>City</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link edu.toronto.cs.se.modelepedia.tutorial.state.City#getPopulation <em>Population</em>}</li> * </ul> * </p> * * @see edu.toronto.cs.se.modelepedia.tutorial.state.StatePackage#getCity() * @model annotation="gmf.node label='name'" * @generated */ public interface City extends NamedElement { /** * Returns the value of the '<em><b>Population</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Population</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Population</em>' attribute. * @see #setPopulation(int) * @see edu.toronto.cs.se.modelepedia.tutorial.state.StatePackage#getCity_Population() * @model required="true" * @generated */ int getPopulation(); /** * Sets the value of the '{@link edu.toronto.cs.se.modelepedia.tutorial.state.City#getPopulation <em>Population</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Population</em>' attribute. * @see #getPopulation() * @generated */ void setPopulation(int value); } // City