Skip to content

Package: ECPRepository

ECPRepository

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2013 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Eike Stepper - initial API and implementation
13: *
14: *******************************************************************************/
15:
16: package org.eclipse.emf.ecp.core;
17:
18: import org.eclipse.emf.ecp.core.util.ECPContainer;
19:
20: /**
21: * This class describes a repository.
22: *
23: * @author Eike Stepper
24: * @noimplement This interface is not intended to be implemented by clients.
25: * @noextend This interface is not intended to be extended by clients.
26: */
27: public interface ECPRepository extends ECPContainer {
28:         /**
29:          * The type of this ECPElement.
30:          */
31:         String TYPE = "Repository"; //$NON-NLS-1$
32:
33:         /**
34:          * Returns the label for the {@link ECPRepository}.
35:          *
36:          * @return the label for this repository
37:          */
38:         String getLabel();
39:
40:         /**
41:          * Returns the description for this {@link ECPRepository}.
42:          *
43:          * @return the description for this repository
44:          */
45:         String getDescription();
46:
47: }