org.eclipse.uml2.uml.ConnectableElement Maven / Gradle / Ivy
/*
* Copyright (c) 2005, 2011 IBM Corporation, CEA, 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 - initial API and implementation
* Kenn Hussey (CEA) - 327039
*
* $Id: ConnectableElement.java,v 1.7 2007/06/12 12:53:17 khussey Exp $
*/
package org.eclipse.uml2.uml;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object 'Connectable Element'.
*
*
*
* ConnectableElement is an abstract metaclass representing a set of instances that play roles of a classifier. Connectable elements may be joined by attached connectors and specify configurations of linked instances to be created within an instance of the containing classifier.
* A connectable element may be exposed as a connectable element template parameter.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.uml2.uml.ConnectableElement#getEnds End}
*
*
*
* @see org.eclipse.uml2.uml.UMLPackage#getConnectableElement()
* @model abstract="true"
* @generated
*/
public interface ConnectableElement
extends TypedElement, ParameterableElement {
/**
* Returns the value of the 'End' reference list.
* The list contents are of type {@link org.eclipse.uml2.uml.ConnectorEnd}.
*
*
*
* Denotes a set of connector ends that attaches to this connectable element.
*
* @return the value of the 'End' reference list.
* @see org.eclipse.uml2.uml.UMLPackage#getConnectableElement_End()
* @model transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
EList getEnds();
} // ConnectableElement