|
|
@ -71,8 +71,10 @@ public class SimplePriorityQueue<T extends Ticket> implements IPriorityQueue<T> |
|
|
|
// enthalten ist
|
|
|
|
@Override |
|
|
|
public int getTotalPriority(T t) { |
|
|
|
// TODO Auto-generated method stub
|
|
|
|
return 0; |
|
|
|
if (!this.contains(t)) { |
|
|
|
return -1; |
|
|
|
} |
|
|
|
return prioDet.calculate(t); |
|
|
|
} |
|
|
|
|
|
|
|
// Setzt die Priorität von t auf newPriority. Rückgabe wie getPriority()
|
|
|
|