Package org.objectweb.jorm.metainfo.api

Examples of org.objectweb.jorm.metainfo.api.Manager


      filter = '(' + filter + ')';
        // create representations of the parameters list and the variable
        // list
        toHashtableParams(qd.parameters, ";,");
        toHashtableVars(qd.variables, ";,");
        Manager miManager = mapper.getMetaInfoManager();
        if (miManager == null)
            throw new SpeedoException(
                    "A non null Meta information manager is needed");
        try {
          jf.getPClassMapping(
View Full Code Here


            GenClassRef gcr,
            SpeedoField sf,
            MIBuilderHelper mibh,
            boolean isGCId) throws SpeedoException, PException {
        String prefix = mibh.getNameDefFieldPrefix(gcr, isGCId, isGCId, sf);
        Manager manager = mibh.getManager(gcr);
    SpeedoClass clazzWithIdField = sf.moClass.getAncestor();
    if (clazzWithIdField == null) {
        clazzWithIdField = sf.moClass;
    }
        CompositeName cn = manager.getCompositeName(clazzWithIdField.identity.objectidClass);
        NameRef nr = nd.createNameRef(cn);
        List idFields = clazzWithIdField.getPKFields();
        for (int i = 0; i < idFields.size(); i++) {
            SpeedoField pkField = (SpeedoField) idFields.get(i);
      // create a hidden field in the class corresponding to this
View Full Code Here

TOP

Related Classes of org.objectweb.jorm.metainfo.api.Manager

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.