Closedown

This commit is contained in:
boccioli_m
2015-06-09 14:58:42 +02:00
parent 4b908ce76c
commit c461cf623a

View File

@@ -385,9 +385,9 @@ public class TestingList extends Panel {
File[] listOfFiles = folder.listFiles();
for (File listOfFile : listOfFiles) {
if (listOfFile.isFile()) {
this.jTextField1.append("File " + listOfFile.getName());
this.jTextField1.append("\nFile " + listOfFile.getName());
} else if (listOfFile.isDirectory()) {
this.jTextField1.append("Directory " + listOfFile.getName());
this.jTextField1.append("\nDirectory " + listOfFile.getName());
File configFile = new File(listOfFile.getPath() + FilenameUtils.separatorsToSystem("/.config"));
if(configFile.exists() && !configFile.isDirectory()){
InputStream is = new FileInputStream(configFile);
@@ -406,6 +406,7 @@ public class TestingList extends Panel {
}
}
addToTable(prop.getProperty("name"), prop.getProperty("description"), prop.getProperty("tests"));
this.jTextField1.append("\nProperties: ");
this.jTextField1.append(prop.getProperty("name"));
this.jTextField1.append(prop.getProperty("description"));
this.jTextField1.append(prop.getProperty("tests"));