blob: 4e5348837e87253c76ce3809d23bab113b9a4ee9 [file] [log] [blame]
/*
* Copyright (c) 2005, 2018 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 v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - initial API and implementation
* Kenn Hussey (CEA) - 351774, 418466
* Christian W. Damus (CEA) - 251963
* Kenn Hussey - 535301
*
*/
package org.eclipse.uml2.uml;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Packageable Element</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A PackageableElement is a NamedElement that may be owned directly by a Package. A PackageableElement is also able to serve as the parameteredElement of a TemplateParameter.
* <p>From package UML::CommonStructure.</p>
* <!-- end-model-doc -->
*
*
* @see org.eclipse.uml2.uml.UMLPackage#getPackageableElement()
* @model abstract="true"
* @generated
*/
public interface PackageableElement
extends NamedElement, ParameterableElement {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A PackageableElement owned by a Namespace must have a visibility.
* visibility = null implies namespace = null
* @param diagnostics The chain of diagnostics to which problems are to be appended.
* @param context The cache of context-specific information.
* <!-- end-model-doc -->
* @model
* @generated
*/
boolean validateNamespaceNeedsVisibility(DiagnosticChain diagnostics,
Map<Object, Object> context);
// no methods
} // PackageableElement