Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
YaraRuleSetsOptionPanelController.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
3 *
4 * Copyright 2020 Basis Technology Corp.
5 * Contact: carrier <at> sleuthkit <dot> org
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19package org.sleuthkit.autopsy.modules.yara.ui;
20
21import java.beans.PropertyChangeListener;
22import javax.swing.JComponent;
23import org.netbeans.spi.options.OptionsPanelController;
24import org.openide.util.HelpCtx;
25import org.openide.util.Lookup;
26
31@OptionsPanelController.TopLevelRegistration(
32 categoryName = "#OptionCategory_Name_YaraRuleSetOption",
33 iconBase = "org/sleuthkit/autopsy/images/yara_32.png",
34 keywords = "#OptionCategory_Keywords_YaraRuleSetOption",
35 keywordsCategory = "YaraRuleSets",
36 position = 20
37)
38public class YaraRuleSetsOptionPanelController extends OptionsPanelController {
39
41
42 @Override
43 public void update() {
44 if (panel != null) {
45 panel.updatePanel();
46 }
47 }
48
49 @Override
50 public void applyChanges() {
51
52 }
53
54 @Override
55 public void cancel() {
56
57 }
58
59 @Override
60 public JComponent getComponent(Lookup masterLookup) {
62 return panel;
63 }
64
65 @Override
66 public HelpCtx getHelpCtx() {
67 return null;
68 }
69
70 @Override
71 public void addPropertyChangeListener(PropertyChangeListener pl) {
72
73 }
74
75 @Override
76 public void removePropertyChangeListener(PropertyChangeListener pl) {
77
78 }
79
80 @Override
81 public boolean isValid() {
82 return true;
83 }
84
85 @Override
86 public boolean isChanged() {
87 return false;
88 }
89
90}

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.