Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f6b42e4f962fd4c649f99a18d151ac9b6e9f128b (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
/*****************************************************************************
 * Copyright (c) 2014 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:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.internal.treeproxy.impl;

import org.eclipse.core.runtime.IAdaptable;

/**
 * Base class for the TreeProxy metamodel
 *
 * Declares the IAdaptable interface
 *
 * @author Camille Letavernier
 *
 */
public abstract class AdaptableTreeElementImpl implements IAdaptable {
	//Nothing: used in the treeproxy genmodel to specify the IAdaptable interface
}

Back to the top