From 82b318569f4befae853038799e46d4a0e5844475 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Thu, 4 Sep 2014 11:14:21 +0200 Subject: Suchfeld für Beschreibung hinzugefügt --- Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java') diff --git a/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java b/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java index 3625a8c6..6f0786ef 100644 --- a/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java +++ b/Dozentenmodul/src/gui/lecture/EditLectureSearch_GUI.java @@ -104,6 +104,7 @@ public class EditLectureSearch_GUI extends JFrame { modelAll); final TableRowSorter rowSorterMyLectures = new TableRowSorter( modelMyLectures); + private JTextField textField; /** * Create the dialog. @@ -228,8 +229,8 @@ public class EditLectureSearch_GUI extends JFrame { contentPanel.add(panel_1); panel_1.setLayout(null); - JLabel lblNewLabel_2 = new JLabel("Anzeigename:"); - lblNewLabel_2.setBounds(10, 30, 250, 20); + JLabel lblNewLabel_2 = new JLabel("Name:"); + lblNewLabel_2.setBounds(10, 30, 80, 20); panel_1.add(lblNewLabel_2); textFieldName = new JTextField(); @@ -259,9 +260,18 @@ public class EditLectureSearch_GUI extends JFrame { } }); - textFieldName.setBounds(270, 30, 250, 20); + textFieldName.setBounds(96, 30, 166, 20); panel_1.add(textFieldName); textFieldName.setColumns(10); + + JLabel label = new JLabel("Beschreibung:"); + label.setBounds(291, 30, 80, 20); + panel_1.add(label); + + textField = new JTextField(); + textField.setColumns(10); + textField.setBounds(381, 30, 166, 20); + panel_1.add(textField); JLabel lblHauptmen = new JLabel("Hauptmen\u00FC"); lblHauptmen.addMouseListener(new MouseAdapter() { -- cgit v1.2.3-55-g7522