Examples of configureRefFields()


Examples of org.objectweb.speedo.mim.api.HomeItf.configureRefFields()

    );
    ((PClassMappingCtrl) pcm).setClassPNameCoder(classPnc);
    //Configure references (PNameCoder and GenClassMappping)
    RefConfig refConfig = new RefConfig(classProperties, classLoader);
    cn2pcm.put(className, pcm);//register the pcm in order to avoid double configuration
    pcm.configureRefFields(refConfig);
    cn2pcm.remove(className);
    if (debug) {
      logger.log(BasicLevel.DEBUG, "PClassMapping/PBinder/PNC created for the class " + className);
      logger.log(BasicLevel.DEBUG, "- pcm: " + pcm);
      logger.log(BasicLevel.DEBUG, "- binder: " + binder);
View Full Code Here

Examples of org.objectweb.speedo.mim.api.HomeItf.configureRefFields()

      logger.log(BasicLevel.DEBUG, "- binder: " + binder);
      logger.log(BasicLevel.DEBUG, "-pnc: " + classPnc);
    }
    // Maps the class
    mapper.map(null, pcm);
    pcm.configureRefFields(new GCMHomeConfig(pcm));   
        cpm.applyProperties(pcm);
    logger.log(BasicLevel.DEBUG, "Class " + className + " mapped");
    //Manage the cluster of classes
    PMapCluster cluster = mapper.getPMappingStructuresManager().getPMapCluster(className);
    if (cluster.isDefined()) { //cluster is full (all classes are mapped)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.