Package at.bestsolution.efxclipse.tooling.rrobot.model.bundle

Examples of at.bestsolution.efxclipse.tooling.rrobot.model.bundle.Attribute


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);
  }
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.rrobot.model.bundle.Attribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.