summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java
diff options
context:
space:
mode:
authorStephan Schwaer2015-08-31 17:28:42 +0200
committerStephan Schwaer2015-08-31 17:28:42 +0200
commit893d0b2057e94461bf6ac6ebb14e238dbc3f7010 (patch)
treefc00b1512f66afaeb68a3977e7a0a9dc52f5f32a /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java
parent[client] slightly improved user info message when deleting a basis image in I... (diff)
downloadtutor-module-893d0b2057e94461bf6ac6ebb14e238dbc3f7010.tar.gz
tutor-module-893d0b2057e94461bf6ac6ebb14e238dbc3f7010.tar.xz
tutor-module-893d0b2057e94461bf6ac6ebb14e238dbc3f7010.zip
[client] several layout fixes, added some comments.
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java
index e4c97eac..08dc9279 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/ImageListWindow.java
@@ -30,8 +30,10 @@ import org.openslx.dozmod.thrift.ThriftActions;
import org.openslx.dozmod.thrift.ThriftActions.DeleteCallback;
import org.openslx.dozmod.thrift.ThriftActions.DownloadCallback;
+
/**
- *
+ * Window with the list of available images.
+ * Has filters for the images and buttons to create, edit and delete buttons.
*/
@SuppressWarnings("serial")
public class ImageListWindow extends ImageListWindowLayout implements DownloadCallback, DeleteCallback {
@@ -254,10 +256,10 @@ public class ImageListWindow extends ImageListWindowLayout implements DownloadCa
return;
ImageDetailsWindow.open((JFrame) SwingUtilities.getWindowAncestor(me), image.getImageBaseId(),
new ImageUpdatedCallback() {
- public void updated() {
- imageListViewer.refreshList(true, 100);
- }
- });
+ public void updated() {
+ imageListViewer.refreshList(true, 100);
+ }
+ });
}
/**