~cpn-gui/tapaal/examVersion

« back to all changes in this revision

Viewing changes to src/dk/aau/cs/model/tapn/Colored/ColorType.java

  • Committer: Niels Christensen
  • Date: 2018-12-19 14:23:58 UTC
  • mfrom: (995.1.16 exportCPN)
  • Revision ID: nchri13@student.aau.dk-20181219142358-z9u4gtqvamla0vzw
Fixed merge errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        return colors.size();
29
29
    }
30
30
 
31
 
 
32
31
    public Iterator<Color> iterator() {
33
32
        return colors.iterator();
34
33
    }
35
34
 
 
35
 
36
36
    public String toString() {
37
37
        String temp = name + " is [";
38
38
        for (Color element : colors) {