Autopsy  4.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
SampleIngestModuleIngestJobSettingsPanel.java
Go to the documentation of this file.
1 /*
2  * Sample module ingest job settings panel in the public domain.
3  * Feel free to use this as a template for your module ingest job settings
4  * panels.
5  *
6  * Contact: Brian Carrier [carrier <at> sleuthkit [dot] org]
7  *
8  * This is free and unencumbered software released into the public domain.
9  *
10  * Anyone is free to copy, modify, publish, use, compile, sell, or
11  * distribute this software, either in source code form or as a compiled
12  * binary, for any purpose, commercial or non-commercial, and by any
13  * means.
14  *
15  * In jurisdictions that recognize copyright laws, the author or authors
16  * of this software dedicate any and all copyright interest in the
17  * software to the public domain. We make this dedication for the benefit
18  * of the public at large and to the detriment of our heirs and
19  * successors. We intend this dedication to be an overt act of
20  * relinquishment in perpetuity of all present and future rights to this
21  * software under copyright law.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
26  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
27  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
28  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29  * OTHER DEALINGS IN THE SOFTWARE.
30  */
31 package org.sleuthkit.autopsy.examples;
32 
35 
40 
46  customizeComponents(settings);
47  }
48 
50  skipKnownFilesCheckBox.setSelected(settings.skipKnownFiles());
51  }
52 
58  @Override
61  }
62 
68  @SuppressWarnings("unchecked")
69  // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
70  private void initComponents() {
71 
72  skipKnownFilesCheckBox = new javax.swing.JCheckBox();
73 
74  org.openide.awt.Mnemonics.setLocalizedText(skipKnownFilesCheckBox, org.openide.util.NbBundle.getMessage(SampleIngestModuleIngestJobSettingsPanel.class, "SampleIngestModuleIngestJobSettingsPanel.skipKnownFilesCheckBox.text")); // NOI18N
75 
76  javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
77  this.setLayout(layout);
78  layout.setHorizontalGroup(
79  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
80  .addGroup(layout.createSequentialGroup()
81  .addContainerGap()
82  .addComponent(skipKnownFilesCheckBox)
83  .addContainerGap(255, Short.MAX_VALUE))
84  );
85  layout.setVerticalGroup(
86  layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
87  .addGroup(layout.createSequentialGroup()
88  .addContainerGap()
89  .addComponent(skipKnownFilesCheckBox)
90  .addContainerGap(270, Short.MAX_VALUE))
91  );
92  }// </editor-fold>//GEN-END:initComponents
93  // Variables declaration - do not modify//GEN-BEGIN:variables
94  private javax.swing.JCheckBox skipKnownFilesCheckBox;
95  // End of variables declaration//GEN-END:variables
96 }

Copyright © 2012-2015 Basis Technology. Generated on: Wed Apr 6 2016
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.