Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 422c51892ccf4a77b5d3ae2f92b3bf431eb317e9 (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
/**
 * 
 */
package org.eclipse.papyrus.infra.ui.lifecycleevents;

import org.eclipse.papyrus.infra.ui.lifecycleevents.DoSaveEvent;

/**
 * @author dumoulin
 *
 */
public class FakeSaveEvent extends DoSaveEvent {

	/**
	 * Constructor.
	 *
	 * @param serviceRegistry
	 * @param multiDiagramEditor
	 */
	public FakeSaveEvent() {
		super(null, null);
		
	}

}

Back to the top