From 34c5dc3fd7f81c6a21e4a868617f59759b2f5fa8 Mon Sep 17 00:00:00 2001 From: Brian Carrier Date: Tue, 17 Mar 2015 17:27:44 -0400 Subject: [PATCH] display report name first in table --- Core/src/org/sleuthkit/autopsy/datamodel/Reports.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/Reports.java b/Core/src/org/sleuthkit/autopsy/datamodel/Reports.java index 3878120d33..9822227d7a 100755 --- a/Core/src/org/sleuthkit/autopsy/datamodel/Reports.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/Reports.java @@ -163,6 +163,10 @@ public final class Reports implements AutopsyVisitableItem { NbBundle.getMessage(this.getClass(), "ReportNode.sourceModuleNameProperty.displayName"), NbBundle.getMessage(this.getClass(), "ReportNode.sourceModuleNameProperty.desc"), this.report.getSourceModuleName())); + propertiesSet.put(new NodeProperty<>(NbBundle.getMessage(this.getClass(), "ReportNode.reportNameProperty.name"), + NbBundle.getMessage(this.getClass(), "ReportNode.reportNameProperty.displayName"), + NbBundle.getMessage(this.getClass(), "ReportNode.reportNameProperty.desc"), + this.report.getReportName())); propertiesSet.put(new NodeProperty<>(NbBundle.getMessage(this.getClass(), "ReportNode.createdTimeProperty.name"), NbBundle.getMessage(this.getClass(), "ReportNode.createdTimeProperty.displayName"), NbBundle.getMessage(this.getClass(), "ReportNode.createdTimeProperty.desc"), @@ -171,10 +175,6 @@ public final class Reports implements AutopsyVisitableItem { NbBundle.getMessage(this.getClass(), "ReportNode.pathProperty.displayName"), NbBundle.getMessage(this.getClass(), "ReportNode.pathProperty.desc"), this.report.getPath())); - propertiesSet.put(new NodeProperty<>(NbBundle.getMessage(this.getClass(), "ReportNode.reportNameProperty.name"), - NbBundle.getMessage(this.getClass(), "ReportNode.reportNameProperty.displayName"), - NbBundle.getMessage(this.getClass(), "ReportNode.reportNameProperty.desc"), - this.report.getReportName())); return sheet; }