2222 * contents. Configurations files contain the names of classes to create at run-time, the initial model definition,
2323 * including the globe, elevation model and layers, and various control quantities such as cache sizes and data
2424 * retrieval timeouts.
25- * <p/ >
25+ * <p>
2626 * The Configuration class is a singleton, but its instance is not exposed publicly. It is addressed only via static
2727 * methods of the class. It is constructed upon first use of any of its static methods.
28- * <p/ >
28+ * <p>
2929 * When the Configuration class is first instantiated it reads the XML document <code>config/worldwind.xml</code> and
3030 * registers all the information there. The information can subsequently be retrieved via the class' various
3131 * <code>getValue</code> methods. Many WorldWind start-up objects query this information to determine the classes to
3232 * create. For example, the first WorldWind object created by an application is typically a {@link
3333 * gov.nasa.worldwind.awt.WorldWindowGLCanvas}. During construction that class causes WorldWind's internal classes to
3434 * be constructed, using the names of those classes drawn from the Configuration singleton, this class.
35- * <p/ >
35+ * <p>
3636 * The default WorldWind configuration document is <code>config/worldwind.xml</code>. This can be changed by setting
3737 * the Java property <code>gov.nasa.worldwind.config.file</code> to a different file name or a valid URL prior to
3838 * creating any WorldWind object or invoking any static methods of WorldWind classes, including the Configuration
3939 * class. When an application specifies a different configuration location it typically does so in its main method prior
4040 * to using WorldWind. If a file is specified its location must be on the classpath. (The contents of application and
4141 * WorldWind jar files are typically on the classpath, in which case the configuration file may be in the jar file.)
42- * <p/ >
42+ * <p>
4343 * Additionally, an application may set another Java property, <code>gov.nasa.worldwind.app.config.document</code>, to a
4444 * file name or URL whose contents contain configuration values to override those of the primary configuration document.
4545 * WorldWind overrides only those values in this application document, it leaves all others to the value specified in
4646 * the primary document. Applications usually specify an override document in order to specify the initial layers in the
4747 * model.
48- * <p/ >
48+ * <p>
4949 * See <code>config/worldwind.xml</code> for documentation on setting configuration values.
50- * <p/ >
50+ * <p>
5151 * Configuration values can also be set programatically via {@link Configuration#setValue(String, Object)}, but they are
5252 * not retroactive so affect only Configuration queries made subsequent to setting the value.
53- * <p/ >
53+ * <p>
5454 * <em>Note:</em> Prior to September of 2009, configuration properties were read from the file
5555 * <code>config/worldwind.properties</code>. An alternate file could be specified via the
5656 * <code>gov.nasa.worldwind.config.file</code> Java property. These mechanisms remain available but are deprecated.
@@ -381,7 +381,7 @@ public static synchronized Double getDoubleValue(String key)
381381
382382 /**
383383 * Return as a Boolean the value associated with a specified key.
384- * <p/ >
384+ * <p>
385385 * Valid values for true are '1' or anything that starts with 't' or 'T'. ie. 'true', 'True', 't' Valid values for
386386 * false are '0' or anything that starts with 'f' or 'F'. ie. 'false', 'False', 'f'
387387 *
@@ -399,7 +399,7 @@ public static synchronized Boolean getBooleanValue(String key, Boolean defaultVa
399399
400400 /**
401401 * Return as a Boolean the value associated with a specified key.
402- * <p/ >
402+ * <p>
403403 * Valid values for true are '1' or anything that starts with 't' or 'T'. ie. 'true', 'True', 't' Valid values for
404404 * false are '0' or anything that starts with 'f' or 'F'. ie. 'false', 'False', 'f'
405405 *
@@ -502,10 +502,12 @@ public static String getSystemTempDirectory()
502502 * Returns the path to the current user's application data directory. The path returned depends on the operating
503503 * system on which the Java Virtual Machine is running. The following table provides the path for all supported
504504 * operating systems:
505- * <p/>
506- * <table> <tr><th>Operating System</th><th>Path</th></tr> <tr><td>Mac OS X</td><td>~/Library/Application
507- * Support</td></tr> <tr><td>Windows</td><td>~\\Application Data</td></tr> <tr><td>Linux, Unix,
508- * Solaris</td><td>~/</td></tr> </table>
505+ * <table><caption>Returned Paths</caption>
506+ * <tr><th>Operating System</th><th>Path</th></tr>
507+ * <tr><td>Mac OS X</td><td>~/Library/Application Support</td></tr>
508+ * <tr><td>Windows</td><td>~\\Application Data</td></tr>
509+ * <tr><td>Linux, Unix, Solaris</td><td>~/</td></tr>
510+ * </table>
509511 *
510512 * @return the absolute path to the current user's application data directory.
511513 */
@@ -647,9 +649,11 @@ public static float getJavaVersion()
647649 * Returns the highest OpenGL profile available on the current graphics device that is compatible with WorldWind.
648650 * The returned profile favors hardware acceleration over software acceleration. With JOGL version 2.0, this returns
649651 * the highest available profile from the following list:
650- * <p/>
651- * <ul> <li>OpenGL compatibility profile 4.x</li> <li>OpenGL compatibility profile 3.x</li> <li>OpenGL profile 1.x
652- * up to 3.0</li> </ul>
652+ * <ul>
653+ * <li>OpenGL compatibility profile 4.x</li>
654+ * <li>OpenGL compatibility profile 3.x</li>
655+ * <li>OpenGL profile 1.x up to 3.0</li>
656+ * </ul>
653657 *
654658 * @return the highest compatible OpenGL profile.
655659 */
0 commit comments