Package org.sleuthkit.autopsy.imageanalyzer.datamodel

Examples of org.sleuthkit.autopsy.imageanalyzer.datamodel.Category


        }
    }

    @ThreadConfined(type = ThreadConfined.ThreadType.ANY)
    default Category updateCategoryBorder() {
        final Category category = getFile().getCategory();
        final Border border = hasHashHit() && (category == Category.ZERO)
                              ? HASH_BORDER
                              : DrawableView.getCategoryBorder(category);

        Platform.runLater(() -> {
View Full Code Here


    }

    @Override
    @ThreadConfined(type = ThreadType.ANY)
    public Category updateCategoryBorder() {
        final Category category = super.updateCategoryBorder();
        ToggleButton toggleForCategory = getToggleForCategory(category);

        Runnable r = () -> {
            toggleForCategory.setSelected(true);
        };
View Full Code Here

                for (Long fileID : selectedFiles) {

                    try {
                        DrawableFile<?> file = controller.getFileFromId(fileID);

                        Category oldCat = file.getCategory();
                        // remove file from old category group
                        controller.getGroupManager().removeFromGroup(new GroupKey<Category>(DrawableAttribute.CATEGORY, oldCat), fileID);

                        //remove old category tag if necessary
                        List<ContentTag> allContentTags = Case.getCurrentCase().getServices().getTagsManager().getContentTagsByContent(file);
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.imageanalyzer.datamodel.Category

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.