blob: 94d5a8590ff10ac10141731e691276c50911b024 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* 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:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.dt.epackageregistryexplorer;
import org.eclipse.emf.ecore.EStructuralFeature;
public class DecoratorHookDescriptor {
protected EStructuralFeature sf;
public DecoratorHookDescriptor(EStructuralFeature sf) {
this.sf = sf;
}
public EStructuralFeature getEStructuralFeature() {
return sf;
}
}