Subversion Repositories bacoAlunos

Rev

Rev 1791 | Rev 1816 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1791 Rev 1814
Line 8... Line 8...
8
<%@ page import="jomm.dao.impl.AbstractDao" %>
8
<%@ page import="jomm.dao.impl.AbstractDao" %>
9
<%@ page import="pt.estgp.estgweb.domain.*" %>
9
<%@ page import="pt.estgp.estgweb.domain.*" %>
10
<%@ page import="pt.estgp.estgweb.domain.bpmn.*" %>
10
<%@ page import="pt.estgp.estgweb.domain.bpmn.*" %>
11
<%@ page import="pt.estgp.estgweb.domain.dao.DaoFactory" %>
11
<%@ page import="pt.estgp.estgweb.domain.dao.DaoFactory" %>
12
<%@ page import="pt.estgp.estgweb.web.filters.UserRoleProxy" %>
12
<%@ page import="pt.estgp.estgweb.web.filters.UserRoleProxy" %>
-
 
13
<%@ page import="pt.estgp.estgweb.domain.bpmn.utils.TaskConstantVariablesUtils" %>
-
 
14
<%@ page import="pt.estgp.estgweb.domain.bpmn.utils.VariableTypeUtils" %>
-
 
15
<%@ page import="pt.estgp.estgweb.domain.typesgen.Todos" %>
-
 
16
<%@ page import="pt.estgp.estgweb.domain.typesgen.Argument" %>
-
 
17
<%@ page import="pt.estgp.estgweb.domain.typesgen.ConnectorSoa" %>
-
 
18
<%@ page import="pt.estgp.estgweb.domain.typesgen.OperationMethodCall" %>
13
<%@ taglib tagdir="/WEB-INF/tags" prefix="bacoTags" %>
19
<%@ taglib tagdir="/WEB-INF/tags" prefix="bacoTags" %>
14
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
20
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
15
<%
21
<%
16
 
22
 
17
    Long processId = Long.parseLong(request.getParameter("id"));
23
    Long processId = Long.parseLong(request.getParameter("id"));
Line 27... Line 33...
27
        border: 3px dashed orangered !important;
33
        border: 3px dashed orangered !important;
28
    }
34
    }
29
</style>
35
</style>
30
 
36
 
31
 
37
 
32
<link rel="stylesheet" href="<%=request.getContextPath()%>/user/pagecontent/jorgeaux/angulartree/bower_components/angular-ui-tree/dist/angular-ui-tree.min.css">
38
<link rel="stylesheet" href="<%=request.getContextPath()%>/js/angularjs/angular-ui-tree/angular-ui-tree.min.css">
33
<script type="text/javascript" src="<%=request.getContextPath()%>/user/pagecontent/jorgeaux/angulartree/bower_components/angular-ui-tree/dist/angular-ui-tree.js"></script>
39
<script type="text/javascript" src="<%=request.getContextPath()%>/js/angularjs/angular-ui-tree/angular-ui-tree.js"></script>
34
 
40
 
35
 
41
 
36
<div class="container-fluid"
42
<div class="container-fluid"
37
     id="processEditorModule"
43
     id="processEditorModule"
38
     ng-app="processEditorModule"
44
     ng-app="processEditorModule"
Line 118... Line 124...
118
 
124
 
119
    $scope.newMethodCall = {}; //Uma so classe escolhida em vez de um array como nos servicos
125
    $scope.newMethodCall = {}; //Uma so classe escolhida em vez de um array como nos servicos
120
    $scope.methodsClassSelected = []; //Os metodos sao apanhados em tempo real e tem de estar aqui
126
    $scope.methodsClassSelected = []; //Os metodos sao apanhados em tempo real e tem de estar aqui
121
 
127
 
122
    //TEM APENAS AS NORMAIS CONSTANTES
128
    //TEM APENAS AS NORMAIS CONSTANTES
123
    $scope.constantVariables = <%=TaskConstantVariables.obtainConstantBpmnVariablesRegularTask().toString()%>
129
    $scope.constantVariables = <%=TaskConstantVariablesUtils.obtainConstantBpmnVariablesRegularTask().toString()%>
124
    //TEM TODAS, AS NORMAIS E AS DE TAREFA ATOR
130
    //TEM TODAS, AS NORMAIS E AS DE TAREFA ATOR
125
    $scope.constantVariablesActorTask = <%=TaskConstantVariables.obtainConstantBpmnVariablesActorTask().toString()%>;
131
    $scope.constantVariablesActorTask = <%=TaskConstantVariablesUtils.obtainConstantBpmnVariablesActorTask().toString()%>;
126
 
132
 
127
 
133
 
128
    $scope.processVariableTypes = <%=VariableType.obtainProcessSerializableVariableTypes().toString()%>;
134
    $scope.processVariableTypes = <%=VariableTypeUtils.obtainProcessSerializableVariableTypes().toString()%>;
129
    $scope.localVariableTypes = <%=VariableType.obtainAllVariableTypes().toString()%>;
135
    $scope.localVariableTypes = <%=VariableTypeUtils.obtainAllVariableTypes().toString()%>;
130
 
136
 
131
 
137
 
132
    $scope.initBuilder = function()
138
    $scope.initBuilder = function()
133
    {
139
    {
134
        $scope.initServicesSoa();
140
        $scope.initServicesSoa();