/******************************************************************************* * Copyright (c) 2011-2013 University of Mannheim: Chair for Software Engineering * 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: * Ralph Gerbig - initial API and implementation and initial documentation *******************************************************************************/ package de.uni_mannheim.informatik.swt.models.plm.PLM; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Domain</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * This is the root model element usually containing an Ontology. * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Domain#getName <em>Name</em>}</li> * <li>{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Domain#getOntologies <em>Ontologies</em>}</li> * <li>{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Domain#getDomains <em>Domains</em>}</li> * </ul> * </p> * * @see de.uni_mannheim.informatik.swt.models.plm.PLM.PLMPackage#getDomain() * @model * @generated */ public interface Domain extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see de.uni_mannheim.informatik.swt.models.plm.PLM.PLMPackage#getDomain_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Domain#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Ontologies</b></em>' containment reference list. * The list contents are of type {@link de.uni_mannheim.informatik.swt.models.plm.PLM.Element}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Ontologies</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>Ontologies</em>' containment reference list. * @see de.uni_mannheim.informatik.swt.models.plm.PLM.PLMPackage#getDomain_Ontologies() * @model containment="true" * @generated */ EList<Element> getOntologies(); /** * Returns the value of the '<em><b>Domains</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Domains</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Domains</em>' containment reference. * @see #setDomains(Domain) * @see de.uni_mannheim.informatik.swt.models.plm.PLM.PLMPackage#getDomain_Domains() * @model containment="true" * @generated */ Domain getDomains(); /** * Sets the value of the '{@link de.uni_mannheim.informatik.swt.models.plm.PLM.Domain#getDomains <em>Domains</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Domains</em>' containment reference. * @see #getDomains() * @generated */ void setDomains(Domain value); } // Domain