import at.bestsolution.efxclipse.tooling.rrobot.model.bundle.Element;
import at.bestsolution.efxclipse.tooling.rrobot.model.bundle.Extension;
public class ExtensionFactory {
public static void createAttribute(Element el, String name, String value) {
Attribute att = BundleFactory.eINSTANCE.createAttribute();
att.setName(name);
att.setValue(value);
el.getAttributes().add(att);
}