Skip to content
Snippets Groups Projects
Commit d23c4f82 authored by apvrille's avatar apvrille
Browse files

Adding operation Type. BEWARE: Cannot compile, will be solved in a few minutes

parent d5aaba98
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
...@@ -61,7 +61,7 @@ public class TMLTask extends TMLElement { ...@@ -61,7 +61,7 @@ public class TMLTask extends TMLElement {
private Set<TMLChannel> readTMLChannelsList; private Set<TMLChannel> readTMLChannelsList;
private Set<TMLChannel> writeTMLChannelsList; private Set<TMLChannel> writeTMLChannelsList;
private Set<TMLEvent> eventsList; private Set<TMLEvent> eventsList;
private int operationType; private String operationType;
private boolean isAttacker; private boolean isAttacker;
public TMLTask(String name, Object referenceToClass, Object referenceToActivityDiagram) { public TMLTask(String name, Object referenceToClass, Object referenceToActivityDiagram) {
...@@ -374,11 +374,11 @@ public class TMLTask extends TMLElement { ...@@ -374,11 +374,11 @@ public class TMLTask extends TMLElement {
return new ArrayList<TMLEvent>(eventsList); return new ArrayList<TMLEvent>(eventsList);
} }
public void addOperationType(int _operationType) { public void addOperationType(String _operationType) {
operationType = _operationType; operationType = _operationType;
} }
public int getOperationType() { public String getOperationType() {
return operationType; return operationType;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment