Package org.dmd.dms.util

Examples of org.dmd.dms.util.DynamicCompactSchema


     
      parsedRules.put(rn, uco);
    }
       
    public DynamicCompactSchema getCompactSchema(){
      DynamicCompactSchema rc = new DynamicCompactSchema(getName().getNameString());
     
      if (getAttributeDefListSize() > 0){
        for(AttributeDefinition def : getAttributeDefList()){
          rc.addAttrInfo(def.getAttributeInfo());
        }
      }
     
      if (getClassDefListSize() > 0){
        for(ClassDefinition cd: getClassDefList()){
          rc.addClassInfo(cd.getDynamicClassInfo());
        }
      }
     
      return(rc);
    }
View Full Code Here

TOP

Related Classes of org.dmd.dms.util.DynamicCompactSchema

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.