summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
diff options
context:
space:
mode:
authorSimon Rettberg2015-09-07 15:00:52 +0200
committerSimon Rettberg2015-09-07 15:00:52 +0200
commit78a03e39eabf93d4586d055ce3fa4d4b2173f573 (patch)
tree54f3d3c432611dc554c69a1cb04663122c8c759b /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
parent[server] Fix compilation problem (diff)
downloadtutor-module-78a03e39eabf93d4586d055ce3fa4d4b2173f573.tar.gz
tutor-module-78a03e39eabf93d4586d055ce3fa4d4b2173f573.tar.xz
tutor-module-78a03e39eabf93d4586d055ce3fa4d4b2173f573.zip
[client] Clean up lecture list window layout
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java22
1 files changed, 5 insertions, 17 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
index dd36bfaa..25dcf6d1 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
@@ -32,26 +32,14 @@ public abstract class LectureListWindowLayout extends CompositePage {
private static final String switchViewButtonLabel = "Zu 'Images' wechseln";
private static final String filterPanelLabel = "Suchen";
private static final String infoTextString = "Hier können Sie Veranstaltungen anlegen, bearbeiten und löschen.";
- protected final static String[] showOwnedLabel = {"Alle anzeigen", "Nur eigene Anzeigen", "Nur editierbare anzeigen", "Bald auslaufend"};
// buttons
- protected JButton newButton;
- protected JButton deleteButton;
- protected JButton editButton;
- protected JButton switchViewButton;
- protected JComboBox<FilterType> filterCbo;
-
-
- // imageDetail texts
- protected JTextField lectureName;
- protected JTextField idInfo;
- protected JTextField imageBaseId;
- protected JTextField lastusedInfo;
- protected JTextField permissionInfo;
- protected JTextField ownerInfo;
- protected JTextField startTime;
- protected JTextField endTime;
+ protected final JButton newButton;
+ protected final JButton deleteButton;
+ protected final JButton editButton;
+ protected final JButton switchViewButton;
+ protected final JComboBox<FilterType> filterCbo;
protected final JTextField searchTextField;