Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e56620c8fec45a6a37ba126dccda947605770f97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*****************************************************************************
 * Copyright (c) 2016 Christian W. Damus and others.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Christian W. Damus - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.infra.emf.readonly.spi;

import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.papyrus.infra.emf.readonly.ReadOnlyManager;

/**
 * <p>
 * An OSGi service interface for hooks to process the a new {@link ReadOnlyManager}
 * upon its creation. There is no special provision for notification of when the
 * manager is no longer being used.
 * </p>
 * <p>
 * Any number of of implementations of this service may be registered; all will be
 * invoked for each read-only manager.
 * </p>
 */
@FunctionalInterface
public interface IReadOnlyManagerProcessor {
	/**
	 * Process a newly instantiated read-only manager.
	 * 
	 * @param readOnlyManager
	 *            the new read-only manager
	 * @param editingDomain
	 *            the editing domain for which the manager provides read-only services
	 */
	void processReadOnlyManager(ReadOnlyManager readOnlyManager, EditingDomain editingDomain);
}

Back to the top