blob: a70e3a960f2320a6bebecc6b200527527aefe049 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2007-2009 Metascape, LLC
* Copyright (c) 2006-2007 Argonne National Labs
* 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:
* Argonne National Laboratory - Initial development (pre-contribution)
* Metascape - Subsequent development and maintenance
*
* </copyright>
*/
package org.metaabm;
/**
* <!-- begin-user-doc --> A representation of the model object ' <em><b>SNetwork</b></em>'.
*
* @author Miles Parker <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.metaabm.SNetwork#isDirected <em>Directed</em>}</li>
* </ul>
* </p>
*
* @see org.metaabm.MetaABMPackage#getSNetwork()
* @model
* @generated
*/
public interface SNetwork extends SProjection {
/**
* Returns the value of the '<em><b>Directed</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Directed</em>' attribute isn't clear, there really should be more of a description
* here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Directed</em>' attribute.
* @see #setDirected(boolean)
* @see org.metaabm.MetaABMPackage#getSNetwork_Directed()
* @model
* @generated
*/
boolean isDirected();
/**
* Sets the value of the '{@link org.metaabm.SNetwork#isDirected <em>Directed</em>}' attribute.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @param value the new value of the '<em>Directed</em>' attribute.
* @see #isDirected()
* @generated
*/
void setDirected(boolean value);
} // SNetwork