Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5b903b1d7924cdae07c743618b48b21540bb0d1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*****************************************************************************
 * 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * 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.gmf.codegen.gmfgen.LoadResourceAction it) //
	''' extends org.eclipse.papyrus.infra.gmfdiag.tooling.runtime.actions.DefaultLoadResourceAction'''

}

Back to the top