Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/FileDisplayInfo.java')
-rwxr-xr-xexamples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/FileDisplayInfo.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/FileDisplayInfo.java b/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/FileDisplayInfo.java
new file mode 100755
index 0000000000..78a5e5f497
--- /dev/null
+++ b/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/FileDisplayInfo.java
@@ -0,0 +1 @@
+package org.eclipse.swt.examples.fileviewer; /* * (c) Copyright IBM Corp. 2000, 2001. * All Rights Reserved */ import org.eclipse.swt.graphics.*; /** * Stores detailed formatted display information about a file entry. */ /* package */ class FileDisplayInfo { public String nameString; public String typeString; public String sizeString; public String dateString; public Image iconImage; /** * Creates a formatted display block. * * @param name the file name string * @param type the file type string * @param size the file size string * @param date the file data string * @param icon the file icon */ public FileDisplayInfo(String name, String type, String size, String date, Image icon) { this.nameString = name; this.typeString = type; this.sizeString = size; this.dateString = date; this.iconImage = icon; } } \ No newline at end of file

Back to the top