summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Wilson2014-09-04 10:38:38 +0200
committerMichael Wilson2014-09-04 10:38:38 +0200
commit23e7854792c9a1f0a404a0635fcde95c956ba5f3 (patch)
treed512a5b38d978c5523e80c3b034b9a7d562e7cb7
parent-Spalte "Veranstaltung" wurd bei allen Image-Suchen entfernt (diff)
downloadtutor-module-23e7854792c9a1f0a404a0635fcde95c956ba5f3.tar.gz
tutor-module-23e7854792c9a1f0a404a0635fcde95c956ba5f3.tar.xz
tutor-module-23e7854792c9a1f0a404a0635fcde95c956ba5f3.zip
-Ausgaben verringert
-rw-r--r--Dozentenmodul/bin/config/config_file.classbin2393 -> 2572 bytes
-rw-r--r--Dozentenmodul/bin/gui/image/DeleteImage_GUI.classbin16901 -> 16901 bytes
-rw-r--r--Dozentenmodul/bin/gui/image/SearchEditImage_GUI.classbin17049 -> 17049 bytes
-rw-r--r--Dozentenmodul/bin/gui/image/SearchImage_GUI.classbin16817 -> 16817 bytes
-rw-r--r--Dozentenmodul/src/config/config_file.java16
-rw-r--r--Dozentenmodul/src/gui/image/DeleteImage_GUI.java62
-rw-r--r--Dozentenmodul/src/gui/image/SearchEditImage_GUI.java14
-rw-r--r--Dozentenmodul/src/gui/image/SearchImage_GUI.java14
-rw-r--r--Dozentenmodul/src/gui/lecture/CreateLectureLink_GUI.java14
-rw-r--r--Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java13
-rw-r--r--Dozentenmodul/src/gui/lecture/EditLectureLink_GUI.java14
-rw-r--r--Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java4
-rw-r--r--Dozentenmodul/src/gui/lecture/SearchLecture_GUI.java4
13 files changed, 92 insertions, 63 deletions
diff --git a/Dozentenmodul/bin/config/config_file.class b/Dozentenmodul/bin/config/config_file.class
index 3391b1a8..c53a60a4 100644
--- a/Dozentenmodul/bin/config/config_file.class
+++ b/Dozentenmodul/bin/config/config_file.class
Binary files differ
diff --git a/Dozentenmodul/bin/gui/image/DeleteImage_GUI.class b/Dozentenmodul/bin/gui/image/DeleteImage_GUI.class
index 5c249692..5a2b559b 100644
--- a/Dozentenmodul/bin/gui/image/DeleteImage_GUI.class
+++ b/Dozentenmodul/bin/gui/image/DeleteImage_GUI.class
Binary files differ
diff --git a/Dozentenmodul/bin/gui/image/SearchEditImage_GUI.class b/Dozentenmodul/bin/gui/image/SearchEditImage_GUI.class
index 1c5776ea..750e9c19 100644
--- a/Dozentenmodul/bin/gui/image/SearchEditImage_GUI.class
+++ b/Dozentenmodul/bin/gui/image/SearchEditImage_GUI.class
Binary files differ
diff --git a/Dozentenmodul/bin/gui/image/SearchImage_GUI.class b/Dozentenmodul/bin/gui/image/SearchImage_GUI.class
index 6372b9e4..11614ef6 100644
--- a/Dozentenmodul/bin/gui/image/SearchImage_GUI.class
+++ b/Dozentenmodul/bin/gui/image/SearchImage_GUI.class
Binary files differ
diff --git a/Dozentenmodul/src/config/config_file.java b/Dozentenmodul/src/config/config_file.java
index 5adaa35b..e2290f34 100644
--- a/Dozentenmodul/src/config/config_file.java
+++ b/Dozentenmodul/src/config/config_file.java
@@ -20,7 +20,7 @@ public class config_file {
//Pruefen ob Ordner schon existiert
if(config.exists()==false)
{
- System.out.println("Ordner exisitiert nicht, lege ihn jetzt an.");
+ System.out.println("Ordner \"bwLehrpoolSuite\" exisitiert nicht - lege ihn jetzt an.");
//Wenn nicht erzeuge Ordner
config.mkdir();
@@ -31,7 +31,7 @@ public class config_file {
//Wenn in die Datei geschrieben werden kann
if(conf.canWrite()==true)
{
- System.out.println("Erzeuge Config file.");
+ System.out.println("Erzeuge \"config.ini.\"");
//Schreibe Config
ini.put("main", "BillOfRights",false);
ini.put("main", "vmware", false);
@@ -43,24 +43,24 @@ public class config_file {
return true;
} else {
- System.out.println("Konnte Datei nicht anlegen");
+ System.out.println("Konnte \"config.ini\" nicht anlegen - keine weitere Aktion.");
}
}
else
{
- System.out.println("Ordner existiert.");
+ System.out.println("Ordner \"bwLehrpoolSuite\" existiert bereits - keine weitere Aktion.");
//Wenn Ordner schon existiert, pruefe ob Datei existiert
if(conf.exists()==false)
{
- System.out.println("Datei existiert nicht, lege jetzt an.");
+ System.out.println("\"config.ini\" existiert nicht - lege jetzt an.");
//Wenn nicht, erzeuge diese
conf.createNewFile();
ini=new Wini(conf);
if(conf.canWrite()==true)
{
- System.out.println("Schreibe jetzt File");
+ System.out.println("Schreibe jetzt \"config.ini\".");
//Schreibe Konfig in File
ini.put("main", "BillOfRights",false);
ini.put("main", "vmware", false);
@@ -72,10 +72,10 @@ public class config_file {
return true;
} else {
- System.out.println("Kann File nicht schreiben.");
+ System.out.println("Kann \"config.ini\" nicht schreiben - keine weitere Aktion.");
}
} else {
- System.out.println("File existiert bereits.");
+ System.out.println("\"config.ini\" existiert bereits - keine weitere Aktion.");
}
}
return true;
diff --git a/Dozentenmodul/src/gui/image/DeleteImage_GUI.java b/Dozentenmodul/src/gui/image/DeleteImage_GUI.java
index e351b2ac..71b93d12 100644
--- a/Dozentenmodul/src/gui/image/DeleteImage_GUI.java
+++ b/Dozentenmodul/src/gui/image/DeleteImage_GUI.java
@@ -93,7 +93,19 @@ public class DeleteImage_GUI extends JFrame {
JTabbedPane tabbedPane;
boolean activeSearch = false;
String[] titles = { "Name", "Lizenzpflichtig", "OS", "Veranstaltung",
- "Verantwortlicher", "Letztes Update", "ID", "Version", "Template" };
+ "Verantwortlicher", "Letztes Update", "ID", "Version", "Template" }; // Angezeigt
+ // werden
+ // aber
+ // nur
+ // Name
+ // (0),
+ // OS
+ // (2),
+ // Verantwortlicher
+ // (4),
+ // Letztes
+ // Update
+ // (5)
ThriftConnection con = new ThriftConnection();
Client client = models.Client.clientcon.getClient();
final DefaultTableModel modelAll = new DefaultTableModel(titles, 0) {
@@ -137,10 +149,18 @@ public class DeleteImage_GUI extends JFrame {
initTableModel(modelMyImages);
initTableModel(modelPublicVorlagen);
- // �bernehmen in aandere
+ // auszublendende Angaben
+ // 1=Lizenzpflichtig
+ // 3=Veranstaltung
+ // 6=ID
+ // 7=Version
+ // 8=Template
tablemyImages.getColumnModel().getColumn(1).setWidth(0);
tablemyImages.getColumnModel().getColumn(1).setMinWidth(0);
tablemyImages.getColumnModel().getColumn(1).setMaxWidth(0);
+ tablemyImages.getColumnModel().getColumn(3).setWidth(0);
+ tablemyImages.getColumnModel().getColumn(3).setMinWidth(0);
+ tablemyImages.getColumnModel().getColumn(3).setMaxWidth(0);
tablemyImages.getColumnModel().getColumn(8).setWidth(0);
tablemyImages.getColumnModel().getColumn(8).setMinWidth(0);
tablemyImages.getColumnModel().getColumn(8).setMaxWidth(0);
@@ -150,11 +170,17 @@ public class DeleteImage_GUI extends JFrame {
tablemyImages.getColumnModel().getColumn(7).setWidth(0);
tablemyImages.getColumnModel().getColumn(7).setMinWidth(0);
tablemyImages.getColumnModel().getColumn(7).setMaxWidth(0);
+
tablePublicVorlagen.getColumnModel().getColumn(1).setWidth(0);
tablePublicVorlagen.getColumnModel().getColumn(1)
.setMinWidth(0);
tablePublicVorlagen.getColumnModel().getColumn(1)
.setMaxWidth(0);
+ tablePublicVorlagen.getColumnModel().getColumn(3).setWidth(0);
+ tablePublicVorlagen.getColumnModel().getColumn(3)
+ .setMinWidth(0);
+ tablePublicVorlagen.getColumnModel().getColumn(3)
+ .setMaxWidth(0);
tablePublicVorlagen.getColumnModel().getColumn(8).setWidth(0);
tablePublicVorlagen.getColumnModel().getColumn(8)
.setMinWidth(0);
@@ -170,9 +196,13 @@ public class DeleteImage_GUI extends JFrame {
.setMinWidth(0);
tablePublicVorlagen.getColumnModel().getColumn(7)
.setMaxWidth(0);
+
tableAllImages.getColumnModel().getColumn(1).setWidth(0);
tableAllImages.getColumnModel().getColumn(1).setMinWidth(0);
tableAllImages.getColumnModel().getColumn(1).setMaxWidth(0);
+ tableAllImages.getColumnModel().getColumn(3).setWidth(0);
+ tableAllImages.getColumnModel().getColumn(3).setMinWidth(0);
+ tableAllImages.getColumnModel().getColumn(3).setMaxWidth(0);
tableAllImages.getColumnModel().getColumn(8).setWidth(0);
tableAllImages.getColumnModel().getColumn(8).setMinWidth(0);
tableAllImages.getColumnModel().getColumn(8).setMaxWidth(0);
@@ -371,17 +401,15 @@ public class DeleteImage_GUI extends JFrame {
tabbedPane = new JTabbedPane(JTabbedPane.TOP);
tabbedPane.addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent arg0) {
- System.out.println(tabbedPane.getSelectedIndex());
+ // System.out.println(tabbedPane.getSelectedIndex());
if (tabbedPane.getSelectedIndex() == 0 && activeSearch == false) {
String username = person.verantwortlicher.getName() + " "
+ person.verantwortlicher.getVorname();
- // String username="Spitzer Tobias";
rowSorterMyImages.setRowFilter(RowFilter.regexFilter(
username, 4));
} else if (tabbedPane.getSelectedIndex() == 1
&& activeSearch == false) {
- // System.out.println("Yeah");
rowSorterPublicVorlagen.setRowFilter(RowFilter.regexFilter(
"true", 8));
} else if (tabbedPane.getSelectedIndex() == 2
@@ -405,13 +433,13 @@ public class DeleteImage_GUI extends JFrame {
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ // System.out.println(imageid);
String version = modelMyImages.getValueAt(
tablemyImages
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ // System.out.println(version);
writeImageData(imageid, version);
}
});
@@ -448,14 +476,14 @@ public class DeleteImage_GUI extends JFrame {
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ // System.out.println(imageid);
String version = modelPublicVorlagen
.getValueAt(
tablePublicVorlagen
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ // System.out.println(version);
writeImageData(imageid, version);
}
});
@@ -483,13 +511,13 @@ public class DeleteImage_GUI extends JFrame {
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ // System.out.println(imageid);
String version = modelAll.getValueAt(
tableAllImages
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ // System.out.println(version);
writeImageData(imageid, version);
}
@@ -548,8 +576,8 @@ public class DeleteImage_GUI extends JFrame {
try {
if (!client.connectedToLecture(imageid,
imageversion)) {
- System.out.println(imageid);
- System.out.println(imageversion);
+ // System.out.println(imageid);
+ // System.out.println(imageversion);
try {
client.deleteImageServer(imageid,
imageversion);
@@ -655,8 +683,8 @@ public class DeleteImage_GUI extends JFrame {
try {
if (!client.connectedToLecture(imageid,
imageversion)) {
- System.out.println(imageid);
- System.out.println(imageversion);
+ // System.out.println(imageid);
+ // System.out.println(imageversion);
try {
client.deleteImageServer(imageid,
imageversion);
@@ -759,8 +787,8 @@ public class DeleteImage_GUI extends JFrame {
try {
if (!client.connectedToLecture(imageid,
imageversion)) {
- System.out.println(imageid);
- System.out.println(imageversion);
+ // System.out.println(imageid);
+ // System.out.println(imageversion);
try {
client.deleteImageServer(imageid,
imageversion);
diff --git a/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java b/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java
index df36e4a4..22b0227f 100644
--- a/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java
+++ b/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java
@@ -396,12 +396,10 @@ public class SearchEditImage_GUI extends JFrame {
String username = person.verantwortlicher.getName() + " "
+ person.verantwortlicher.getVorname();
- // String username="Spitzer Tobias";
rowSorterMyImages.setRowFilter(RowFilter.regexFilter(
username, 4));
} else if (tabbedPane.getSelectedIndex() == 1
&& activeSearch == false) {
- // System.out.println("Yeah");
rowSorterPublicVorlagen.setRowFilter(RowFilter.regexFilter(
"true", 8));
} else if (tabbedPane.getSelectedIndex() == 2
@@ -425,13 +423,13 @@ public class SearchEditImage_GUI extends JFrame {
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelMyImages.getValueAt(
tablemyImages
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
});
@@ -466,14 +464,14 @@ public class SearchEditImage_GUI extends JFrame {
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelPublicVorlagen
.getValueAt(
tablePublicVorlagen
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
});
@@ -498,13 +496,13 @@ public class SearchEditImage_GUI extends JFrame {
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelAll.getValueAt(
tableAllImages
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
diff --git a/Dozentenmodul/src/gui/image/SearchImage_GUI.java b/Dozentenmodul/src/gui/image/SearchImage_GUI.java
index 5232dc06..a9831cb7 100644
--- a/Dozentenmodul/src/gui/image/SearchImage_GUI.java
+++ b/Dozentenmodul/src/gui/image/SearchImage_GUI.java
@@ -402,12 +402,10 @@ public class SearchImage_GUI extends JFrame {
String username = person.verantwortlicher.getName() + " "
+ person.verantwortlicher.getVorname();
- // String username="Spitzer Tobias";
rowSorterMyImages.setRowFilter(RowFilter.regexFilter(
username, 4));
} else if (tabbedPane.getSelectedIndex() == 1
&& activeSearch == false) {
- // System.out.println("Yeah");
rowSorterPublicVorlagen.setRowFilter(RowFilter.regexFilter(
"true", 8));
} else if (tabbedPane.getSelectedIndex() == 2
@@ -432,13 +430,13 @@ public class SearchImage_GUI extends JFrame {
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelAll.getValueAt(
tableAllImages
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
@@ -460,13 +458,13 @@ public class SearchImage_GUI extends JFrame {
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelMyImages.getValueAt(
tablemyImages
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
});
@@ -492,14 +490,14 @@ public class SearchImage_GUI extends JFrame {
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelPublicVorlagen
.getValueAt(
tablePublicVorlagen
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
});
diff --git a/Dozentenmodul/src/gui/lecture/CreateLectureLink_GUI.java b/Dozentenmodul/src/gui/lecture/CreateLectureLink_GUI.java
index 20c0278e..3f78a4ac 100644
--- a/Dozentenmodul/src/gui/lecture/CreateLectureLink_GUI.java
+++ b/Dozentenmodul/src/gui/lecture/CreateLectureLink_GUI.java
@@ -374,11 +374,9 @@ public class CreateLectureLink_GUI extends JFrame {
String username = person.verantwortlicher.getName() + " "
+ person.verantwortlicher.getVorname();
- // String username="Spitzer Tobias";
rowSorterMyImages.setRowFilter(RowFilter.regexFilter(
username, 4));
}else if(tabbedPane.getSelectedIndex()==1 && activeSearch==false){
- //System.out.println("Yeah");
rowSorterPublicVorlagen.setRowFilter(RowFilter.regexFilter("true", 8));
} else if(tabbedPane.getSelectedIndex()==2 && activeSearch==false){
rowSorterAll.setRowFilter(null);
@@ -402,14 +400,14 @@ public class CreateLectureLink_GUI extends JFrame {
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelMyImages
.getValueAt(
tablemyImages
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
try {
writeImageData(imageid, version);
} catch (TException e1) {
@@ -453,14 +451,14 @@ public class CreateLectureLink_GUI extends JFrame {
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelPublicVorlagen
.getValueAt(
tablePublicVorlagen
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
try {
writeImageData(imageid, version);
} catch (TException e1) {
@@ -496,14 +494,14 @@ public class CreateLectureLink_GUI extends JFrame {
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelAll
.getValueAt(
tableAllImages
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
try {
writeImageData(imageid, version);
} catch (TException e1) {
diff --git a/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java b/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java
index 01c7d245..f8596fb8 100644
--- a/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java
+++ b/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java
@@ -119,6 +119,14 @@ public class DeleteLecture_GUI extends JFrame {
// TODO Auto-generated catch block
e.printStackTrace();
}
+
+ // auszublendende Angaben
+ // 1=Beschreibung
+ // 2=G\u00fcltigkeitsdatum
+ // 3=Aktiv
+ // 6=Image
+ // 7=Schlagwort
+ // 8=ID
tablemyLectures.getColumnModel().getColumn(1).setWidth(0);
tablemyLectures.getColumnModel().getColumn(1).setMinWidth(0);
tablemyLectures.getColumnModel().getColumn(1).setMaxWidth(0);
@@ -137,6 +145,7 @@ public class DeleteLecture_GUI extends JFrame {
tablemyLectures.getColumnModel().getColumn(8).setWidth(0);
tablemyLectures.getColumnModel().getColumn(8).setMinWidth(0);
tablemyLectures.getColumnModel().getColumn(8).setMaxWidth(0);
+
tableAllLectures.getColumnModel().getColumn(1).setWidth(0);
tableAllLectures.getColumnModel().getColumn(1).setMinWidth(0);
tableAllLectures.getColumnModel().getColumn(1).setMaxWidth(0);
@@ -311,7 +320,7 @@ public class DeleteLecture_GUI extends JFrame {
.convertRowIndexToModel(tableAllLectures
.getSelectedRow()), 8)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
try {
writeLectureData(imageid);
@@ -343,7 +352,7 @@ public class DeleteLecture_GUI extends JFrame {
.convertRowIndexToModel(tablemyLectures
.getSelectedRow()), 8)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
try {
writeLectureData(imageid);
diff --git a/Dozentenmodul/src/gui/lecture/EditLectureLink_GUI.java b/Dozentenmodul/src/gui/lecture/EditLectureLink_GUI.java
index 5fe33b0d..3a8c857d 100644
--- a/Dozentenmodul/src/gui/lecture/EditLectureLink_GUI.java
+++ b/Dozentenmodul/src/gui/lecture/EditLectureLink_GUI.java
@@ -370,11 +370,9 @@ public class EditLectureLink_GUI extends JFrame {
String username = person.verantwortlicher.getName() + " "
+ person.verantwortlicher.getVorname();
- // String username="Spitzer Tobias";
rowSorterMyImages.setRowFilter(RowFilter.regexFilter(
username, 4));
}else if(tabbedPane.getSelectedIndex()==1 && activeSearch==false){
- //System.out.println("Yeah");
rowSorterPublicVorlagen.setRowFilter(RowFilter.regexFilter("true", 8));
} else if(tabbedPane.getSelectedIndex()==2 && activeSearch==false){
rowSorterAll.setRowFilter(null);
@@ -398,14 +396,14 @@ public class EditLectureLink_GUI extends JFrame {
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelAll
.getValueAt(
tableAllImages
.convertRowIndexToModel(tableAllImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
@@ -428,14 +426,14 @@ public class EditLectureLink_GUI extends JFrame {
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelMyImages
.getValueAt(
tablemyImages
.convertRowIndexToModel(tablemyImages
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
});
@@ -461,14 +459,14 @@ public class EditLectureLink_GUI extends JFrame {
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 6)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
String version = modelPublicVorlagen
.getValueAt(
tablePublicVorlagen
.convertRowIndexToModel(tablePublicVorlagen
.getSelectedRow()), 7)
.toString();
- System.out.println(version);
+ //System.out.println(version);
writeImageData(imageid, version);
}
});
diff --git a/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java b/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java
index f6a381c3..3625a8c6 100644
--- a/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java
+++ b/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java
@@ -325,7 +325,7 @@ public class EditLectureSearch_GUI extends JFrame {
.convertRowIndexToModel(tableAllLectures
.getSelectedRow()), 8)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
try {
writeLectureData(imageid);
@@ -355,7 +355,7 @@ public class EditLectureSearch_GUI extends JFrame {
.convertRowIndexToModel(tablemyLectures
.getSelectedRow()), 8)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
try {
writeLectureData(imageid);
diff --git a/Dozentenmodul/src/gui/lecture/SearchLecture_GUI.java b/Dozentenmodul/src/gui/lecture/SearchLecture_GUI.java
index 41e0b0ea..e5967dd5 100644
--- a/Dozentenmodul/src/gui/lecture/SearchLecture_GUI.java
+++ b/Dozentenmodul/src/gui/lecture/SearchLecture_GUI.java
@@ -315,7 +315,7 @@ public class SearchLecture_GUI extends JFrame {
.convertRowIndexToModel(tableAllLectures
.getSelectedRow()), 8)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
try {
writeLectureData(imageid);
@@ -347,7 +347,7 @@ public class SearchLecture_GUI extends JFrame {
.convertRowIndexToModel(tablemyLectures
.getSelectedRow()), 8)
.toString();
- System.out.println(imageid);
+ //System.out.println(imageid);
try {
writeLectureData(imageid);