Merge pull request #6818 from kellykelly3/7444-rename-osaccount-content-viewer

7444 Changed OS Account content tab name and location
This commit is contained in:
Richard Cordovano 2021-03-25 09:10:49 -04:00 committed by GitHub
commit 635f3e29a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 8 deletions

View File

@ -51,7 +51,7 @@ import org.sleuthkit.datamodel.TskException;
* View correlation results from other cases * View correlation results from other cases
*/ */
@SuppressWarnings("PMD.SingularField") // UI widgets cause lots of false positives @SuppressWarnings("PMD.SingularField") // UI widgets cause lots of false positives
@ServiceProvider(service = DataContentViewer.class, position = 9) @ServiceProvider(service = DataContentViewer.class, position = 10)
@Messages({"DataContentViewerOtherCases.title=Other Occurrences", @Messages({"DataContentViewerOtherCases.title=Other Occurrences",
"DataContentViewerOtherCases.toolTip=Displays instances of the selected file/artifact from other occurrences."}) "DataContentViewerOtherCases.toolTip=Displays instances of the selected file/artifact from other occurrences."})
public final class DataContentViewerOtherCases extends JPanel implements DataContentViewer { public final class DataContentViewerOtherCases extends JPanel implements DataContentViewer {

View File

@ -61,7 +61,7 @@ import org.jsoup.nodes.Element;
* Annotations view of file contents. * Annotations view of file contents.
*/ */
@SuppressWarnings("PMD.SingularField") // UI widgets cause lots of false positives @SuppressWarnings("PMD.SingularField") // UI widgets cause lots of false positives
@ServiceProvider(service = DataContentViewer.class, position = 8) @ServiceProvider(service = DataContentViewer.class, position = 9)
@Messages({ @Messages({
"AnnotationsContentViewer.title=Annotations", "AnnotationsContentViewer.title=Annotations",
"AnnotationsContentViewer.toolTip=Displays tags and comments associated with the selected content.", "AnnotationsContentViewer.toolTip=Displays tags and comments associated with the selected content.",

View File

@ -48,7 +48,7 @@ import org.sleuthkit.datamodel.TskCoreException;
* usage, if known. * usage, if known.
* *
*/ */
@ServiceProvider(service = DataContentViewer.class, position = 7) @ServiceProvider(service = DataContentViewer.class, position = 8)
public final class ContextViewer extends javax.swing.JPanel implements DataContentViewer { public final class ContextViewer extends javax.swing.JPanel implements DataContentViewer {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;

View File

@ -11,6 +11,6 @@ OsAccountDataPanel_realm_name=Name
OsAccountDataPanel_realm_scope=Scope OsAccountDataPanel_realm_scope=Scope
OsAccountDataPanel_realm_title=Realm Properties OsAccountDataPanel_realm_title=Realm Properties
OsAccountDataPanel_realm_unknown=Unknown OsAccountDataPanel_realm_unknown=Unknown
OsAccountViewer_title=Os Account OsAccountViewer_title=OS Account
OsAccountViewer_tooltip=Viewer for OS accounts related to the selected node. OsAccountViewer_tooltip=Viewer for Operating System accounts related to the selected node.
TableDataPanel.titleLabel.text=Title TableDataPanel.titleLabel.text=Title

View File

@ -11,6 +11,7 @@
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
<AuxValue name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-39,-41,-84,95,68,20,2,0,2,73,0,6,104,101,105,103,104,116,73,0,5,119,105,100,116,104,120,112,0,0,1,44,0,0,1,-112"/>
</AuxValues> </AuxValues>
<Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/>

View File

@ -34,7 +34,7 @@ import org.sleuthkit.datamodel.TskCoreException;
/** /**
* DataContentViewer for OsAccounts. * DataContentViewer for OsAccounts.
*/ */
@ServiceProvider(service = DataContentViewer.class, position = 12) @ServiceProvider(service = DataContentViewer.class, position = 7)
public class OsAccountViewer extends javax.swing.JPanel implements DataContentViewer { public class OsAccountViewer extends javax.swing.JPanel implements DataContentViewer {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@ -87,7 +87,7 @@ public class OsAccountViewer extends javax.swing.JPanel implements DataContentVi
} }
@Messages({ @Messages({
"OsAccountViewer_title=Os Account" "OsAccountViewer_title=OS Account"
}) })
@Override @Override
public String getTitle() { public String getTitle() {
@ -95,7 +95,7 @@ public class OsAccountViewer extends javax.swing.JPanel implements DataContentVi
} }
@Messages({ @Messages({
"OsAccountViewer_tooltip=Viewer for OS accounts related to the selected node." "OsAccountViewer_tooltip=Viewer for Operating System accounts related to the selected node."
}) })
@Override @Override
public String getToolTip() { public String getToolTip() {