Package org.woped.editor.controller

Examples of org.woped.editor.controller.GroupLayoutGrid$subsetRelation


            }
         
            Iterator<?> it = lm.allCompoundGroups.iterator();
            while (it.hasNext()) {
              CompoundGroup currentCompoundGroup = (CompoundGroup) it.next();
              GroupLayoutGrid grid = new GroupLayoutGrid(currentCompoundGroup);
              grid.identifyTrueSubSets();
              grid.analyzeSubSets();
              if (grid.complexSubsets == false) {
                grid.removeTrueSubSets();
              }
              grid.identifyUsersWithSingleAncestor();
              grid.moveUsersWithSingleAncestors();
              grid.identifyUsersWithMultipleAncestors();
              grid.moveUsersWithMultipleAncestors();
              grid.adjustYAxis();
              Layout layout = grid.createLayout();
              layout.name = currentCompoundGroup.name;
              GroupLayoutSet.add(layout);
            }
          }
        }
View Full Code Here

TOP

Related Classes of org.woped.editor.controller.GroupLayoutGrid$subsetRelation

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.