Skip to content

Package: InternalRegistryElement

InternalRegistryElement

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2012 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: * Jonas Helming - JavaDoc
14: *******************************************************************************/
15: package org.eclipse.emf.ecp.spi.core.util;
16:
17: import org.eclipse.emf.ecp.core.util.ECPElement;
18:
19: /**
20: * @author Eike Stepper
21: * @since 1.1
22: */
23: public interface InternalRegistryElement extends ECPElement, ECPDisposable {
24:         /**
25:          * Returns the label.
26:          *
27:          * @return the label
28:          */
29:         String getLabel();
30:
31:         /**
32:          * Return the description.
33:          *
34:          * @return the description
35:          */
36:         String getDescription();
37:
38:         /**
39:          * Sets the label.
40:          *
41:          * @param label the Label to set
42:          */
43:         void setLabel(String label);
44:
45:         /**
46:          * Sets the description.
47:          *
48:          * @param description the Description to set
49:          */
50:         void setDescription(String description);
51: }