001package org.nasdanika.html.ecore; 002 003import org.eclipse.emf.ecore.EAttribute; 004import org.eclipse.emf.ecore.EPackage; 005import org.nasdanika.common.Context; 006 007public class EAttributeActionSupplier extends EStructuralFeatureActionSupplier<EAttribute> { 008 009 public EAttributeActionSupplier(EAttribute value, Context context, java.util.function.Function<EPackage,String> ePackagePathComputer) { 010 super(value, context, ePackagePathComputer); 011 } 012 013}