From f93a1b0443f08d6710b9a117751e6a34e0698faf Mon Sep 17 00:00:00 2001 From: Devin148 Date: Mon, 10 Dec 2012 11:12:31 -0500 Subject: [PATCH] Publicize tag API for use with reporting --- Core/src/org/sleuthkit/autopsy/datamodel/Tags.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java b/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java index 330feb8acf..d1673a4d09 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/Tags.java @@ -122,7 +122,7 @@ public class Tags { * Get a list of all the tag names. * @return a list of all tag names. */ - static String[] getTagNames() { + public static String[] getTagNames() { Set names = new HashSet(); //List names = new ArrayList(); try { @@ -153,7 +153,7 @@ public class Tags { * @param name of the requested tags * @return a list of all tag artifacts with the given name */ - static List getTagsByName(String name) { + public static List getTagsByName(String name) { try { Case currentCase = Case.getCurrentCase(); SleuthkitCase skCase = currentCase.getSleuthkitCase();