/** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2007 Matthias Braeuer (braeuer.matthias@web.de). * * All rights reserved. * * * * This work was done as a project at the Chair for Software Technology, * * Dresden University Of Technology, Germany (http://st.inf.tu-dresden.de). * * It is understood that any modification not identified as such is not * * covered by the preceding statement. * * * * This work is free software; you can redistribute it and/or modify it * * under the terms of the GNU Library General Public License as published * * by the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This work is distributed in the hope that it will be useful, but WITHOUT * * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public * * License for more details. * * * * You should have received a copy of the GNU Library General Public License * * along with this library; if not, you can view it online at * * http://www.fsf.org/licensing/licenses/gpl.html. * * * * To submit a bug report, send a comment, or get the latest news on this * * project, please visit the website: http://dresden-ocl.sourceforge.net. * * For more information on OCL and related projects visit the OCL Portal: * * http://st.inf.tu-dresden.de/ocl * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * $Id$ */ package org.dresdenocl.pivotmodel; import java.util.Collection; import java.util.LinkedList; import java.util.List; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Namespace</b></em>'. <!-- end-user-doc --> * * <!-- begin-model-doc --> * <p> * A <code>Namespace</code> is a container for types and * other namespaces. * </p> * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.dresdenocl.pivotmodel.Namespace#getOwnedType <em>Owned Type</em>}</li> * <li>{@link org.dresdenocl.pivotmodel.Namespace#getOwnedRule <em>Owned Rule</em>}</li> * <li>{@link org.dresdenocl.pivotmodel.Namespace#getNestedNamespace <em>Nested Namespace</em>}</li> * <li>{@link org.dresdenocl.pivotmodel.Namespace#getNestingNamespace <em>Nesting Namespace</em>}</li> * </ul> * </p> * * @see org.dresdenocl.pivotmodel.PivotModelPackage#getNamespace() * @model * @generated */ public interface Namespace extends NamedElement, GenericElement { /** * Returns the value of the '<em><b>Owned Rule</b></em>' containment reference * list. The list contents are of type * {@link org.dresdenocl.pivotmodel.Constraint}. It is bidirectional * and its opposite is ' * {@link org.dresdenocl.pivotmodel.Constraint#getNamespace * <em>Namespace</em>}'. <!-- begin-user-doc --> <!-- end-user-doc --> <!-- * begin-model-doc --> * <p> * Specifies a set of {@link Constraint}s owned by this <code>Namespace</code> * . * </p> * <!-- end-model-doc --> * * @return the value of the '<em>Owned Rule</em>' containment reference list. * @see org.dresdenocl.pivotmodel.Constraint#getNamespace * @generated */ List<Constraint> getOwnedRule(); /** * Returns the value of the '<em><b>Owned Type</b></em>' containment reference * list. The list contents are of type * {@link org.dresdenocl.pivotmodel.Type}. It is bidirectional and its * opposite is '{@link org.dresdenocl.pivotmodel.Type#getNamespace * <em>Namespace</em>}'. <!-- begin-user-doc --> <!-- end-user-doc --> <!-- * begin-model-doc --> * <p> * This is the set of {@link Type types} that are contained in this namespace. * </p> * <!-- end-model-doc --> * * @return the value of the '<em>Owned Type</em>' containment reference list. * @see org.dresdenocl.pivotmodel.Type#getNamespace * @generated */ List<Type> getOwnedType(); /** * Returns the value of the '<em><b>Nested Namespace</b></em>' containment reference list. * The list contents are of type {@link org.dresdenocl.pivotmodel.Namespace}. * It is bidirectional and its opposite is '{@link org.dresdenocl.pivotmodel.Namespace#getNestingNamespace <em>Nesting Namespace</em>}'. * <!-- begin-user-doc --> <!-- end-user-doc --> * <!-- begin-model-doc --> * <p> * This is the set of namespaces contained in this namespace. * </p> * <!-- end-model-doc --> * @return the value of the '<em>Nested Namespace</em>' containment reference list. * @see org.dresdenocl.pivotmodel.PivotModelPackage#getNamespace_NestedNamespace() * @see org.dresdenocl.pivotmodel.Namespace#getNestingNamespace * @model opposite="nestingNamespace" containment="true" * @generated */ List<Namespace> getNestedNamespace(); /** * Returns the value of the '<em><b>Nesting Namespace</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.dresdenocl.pivotmodel.Namespace#getNestedNamespace <em>Nested Namespace</em>}'. * <!-- begin-user-doc --> <!-- end-user-doc --> * <!-- begin-model-doc --> * <p> * This specifies the <code>Namespace</code> that is the * owner of this namespace. * </p> * <!-- end-model-doc --> * @return the value of the '<em>Nesting Namespace</em>' container reference. * @see #setNestingNamespace(Namespace) * @see org.dresdenocl.pivotmodel.PivotModelPackage#getNamespace_NestingNamespace() * @see org.dresdenocl.pivotmodel.Namespace#getNestedNamespace * @model opposite="nestedNamespace" resolveProxies="false" transient="false" * @generated */ Namespace getNestingNamespace(); /** * Sets the value of the '{@link org.dresdenocl.pivotmodel.Namespace#getNestingNamespace <em>Nesting Namespace</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Nesting Namespace</em>' container reference. * @see #getNestingNamespace() * @generated */ void setNestingNamespace(Namespace value); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Adds a {@link Type} to this <code>Namespace</code>. This is an additional * operation in the Pivot Model to support cloning namespaces when type * parameters are bound. The operation returns a reference to this * <code>Namespace</code>. * </p> * <!-- end-model-doc --> * * @generated */ Namespace addType(Type type); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Adds a {@link Constraint} to this <code>Namespace</code>. This is an * additional operation in the Pivot Model to support parsers of constraint * languages with a textual syntax (e.g. OCL) that allow to specify the * context of a constraint without explicitly adding the * <code>Constraint</code> instance to the model. * </p> * <!-- end-model-doc --> * * @generated */ Namespace addRule(Constraint rule); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Adds a nested <code>Namespace</code> to this <code>Namespace</code>. This * is an additional operation in the Pivot Model to support cloning namespaces * when type parameters are bound. The operation returns a reference to this * <code>Namespace</code>. * </p> * <!-- end-model-doc --> * * @generated */ Namespace addNestedNamespace(Namespace namespace); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Returns all {@link Constraint}s that are owned by this or any nested * {@link Namespace}. * </p> * <!-- end-model-doc --> * * @generated */ List<Constraint> getOwnedAndNestedRules(); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Returns a {@link Type} in this <code>Namespace</code> with the given name. * * It is specified as follows: * * <pre> * context Namespace * def: lookupType(name : String) : Type = * self.ownedType->any(t | t.name = name) * </pre> * * </p> * <!-- end-model-doc --> * * @generated */ Type lookupType(String name); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Returns a {@link Namespace} in this <code>Namespace</code> with the given * name. * * It is specified as follows: * * <pre> * context Namespace * def: lookupNamespace(name : String) : Namespace = * self.nestedNamespace->any(ns | ns.name = name) * </pre> * * </p> * <!-- end-model-doc --> * * @generated */ Namespace lookupNamespace(String name); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Removes all {@link Constraint}s that are owned by this or any nested * {@link Namespace}. * </p> * * @return <code>true</code> if the {@link Constraint}s have been removed. * <!-- end-model-doc --> * @generated */ boolean removeOwnedAndNestedRules(); /** * <!-- begin-user-doc --> <!-- end-user-doc --> <!-- begin-model-doc --> * <p> * Removes all {@link Constraint}s that are owned by this or any nested * {@link Namespace} and contained in the given {@link Collection}. * </p> * * @param constraints * The {@link Constraint}s that shall be removed. * @return <code>true</code> if the {@link Constraint}s have been removed. * <!-- end-model-doc --> * @model dataType="org.dresdenocl.datatypes.Boolean" required="true" * constraintsMany="true" * @generated */ boolean removeOwnedAndNestedRules(List<Constraint> constraints); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model namesDataType="tudresden.ocl20.pivot.datatypes.String" namesMany="true" * @generated NOT */ LinkedList<NamedElement> lookupPathName(List<String> names); /** * Redefines {@link NamedElement#clone()} with a covariant return type. * * @see org.dresdenocl.pivotmodel.NamedElement#clone() */ @Override Namespace clone(); } // Namespace