mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 00:16:16 +00:00
35 lines
1.3 KiB
Java
35 lines
1.3 KiB
Java
/*
|
|
* Autopsy Forensic Browser
|
|
*
|
|
* Copyright 2011 Basis Technology Corp.
|
|
* Contact: carrier <at> sleuthkit <dot> org
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package org.sleuthkit.autopsy.datamodel;
|
|
|
|
import org.sleuthkit.datamodel.Content;
|
|
|
|
|
|
/**
|
|
* Lookup interface to get instance of a HighlightedMatchesSource
|
|
*
|
|
* @param c content for which to get highlights
|
|
* @param keywordHitQuery keyword hit that needs to be highlighted
|
|
* @param isRegex whether the original query was a regex query
|
|
* @param originalQuery (regex or literal) that may need to be performed again to get all ContentHit results
|
|
*/
|
|
public interface HighlightLookup {
|
|
public HighlightLookup createInstance(Content c, String keywordHitQuery, boolean isRegex, String originalQuery);
|
|
}
|