blob: 97d6189cca3c6e109d42737b96685177e2ae137a [file] [log] [blame]
/**
* Copyright (c) 2011, 2019 Mia-Software 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:
* Grégoire Dupé (Mia-Software) - Design
* Nicolas Guyomar (Mia-Software) - Implementation
* Grégoire Dupé (Mia-Software) - Bug 477657 - The catalog manager should be able to manage workspace model
*
*/
package org.eclipse.modisco.facet.util.emf.catalog;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Catalog</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A EMF Facet Catalog catalog is a way to references sets of EObject.
* It has to be subclassed for each user catalog, especially to create derived links to access elements with their right type.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.facet.util.emf.catalog.Catalog#getInstalledEntries <em>Installed Entries</em>}</li>
* <li>{@link org.eclipse.modisco.facet.util.emf.catalog.Catalog#getName <em>Name</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.facet.util.emf.catalog.CatalogPackage#getCatalog()
* @model interface="true" abstract="true"
* @generated
*/
@Deprecated
public interface Catalog extends EObject {
/**
* Returns the value of the '<em><b>Installed Entries</b></em>' reference list.
* The list contents are of type {@link org.eclipse.emf.ecore.EObject}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* "installedEntries" represents all the EObject initially registered through the registration extension point.
* <!-- end-model-doc -->
* @return the value of the '<em>Installed Entries</em>' reference list.
* @see org.eclipse.modisco.facet.util.emf.catalog.CatalogPackage#getCatalog_InstalledEntries()
* @model
* @generated
*/
EList<EObject> getInstalledEntries();
/**
* 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 -->
* <!-- begin-model-doc -->
* The name of the Catalog.
* <!-- end-model-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.modisco.facet.util.emf.catalog.CatalogPackage#getCatalog_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.modisco.facet.util.emf.catalog.Catalog#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);
} // Catalog