summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
diff options
context:
space:
mode:
authorStephan Schwaer2015-10-07 15:59:47 +0200
committerStephan Schwaer2015-10-07 15:59:47 +0200
commit5806e07c5f4e2bb592b010a1bb4a043c7aa30ca9 (patch)
treef3d876bf05a0a35d766adf779626e5eb19953d5b /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LectureListWindowLayout.java
parent[client] Can now continue in imageListPage in lecture wizard with double clic... (diff)
downloadtutor-module-5806e07c5f4e2bb592b010a1bb4a043c7aa30ca9.tar.gz
tutor-module-5806e07c5f4e2bb592b010a1bb4a043c7aa30ca9.tar.xz
tutor-module-5806e07c5f4e2bb592b010a1bb4a043c7aa30ca9.zip
[client] Code formatting.
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.java10
1 files changed, 4 insertions, 6 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 31f20a11..20795474 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
@@ -34,7 +34,6 @@ public abstract class LectureListWindowLayout extends CompositePage {
private static final String filterPanelLabel = "Suchen";
private static final String infoTextString = "Hier können Sie Veranstaltungen anlegen, bearbeiten und löschen.";
-
// buttons
protected final JButton newButton;
protected final JButton deleteButton;
@@ -62,7 +61,6 @@ public abstract class LectureListWindowLayout extends CompositePage {
infoPanel.add(infoText, BorderLayout.CENTER);
// ---------------- end group of title ------------------------------
-
// ------------ panel for the table and filter -----------------------
JPanel tablePanel = new JPanel();
GridManager tableGrid = new GridManager(tablePanel, 1);
@@ -105,10 +103,10 @@ public abstract class LectureListWindowLayout extends CompositePage {
newButton = new JButton(newButtonLabel);
buttonPanel.add(newButton);
- buttonPanel.add(Box.createRigidArea(new Dimension(5, 0)));
+ buttonPanel.add(Box.createRigidArea(new Dimension(5, 0)));
editButton = new JButton(editButtonLabel);
buttonPanel.add(editButton);
- buttonPanel.add(Box.createRigidArea(new Dimension(5, 0)));
+ buttonPanel.add(Box.createRigidArea(new Dimension(5, 0)));
deleteButton = new JButton(deleteButtonLabel);
buttonPanel.add(deleteButton);
buttonPanel.add(Box.createHorizontalGlue());
@@ -125,8 +123,8 @@ public abstract class LectureListWindowLayout extends CompositePage {
grid.finish(false);
}
-
- protected void setLectureCountLabel(int i){
+
+ protected void setLectureCountLabel(int i) {
lectureCountLabel.setText(Integer.toString(i));
}