예제 #1
0
파일: Tags.java 프로젝트: halbbob/autopsy
 /**
  * Create a bookmark tag for an artifact.
  *
  * @param artifact to create bookmark tag for
  * @param comment the bookmark comment
  */
 public static void createBookmark(BlackboardArtifact artifact, String comment) {
   createTag(artifact, Tags.BOOKMARK_TAG_NAME, comment);
 }
예제 #2
0
파일: Tags.java 프로젝트: halbbob/autopsy
 @Override
 public void createTag(String name, String comment) {
   Tags.createTag(bba, name, comment);
 }
예제 #3
0
파일: Tags.java 프로젝트: halbbob/autopsy
 /**
  * Create a bookmark tag for a file.
  *
  * @param file to create bookmark tag for
  * @param comment the bookmark comment
  */
 public static void createBookmark(AbstractFile file, String comment) {
   createTag(file, Tags.BOOKMARK_TAG_NAME, comment);
 }