From 1bf4f6d3cdcf1445c2a40959f286a73485eb31c8 Mon Sep 17 00:00:00 2001
From: undisclosed
Date: Mon, 09 Jan 2023 18:45:56 +0000
Subject: [PATCH] Drag and drop fuer Abspiellisten eingebaut

---
 src/de/uhilger/tango/entity/Abspielliste.java |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/de/uhilger/tango/entity/Abspielliste.java b/src/de/uhilger/tango/entity/Abspielliste.java
index e0ebbfe..8bf9aa3 100644
--- a/src/de/uhilger/tango/entity/Abspielliste.java
+++ b/src/de/uhilger/tango/entity/Abspielliste.java
@@ -40,6 +40,14 @@
   public List<Titel> getTitel() {
     return titel;
   }
+  
+  public void putTitel(Titel t, int anPos) {
+    this.titel.set(anPos, t);
+  }
+  
+  public int getIndex(Titel t) {
+    return this.titel.indexOf(t);
+  }
 
   public void setTitel(List titel) {
     this.titel = titel;

--
Gitblit v1.9.3