Package fr.imag.adele.apam.declarations.instrumentation

Examples of fr.imag.adele.apam.declarations.instrumentation.InjectedField


   
    for (RelationDeclaration relation : getComponent().getRelations()) {
      for (RequirerInstrumentation instrumentation : relation.getInstrumentations()) {
        if (instrumentation instanceof InjectedField) {
         
          InjectedField injectedField = (InjectedField) instrumentation;
          if (injectedFields.containsKey(injectedField)) {
            error("invalid relation injection " + relation.getIdentifier() + ", field "+quoted(injectedField.getName())+" is already injected in relation "+quoted(injectedFields.get(injectedField).getIdentifier()));
          }
         
          injectedFields.put(injectedField,relation);
         
        }
View Full Code Here

TOP

Related Classes of fr.imag.adele.apam.declarations.instrumentation.InjectedField

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.