Merge pull request #3517 from raman-bt/3594_contentviewers_reorder

3594: Move Application viewer tab to left
This commit is contained in:
Richard Cordovano 2018-03-09 17:48:54 -05:00 committed by GitHub
commit 41d990bd15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ import org.sleuthkit.autopsy.corecomponentinterfaces.FileTypeViewer;
/**
* Generic Application content viewer
*/
@ServiceProvider(service = DataContentViewer.class, position = 5)
@ServiceProvider(service = DataContentViewer.class, position = 3)
public class FileViewer extends javax.swing.JPanel implements DataContentViewer {
private static final int CONFIDENCE_LEVEL = 7;

View File

@ -70,7 +70,7 @@ import org.sleuthkit.datamodel.TskCoreException;
/**
* Shows SMS/MMS/EMail messages
*/
@ServiceProvider(service = DataContentViewer.class, position = 4)
@ServiceProvider(service = DataContentViewer.class, position = 5)
public class MessageContentViewer extends javax.swing.JPanel implements DataContentViewer {
private static final long serialVersionUID = 1L;

View File

@ -35,7 +35,7 @@ import org.sleuthkit.datamodel.TskData.TSK_DB_FILES_TYPE_ENUM;
* shows the same data that can also be found in the ResultViewer table, just a
* different order and allows the full path to be visible in the bottom area.
*/
@ServiceProvider(service = DataContentViewer.class, position = 3)
@ServiceProvider(service = DataContentViewer.class, position = 6)
public class Metadata extends javax.swing.JPanel implements DataContentViewer {
/**

View File

@ -62,7 +62,7 @@ import org.netbeans.swing.etable.ETable;
* Content represented by a Node. Each BlackboardArtifact is rendered displayed
* in a JTable representation of its BlackboardAttributes.
*/
@ServiceProvider(service = DataContentViewer.class, position = 3)
@ServiceProvider(service = DataContentViewer.class, position = 7)
public class DataContentViewerArtifact extends javax.swing.JPanel implements DataContentViewer {
@NbBundle.Messages({