/******************************************************************************* * Copyright (c) 2007, 2009 Borland Software Corporation and others. * * 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: * Borland Software Corporation - initial API and implementation *******************************************************************************/ package simpleuml; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Property</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link simpleuml.Property#getType <em>Type</em>}</li> * <li>{@link simpleuml.Property#getOwner <em>Owner</em>}</li> * </ul> * </p> * * @see simpleuml.SimpleumlPackage#getProperty() * @model * @generated */ public interface Property extends ModelElement { /** * Returns the value of the '<em><b>Type</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' reference. * @see #setType(Type) * @see simpleuml.SimpleumlPackage#getProperty_Type() * @model required="true" * @generated */ Type getType(); /** * Sets the value of the '{@link simpleuml.Property#getType <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' reference. * @see #getType() * @generated */ void setType(Type value); /** * Returns the value of the '<em><b>Owner</b></em>' container reference. * It is bidirectional and its opposite is '{@link simpleuml.DataType#getAttributes <em>Attributes</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Owner</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Owner</em>' container reference. * @see #setOwner(DataType) * @see simpleuml.SimpleumlPackage#getProperty_Owner() * @see simpleuml.DataType#getAttributes * @model opposite="attributes" required="true" transient="false" * @generated */ DataType getOwner(); /** * Sets the value of the '{@link simpleuml.Property#getOwner <em>Owner</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Owner</em>' container reference. * @see #getOwner() * @generated */ void setOwner(DataType value); } // Property