Package it.eng.qbe.model.structure

Examples of it.eng.qbe.model.structure.FilteredModelStructure


   * @param nodes the nodes
   * @param datamartName the datamart name
   */
  public void addEntityNodes(JSONArray nodes, String datamartName) {
    int nodeCounter = 0;
    FilteredModelStructure filteredModelStructure = new FilteredModelStructure(dataSource.getModelStructure(), getDataSource(), getQbeTreeFilter());
    List entities = filteredModelStructure.getRootEntities(datamartName);
   
    Iterator it = entities.iterator();
    while(it.hasNext()) {
      IModelEntity entity = (IModelEntity)it.next();     
      addEntityNode(nodes, entity, 1);
View Full Code Here

TOP

Related Classes of it.eng.qbe.model.structure.FilteredModelStructure

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.