Package org.uengine.processpublisher.graph

Examples of org.uengine.processpublisher.graph.SwimLanePoint


      int cols = 0;
     
      //���� X�� ������ ��Ƽ��Ƽ �˻�
      for(int j=0; j<graphList.size();j++){
       
        SwimLanePoint sp = ((GraphActivity)graphList.get(j)).getSLPoint();
        if(sp.pointX == i+1){
          graphXListTemp.add(graphList.get(j));
          if(cols < sp.pointIndexX)
            cols = sp.pointIndexX;
        }
      }
     
      int preY=0;
      //X,Y�� ���� ��Ƽ��Ƽ �˻�
      for(int j=0; j<graphXListTemp.size();j++){
        SwimLanePoint sp = ((GraphActivity)graphXListTemp.get(j)).getSLPoint();
        if(preY >= sp.pointYcontinue;
        Vector graphXYListTemp = new Vector();
       
        //lane�� �߰��� ��Ƽ��Ƽ �˻�
        for(int k=0; k < graphXListTemp.size(); k++){
          SwimLanePoint sp2 = ((GraphActivity)graphXListTemp.get(k)).getSLPoint();
          if(sp.pointY == sp2.pointY){
            graphXYListTemp.add(graphXListTemp.get(k));
          }
        }
       
View Full Code Here


          "<td style='border:1px solid #d0d0d0;' align='center' valign='top'>"
          + "<table border='0' height='100%' id='tableUserRole' cellpadding='10' cellspacing='10'>"
      );
     
      for (int j = 0; j < graphList.size(); j++) {
        SwimLanePoint sp = ((GraphActivity)graphList.get(j)).getSLPoint();
        if (sp.pointX == i + 1) {
          graphXListTemp.add(graphList.get(j));
        }
      }
     
      graphXListTemp = OrderByPointY(graphXListTemp);
      int preY=0;
     
      for (int j=0; j < graphXListTemp.size(); j++) {
        SwimLanePoint sp = ((GraphActivity) graphXListTemp.get(j)).getSLPoint();
       
        if(preY >= sp.pointYcontinue;
        Vector<GraphActivity> graphXYListTemp = new Vector<GraphActivity>();
       
        for (int k=0; k < graphXListTemp.size(); k++) {
          SwimLanePoint sp2 = ((GraphActivity)graphXListTemp.get(k)).getSLPoint();
          if (sp.pointY == sp2.pointY) {
            graphXYListTemp.add(graphXListTemp.get(k));
          }
        }
       
View Full Code Here

      Role role = (Role) roleList.get(new Integer(i+1));
      sb.append(getRoleInformationCell(role, instance));

      Vector<GraphActivity> graphXListTemp = new Vector<GraphActivity>();
      for (int j = 0; j < graphList.size(); j++) {
        SwimLanePoint sp = graphList.get(j).getSLPoint();
       
        if (sp.pointX == i + 1) {
          graphXListTemp.add(graphList.get(j));
        }
      }
     
      graphXListTemp = OrderByPointY(graphXListTemp);
      preY = 0;
      sb.append("<td valign='middle'>");
     
      for (int j=0; j < graphXListTemp.size(); j++) {
        SwimLanePoint sp = graphXListTemp.get(j).getSLPoint();
        if(preY >= sp.pointY) continue;
       
        Vector<GraphActivity> graphXYListTemp = new Vector<GraphActivity>();
       
        for (int k=0; k < graphXListTemp.size(); k++) {
          SwimLanePoint sp2 = ((GraphActivity) graphXListTemp.get(k)).getSLPoint();
         
          if (sp.pointY == sp2.pointY) {
            graphXYListTemp.add(graphXListTemp.get(k));
          }
        }
View Full Code Here

TOP

Related Classes of org.uengine.processpublisher.graph.SwimLanePoint

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.