Autopsy  4.19.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
WebCategoriesOptionsController.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2021 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  */
19 package org.sleuthkit.autopsy.url.analytics.domaincategorization;
20 
21 import java.beans.PropertyChangeListener;
22 import javax.swing.JComponent;
23 import org.netbeans.spi.options.OptionsPanelController;
24 import org.openide.util.HelpCtx;
25 import org.openide.util.Lookup;
26 
31 @OptionsPanelController.TopLevelRegistration(categoryName = "#WebCategoryOptionsController_title",
32  iconBase = "org/sleuthkit/autopsy/images/domain-32.png",
33  position = 21,
34  keywords = "#WebCategoryOptionsController_keywords",
35  keywordsCategory = "Custom Web Categories")
36 public class WebCategoriesOptionsController extends OptionsPanelController {
37 
38  private final WebCategoriesDataModel dataModel = WebCategoriesDataModel.getInstance();
40 
41  @Override
42  public void update() {
43  panel.refresh();
44  }
45 
46  @Override
47  public void applyChanges() {
48  // NO OP since saves happen whenever there is a change.
49  }
50 
51  @Override
52  public void cancel() {
53  // NO OP since saves happen whenever there is a change.
54  }
55 
56  @Override
57  public boolean isValid() {
58  return true;
59  }
60 
61  @Override
62  public boolean isChanged() {
63  return false;
64  }
65 
66  @Override
67  public JComponent getComponent(Lookup masterLookup) {
68  return panel;
69  }
70 
71  @Override
72  public HelpCtx getHelpCtx() {
73  return null;
74  }
75 
76  @Override
77  public void addPropertyChangeListener(PropertyChangeListener l) {
78  // NO OP since saves happen whenever there is a change.
79  }
80 
81  @Override
82  public void removePropertyChangeListener(PropertyChangeListener l) {
83  // NO OP since saves happen whenever there is a change.
84  }
85 
86 }

Copyright © 2012-2021 Basis Technology. Generated on: Thu Sep 30 2021
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.