Package org.openiaml.emf.properties.IEMFElementSelector

Examples of org.openiaml.emf.properties.IEMFElementSelector.DefaultElementSelector


   * @param root
   */
  public void load(ModeldocFactory factory, ModelDocumentation root) {
   
    // get all the metrics in the library
    for (IPropertyInvestigator m : AllMetamodelPropertiesLibrary.getAllMetamodelProperties(new DefaultElementSelector())) {
      Object result = m.evaluate(rootPackage);
     
      // insert a new metric
      Metric metric = factory.createMetric();
      metric.setName(prefix + m.getName());
View Full Code Here

TOP

Related Classes of org.openiaml.emf.properties.IEMFElementSelector.DefaultElementSelector

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.