/** 
 *  The application is a Java-based, text file controlled OWL2 ontology generator
 *  consisting of the following Java classes:
 *  <ul>
 *  <li>  <code>GetSectionsFromConfigFile</code> 
 *  <li>  <code>Individual</code>
 *  <li>  <code>OWL2_Generator</code>
 *  <li>  <code>SharedUtils</code>
 *  <li>  <code>WriteClassAnnotation</code>
 *  <li>  <code>WriteClassStructure</code>
 *  <li>  <code>WriteDisjointClassDefs</code>
 *  <li>  <code>WriteOWLHeader</code>
 *  <li>  <code>WriteTriplets</code>
 *  </ul>
 *  <p>
 *  ___________________________________________________________________
 *  <p>
 *  Hey there,
 *  <p />
 *  Just whipped up some code for an app that builds an OWL/XML-encoded 
 *  ontology based on some Java classes. Figured you might peek at the 
 *  source file (the one with the main(), obviously).
 *  <p />
 *  Here's the lowdown:
 *  <p />
 *  Why OWL/XML from Java? Yeah, that's a fair question. Think about it
 *  this way: creating more than 100 class individuals in Protégé can be 
 *  a real drag, right ? Click, click, click... And then you realize you 
 *  messed up and gotta delete a bunch. Protégé doesn't exactly clean up
 *  its XML after that, leaving you with a bloated mess. This app takes 
 *  care of that, generating nice, clean, and modular OWL/XML-encoded 
 *  sources.
 *  <p />
 *  Handy Helper Classes: These Java classes aren't just one-trick ponies. 
 *  They automate creating different ontology elements and let you build 
 *  bigger ontologies piece by piece. Think of it as Legos for ontologies. 
 *  <p />
 *  Standalone app or Snippet Buffet? I didn't see the point of building a 
 *  standalone Java app anyway. Look, if you find some cool stuff in these 
 *  classes, it's yours. No copyright here (if you want, you can mention  
 *  where you found them :)
 *  <p />
 *  Happy hacking !
 *  <p />
 *  Edit (...and you can find the sources
 *  &lt;a href="https://www.edithlaszny.eu/P2O/" 
 *  target="_blank"&gt;<u>here</u>&lt;/a&gt; :) 
 *
 *  @version 1-001
 *  @since   2024/05/28
 *  @author  Edit Hlaszny (https://www.edithlaszny.eu/ edithlaszny@gmail.com) 
 */ 
module P2OWL2generator 
{
}