Exemplo n.º 1
0
 /**
  * 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);
 }
Exemplo n.º 2
0
 @Override
 public void createTag(String name, String comment) {
   Tags.createTag(bba, name, comment);
 }
Exemplo n.º 3
0
 /**
  * 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);
 }