/** * 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); }
@Override public void createTag(String name, String comment) { Tags.createTag(bba, name, comment); }
/** * 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); }