summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
diff options
context:
space:
mode:
authorSimon Rettberg2016-01-29 11:03:52 +0100
committerSimon Rettberg2016-01-29 11:03:52 +0100
commit7d81da615f089f06ba81c2cc2b67bc3ff4def957 (patch)
tree2d8cad390cbe7937b51a6f1b4693f8a5e6ed0d25 /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
parent[client] Minor tweaks to image details window (diff)
downloadtutor-module-7d81da615f089f06ba81c2cc2b67bc3ff4def957.tar.gz
tutor-module-7d81da615f089f06ba81c2cc2b67bc3ff4def957.tar.xz
tutor-module-7d81da615f089f06ba81c2cc2b67bc3ff4def957.zip
[client] Sanitize coding style/conventions in GUI classes
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
index 620f363a..c999586c 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/VirtualizerNoticeWindowLayout.java
@@ -24,8 +24,8 @@ public abstract class VirtualizerNoticeWindowLayout extends JDialog {
+ "</body></html>";
// protected JButton windowsDLButton;
- protected final JButton btnDL;
- protected final JButton continueButton;
+ protected final JButton btnDownload;
+ protected final JButton btnClose;
public VirtualizerNoticeWindowLayout(Frame modalParent) {
super(modalParent, title, modalParent != null ? ModalityType.APPLICATION_MODAL
@@ -49,8 +49,8 @@ public abstract class VirtualizerNoticeWindowLayout extends JDialog {
infoPane.add(Box.createRigidArea(new Dimension(0, 10)));
// Download buttons
- btnDL = new JButton("VMWare Player herunterladen");
- infoPane.add(btnDL);
+ btnDownload = new JButton("VMWare Player herunterladen");
+ infoPane.add(btnDownload);
// Bottom controls
JPanel bottomPane = new JPanel();
@@ -58,8 +58,8 @@ public abstract class VirtualizerNoticeWindowLayout extends JDialog {
bottomPane.add(Box.createHorizontalGlue());
- continueButton = new JButton("Schließen");
- bottomPane.add(continueButton);
+ btnClose = new JButton("Schließen");
+ bottomPane.add(btnClose);
grid.add(infoPane).fill(true, true).expand(true, true);
grid.nextRow();