Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8b45882b7a55ac8fc7a9e2edf2f27b70782929e6 (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
/*****************************************************************************
 * Copyright (c) 2017 CEA LIST.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * Benoit Maggi (CEA LIST) benoit.maggi@cea.fr - Initial API and implementation
 * 
 *****************************************************************************/
package aspects.impl.actions

import com.google.inject.Singleton

@Singleton class LoadResourceAction extends impl.actions.LoadResourceAction{

	override def extendsList(org.eclipse.papyrus.gmf.codegen.gmfgen.LoadResourceAction it) //
	''' extends org.eclipse.papyrus.infra.gmfdiag.tooling.runtime.actions.DefaultLoadResourceAction'''

}

Back to the top