Skip to content

Package: ECPPropertiesAware

ECPPropertiesAware

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: * Eugen Neufeld - JavaDoc
14: *
15: *******************************************************************************/
16: package org.eclipse.emf.ecp.core.util;
17:
18: /**
19: * Interface used on classes which have properties attached.
20: *
21: * @author Eike Stepper
22: * @author Eugen Neufeld
23: * @noextend This interface is not intended to be extended by clients.
24: * @noimplement This interface is not intended to be implemented by clients.
25: */
26: public interface ECPPropertiesAware {
27:         /**
28:          * This returns the {@link ECPProperties} attached to this object.
29:          *
30:          * @return the {@link ECPProperties} this object knows of
31:          */
32:         ECPProperties getProperties();
33: }