blob: a888a57147deddd594deb3bd2011946bc102a6e6 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 IBM 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:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.uma;
import java.util.List;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Diagram Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.uma.DiagramElement#getIsVisible <em>Is Visible</em>}</li>
* <li>{@link org.eclipse.epf.uma.DiagramElement#getContainer_ <em>Container</em>}</li>
* <li>{@link org.eclipse.epf.uma.DiagramElement#getReference <em>Reference</em>}</li>
* <li>{@link org.eclipse.epf.uma.DiagramElement#getProperty <em>Property</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.uma.UmaPackage#getDiagramElement()
* @model abstract="true"
* @generated
*/
public interface DiagramElement extends MethodElement {
/**
* Returns the value of the '<em><b>Is Visible</b></em>' attribute.
* The default value is <code>"true"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Visible</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Visible</em>' attribute.
* @see #setIsVisible(Boolean)
* @see org.eclipse.epf.uma.UmaPackage#getDiagramElement_IsVisible()
* @model default="true"
* @generated
*/
Boolean getIsVisible();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.DiagramElement#getIsVisible <em>Is Visible</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Visible</em>' attribute.
* @see #getIsVisible()
* @generated
*/
void setIsVisible(Boolean value);
/**
* Returns the value of the '<em><b>Container</b></em>' container reference.
* It is bidirectional and its opposite is '{@link org.eclipse.epf.uma.GraphElement#getContained <em>Contained</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Container</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>Container</em>' container reference.
* @see #setContainer(GraphElement)
* @see org.eclipse.epf.uma.UmaPackage#getDiagramElement_Container()
* @see org.eclipse.epf.uma.GraphElement#getContained
* @model opposite="contained"
* @generated
*/
GraphElement getContainer_();
/**
* Sets the value of the '{@link org.eclipse.epf.uma.DiagramElement#getContainer_ <em>Container</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Container</em>' container reference.
* @see #getContainer_()
* @generated
*/
void setContainer(GraphElement value);
/**
* Returns the value of the '<em><b>Reference</b></em>' reference list.
* The list contents are of type {@link org.eclipse.epf.uma.Reference}.
* It is bidirectional and its opposite is '{@link org.eclipse.epf.uma.Reference#getReferenced <em>Referenced</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Reference</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Reference</em>' reference list.
* @see org.eclipse.epf.uma.UmaPackage#getDiagramElement_Reference()
* @see org.eclipse.epf.uma.Reference#getReferenced
* @model type="org.eclipse.epf.uma.Reference" opposite="referenced" ordered="false"
* @generated
*/
List getReference();
/**
* Returns the value of the '<em><b>Property</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.epf.uma.Property}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Property</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Property</em>' containment reference list.
* @see org.eclipse.epf.uma.UmaPackage#getDiagramElement_Property()
* @model type="org.eclipse.epf.uma.Property" containment="true" resolveProxies="true" ordered="false"
* @generated
*/
List getProperty();
} // DiagramElement