Fix formatting

This commit is contained in:
apriestman 2021-01-05 09:49:42 -05:00
parent f25b1740e5
commit fb645ca719

View File

@ -51,14 +51,17 @@ To make a NetBeans module:
\subsubsection mod_dev_mod_nb_config Configuring the NetBeans Module \subsubsection mod_dev_mod_nb_config Configuring the NetBeans Module
After the module is created, you will need to do some further configuration. After the module is created, you will need to do some further configuration.
- Right click on the newly created module and choose "Properties". <ul>
- You will need to configure the module to be dependent on modules from within the Autopsy platform. Go to the "Libraries" area and choose "Add" in the "Module Dependencies" section. Choose the: <li>Right click on the newly created module and choose "Properties".
-- "Autopsy-core" library to get access to the Autopsy services. <li>You will need to configure the module to be dependent on modules from within the Autopsy platform. Go to the "Libraries" area and choose "Add" in the "Module Dependencies" section. Choose the:
-- NetBeans "Lookup API" library so that your module can be discovered by Autopsy. <ul>
- If you later determine that you need to pull in external JAR files, then you will use the "Wrapped Jar" section to add them in. <li>"Autopsy-Core" library to get access to the Autopsy services.
- Note, you will also need to come back to this section if you update the platform. You may need to add a new dependency for the version of the Autopsy-core that comes with the updated platform. <li>NetBeans "Lookup API" library so that your module can be discovered by Autopsy.
- Autopsy requires that all modules restart Autopsy after they are installed. Configure your module this way under Build -> Packaging. Check the box that says Needs Restart on Install. </ul>
<li>If you later determine that you need to pull in external JAR files, then you will use the "Wrapped Jar" section to add them in.
<li>Note, you will also need to come back to this section if you update the platform. You may need to add a new dependency for the version of the Autopsy-Core that comes with the updated platform.
<li>Autopsy requires that all modules restart Autopsy after they are installed. Configure your module this way under Build -> Packaging. Check the box that says Needs Restart on Install.
</ul>
You now have a NetBeans module that is using Autopsy as its build platform. That means you will have access to all of the services and utilities that Autopsy provides. You now have a NetBeans module that is using Autopsy as its build platform. That means you will have access to all of the services and utilities that Autopsy provides.
@ -76,7 +79,7 @@ For general NetBeans module information, refer to <a href="http://bits.netbeans.
\section mod_dev_aut Creating Autopsy Modules \section mod_dev_aut Creating Autopsy Modules
You can now add Autopsy modules into the NetBeans container module. There are other pages that focus on that and are listed on the main page. The rest of this document contains info that you will eventually want to come back to though. You can now add Autopsy modules into the NetBeans container module. There are other pages that focus on that and are listed on the main page. The rest of this document contains info that you will eventually want to come back to though.
As you will read in the later sections about the different module types, each Autopsy Module is a java class that extends an interface (the interface depends on the type of module). As you will read in the later sections about the different module types, each Autopsy Module is a Java class that extends an interface (the interface depends on the type of module).
\subsection mod_dev_aut_run1 Running Your Module During Development \subsection mod_dev_aut_run1 Running Your Module During Development