summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/gui/image
diff options
context:
space:
mode:
authorunknown2014-04-09 18:36:41 +0200
committerunknown2014-04-09 18:36:41 +0200
commit7f129e45b05c27ff84c61569d11aec0e8ff2dbe8 (patch)
treeda117aff44ac2103144f0df262af2ec27ef456fe /Dozentenmodul/src/gui/image
parentBugfixes (diff)
downloadtutor-module-7f129e45b05c27ff84c61569d11aec0e8ff2dbe8.tar.gz
tutor-module-7f129e45b05c27ff84c61569d11aec0e8ff2dbe8.tar.xz
tutor-module-7f129e45b05c27ff84c61569d11aec0e8ff2dbe8.zip
Haufen Konsolenausgaben enfernt
Diffstat (limited to 'Dozentenmodul/src/gui/image')
-rw-r--r--Dozentenmodul/src/gui/image/EditImageAllgemein_GUI.java7
-rw-r--r--Dozentenmodul/src/gui/image/FTPCreateUploader_GUI.java10
-rw-r--r--Dozentenmodul/src/gui/image/FTPDownloader_GUI.java1
-rw-r--r--Dozentenmodul/src/gui/image/FTPEditUploader_GUI.java12
-rw-r--r--Dozentenmodul/src/gui/image/SearchEditImage_GUI.java1
5 files changed, 11 insertions, 20 deletions
diff --git a/Dozentenmodul/src/gui/image/EditImageAllgemein_GUI.java b/Dozentenmodul/src/gui/image/EditImageAllgemein_GUI.java
index cdcf9f6d..b80e4953 100644
--- a/Dozentenmodul/src/gui/image/EditImageAllgemein_GUI.java
+++ b/Dozentenmodul/src/gui/image/EditImageAllgemein_GUI.java
@@ -267,12 +267,7 @@ public class EditImageAllgemein_GUI extends JFrame {
okButton = new JButton("Weiter");
okButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
- System.out.println("text length="+imagename.getText().length());
- //Setzen der Eingabe im Model, dadurch bleiben die Daten bei einem erneuten Aufruf verfügbar
-
- //TODO
- //Prüfung ob alle notwendigen Felder ausgefüllt sind --> funktioniert aktuell nicht
- //der Button wechselt beim Klick auf die nächste Seite, selbst wenn kein handler implementiert ist... WTF???
+ //check is textfield has content
if(imagename.getText().length() <= 0){
JOptionPane.showMessageDialog(null,
"Bitte geben Sie einen Labornamen ein.",
diff --git a/Dozentenmodul/src/gui/image/FTPCreateUploader_GUI.java b/Dozentenmodul/src/gui/image/FTPCreateUploader_GUI.java
index b585fa50..e8c0c4b9 100644
--- a/Dozentenmodul/src/gui/image/FTPCreateUploader_GUI.java
+++ b/Dozentenmodul/src/gui/image/FTPCreateUploader_GUI.java
@@ -142,12 +142,12 @@ public class FTPCreateUploader_GUI extends JFrame implements
File file = fc.getSelectedFile();
// check if a file is selected and exists
if (file != null) {
- System.out.println("File to upload exists");
+ // file selected
uploadFile = file;
filename = uploadFile.getName();
lblPath.setText(file.getAbsolutePath());
} else {
- System.out.println("No file selected");
+ // no file selected
lblPath.setText("");
}// end if
}
@@ -378,9 +378,9 @@ public class FTPCreateUploader_GUI extends JFrame implements
try {
user = client.getFtpUser();
- System.out.println("name" + user.userName);
- System.out.println("path" + user.path);
- System.out.println("pass" + user.password);
+ System.out.println("FTP name" + user.userName);
+ System.out.println("FTP path" + user.path);
+ System.out.println("FTP pass" + user.password);
} catch (TException e) {
// TODO Auto-generated catch block
e.printStackTrace();
diff --git a/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java b/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java
index f6175934..4a54e346 100644
--- a/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java
+++ b/Dozentenmodul/src/gui/image/FTPDownloader_GUI.java
@@ -124,7 +124,6 @@ public class FTPDownloader_GUI extends JFrame implements PropertyChangeListener
// check if directory is selected
if (dir != null) {
// is selected
- System.out.println("Target directory exists.");
lblPath.setText(dir.getAbsolutePath());
} else {
// no directory selected
diff --git a/Dozentenmodul/src/gui/image/FTPEditUploader_GUI.java b/Dozentenmodul/src/gui/image/FTPEditUploader_GUI.java
index dd35ad83..9863c1c6 100644
--- a/Dozentenmodul/src/gui/image/FTPEditUploader_GUI.java
+++ b/Dozentenmodul/src/gui/image/FTPEditUploader_GUI.java
@@ -145,12 +145,12 @@ public class FTPEditUploader_GUI extends JFrame implements
File file = fc.getSelectedFile();
// check if a file is selected and exists
if (file != null) {
- System.out.println("File to upload exists");
+ // file exists
uploadFile = file;
filename = uploadFile.getName();
lblPath.setText(file.getAbsolutePath());
} else {
- System.out.println("No file selected");
+ // no file selected
lblPath.setText("");
}// end if
}
@@ -374,9 +374,9 @@ public class FTPEditUploader_GUI extends JFrame implements
try {
user = client.getFtpUser();
- System.out.println("name" + user.userName);
- System.out.println("path" + user.path);
- System.out.println("pass" + user.password);
+ System.out.println("FTP name" + user.userName);
+ System.out.println("FTP path" + user.path);
+ System.out.println("FTP pass" + user.password);
} catch (TException e) {
// TODO Auto-generated catch block
e.printStackTrace();
@@ -457,8 +457,6 @@ public class FTPEditUploader_GUI extends JFrame implements
public boolean updateData() {
try {
-
- System.out.println("Start Update");
client.updateImageData(Image.image.getImagename(),
Image.image.getNewName(), Image.image.isLicensed(),
Image.image.isInternet(), Image.image.getRam(),
diff --git a/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java b/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java
index 95a50732..e6bb055e 100644
--- a/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java
+++ b/Dozentenmodul/src/gui/image/SearchEditImage_GUI.java
@@ -502,7 +502,6 @@ public class SearchEditImage_GUI extends JFrame {
images.get(x).getUserData(),
images.get(x).getUpdateTime(), "", images.get(x).id,
images.get(x).getVersion() };
- // System.out.println("id:"+images.get(x).getId());
// Füge diese Objekte der Tabelle hinzu
model.addRow(obj);
x++;