blob: e558cda64b9f2e410c7fb6cc89a492957793496b [file] [log] [blame]
/*******************************************************************************
* CHESS core plugin
*
* Copyright (C) 2011-2015
* Mälardalen University, Sweden
*
*
* 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-v20.html
*******************************************************************************/
/**
*/
package org.polarsys.chess.fla.flaxml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Simple Component</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.polarsys.chess.fla.flaxml.SimpleComponent#getRules <em>Rules</em>}</li>
* </ul>
* </p>
*
* @see org.polarsys.chess.fla.flaxml.FlaxmlPackage#getSimpleComponent()
* @model extendedMetaData="name='simpleComponent' kind='elementOnly'"
* @generated
*/
public interface SimpleComponent extends Component {
/**
* Returns the value of the '<em><b>Rules</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rules</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Rules</em>' containment reference.
* @see #setRules(FptcRules)
* @see org.polarsys.chess.fla.flaxml.FlaxmlPackage#getSimpleComponent_Rules()
* @model containment="true" required="true"
* extendedMetaData="kind='element' name='rules' namespace='##targetNamespace'"
* @generated
*/
FptcRules getRules();
/**
* Sets the value of the '{@link org.polarsys.chess.fla.flaxml.SimpleComponent#getRules <em>Rules</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Rules</em>' containment reference.
* @see #getRules()
* @generated
*/
void setRules(FptcRules value);
} // SimpleComponent