diff options
| author | Tobias Spitzer | 2014-08-26 09:36:49 +0200 |
|---|---|---|
| committer | Tobias Spitzer | 2014-08-26 09:36:49 +0200 |
| commit | bbcf6036c13fb32572e2e388701c948d0003356b (patch) | |
| tree | 3d2055aae33771823fdbb2d49318c10fb4224acc /Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java | |
| parent | Löschen der XML funktioniert nun, sowie das bearbeiten der XML ohne das eine ... (diff) | |
| download | tutor-module-bbcf6036c13fb32572e2e388701c948d0003356b.tar.gz tutor-module-bbcf6036c13fb32572e2e388701c948d0003356b.tar.xz tutor-module-bbcf6036c13fb32572e2e388701c948d0003356b.zip | |
Start und Enddatum der Lectures sind nun im 24H Format verfügbar
Diffstat (limited to 'Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java')
| -rw-r--r-- | Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java b/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java index ac3317a8..ed6816ed 100644 --- a/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java +++ b/Dozentenmodul/src/gui/lecture/DeleteLecture_GUI.java @@ -646,8 +646,8 @@ public class DeleteLecture_GUI extends JFrame { // Hole eine Liste der Images lectures = client.getLectureList(); Iterator<server.Lecture> i = lectures.iterator(); - SimpleDateFormat in=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); - SimpleDateFormat out=new SimpleDateFormat("dd.MM.yyyy hh:mm:ss"); + SimpleDateFormat in=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + SimpleDateFormat out=new SimpleDateFormat("dd.MM.yyyy HH:mm:ss"); int x = 0; while (i.hasNext()) { @@ -676,8 +676,8 @@ public class DeleteLecture_GUI extends JFrame { } public void writeLectureData(String id) throws TException, ParseException{ - SimpleDateFormat in=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); - SimpleDateFormat out=new SimpleDateFormat("dd.MM.yyyy hh:mm:ss"); + SimpleDateFormat in=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + SimpleDateFormat out=new SimpleDateFormat("dd.MM.yyyy HH:mm:ss"); Map<String,String> res=client.getLectureData(id); labelName.setText(res.get("name")); labelAktiv.setText(res.get("isActive")); |
