Skip to content

Package: EMFFormsMappingProviderManager

EMFFormsMappingProviderManager

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2015 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: * Eugen Neufeld - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emfforms.spi.core.services.mappingprovider;
15:
16: import java.util.Set;
17:
18: import org.eclipse.emf.ecore.EObject;
19: import org.eclipse.emf.ecp.common.spi.UniqueSetting;
20: import org.eclipse.emf.ecp.view.spi.model.VDomainModelReference;
21:
22: /**
23: * A Manager for the {@link EMFFormsMappingProvider}.
24: *
25: * @author Eugen Neufeld
26: * @since 1.8
27: *
28: */
29: public interface EMFFormsMappingProviderManager {
30:
31:         /**
32:          * Retrieve all settings for a given domainModelReference and domain object.
33:          *
34:          * @param domainModelReference The {@link VDomainModelReference} to retrieve the settings for
35:          * @param domainObject The {@link EObject} to use for resolvement
36:          * @return the set of {@link UniqueSetting} of this control
37:          */
38:         Set<UniqueSetting> getAllSettingsFor(VDomainModelReference domainModelReference, EObject domainObject);
39: }