Fixed Javadoc
This commit is contained in:
parent
6cbd3133e7
commit
0e5c5370b3
|
@ -65,6 +65,10 @@ subprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.withType<Jar> {
|
||||||
|
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
||||||
|
}
|
||||||
|
|
||||||
configure<SigningExtension> {
|
configure<SigningExtension> {
|
||||||
val signingKey: String? by project
|
val signingKey: String? by project
|
||||||
val signingPassword: String? by project
|
val signingPassword: String? by project
|
||||||
|
|
|
@ -40,8 +40,8 @@ public abstract class PlutoApplication
|
||||||
/**
|
/**
|
||||||
* A set of values used to create a new {@link PlutoApplication}.
|
* A set of values used to create a new {@link PlutoApplication}.
|
||||||
*
|
*
|
||||||
* @implNote The values are as follows:
|
|
||||||
* <table>
|
* <table>
|
||||||
|
* <caption>Configurable options</caption>
|
||||||
* <tr><th><b>Option name</b></th><th><b>Default value</b></th><th><b>Explanation</b></th></tr>
|
* <tr><th><b>Option name</b></th><th><b>Default value</b></th><th><b>Explanation</b></th></tr>
|
||||||
* <tr>
|
* <tr>
|
||||||
* <td><code>coreProfile</code></td>
|
* <td><code>coreProfile</code></td>
|
||||||
|
|
|
@ -7,7 +7,7 @@ import java.util.concurrent.TimeUnit;
|
||||||
* time span {@link String} format and vice versa. Note this action is fully
|
* time span {@link String} format and vice versa. Note this action is fully
|
||||||
* reversible at the cost of losing millisecond precision.
|
* reversible at the cost of losing millisecond precision.
|
||||||
*
|
*
|
||||||
* <h3>MiniTime format specification:</h3>
|
* <h2>MiniTime format specification:</h2>
|
||||||
*
|
*
|
||||||
* <pre>
|
* <pre>
|
||||||
* [Nw][Nd][Nh][Nm][Ns]
|
* [Nw][Nd][Nh][Nm][Ns]
|
||||||
|
|
|
@ -10,7 +10,7 @@ import javax.annotation.Nonnull;
|
||||||
* These methods are prefixed with "store".
|
* These methods are prefixed with "store".
|
||||||
* </em></p>
|
* </em></p>
|
||||||
*
|
*
|
||||||
* @implNote Each of the color components is stored separately as a 32-bit integer
|
* Each of the color components is stored separately as a 32-bit integer
|
||||||
* to avoid unnecessary type conversion at the cost of some memory.
|
* to avoid unnecessary type conversion at the cost of some memory.
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
|
@ -117,12 +117,12 @@ public final class Color
|
||||||
/**
|
/**
|
||||||
* Converts the supplied float-based {@link IRGBA} color object to a new {@link Color} object and returns it.
|
* Converts the supplied float-based {@link IRGBA} color object to a new {@link Color} object and returns it.
|
||||||
*
|
*
|
||||||
|
* Color values are rounded to the nearest integer.
|
||||||
|
*
|
||||||
* @return A new {@link Color} object
|
* @return A new {@link Color} object
|
||||||
*
|
*
|
||||||
* @param colorComponents An {@link IRGBA} color object
|
* @param colorComponents An {@link IRGBA} color object
|
||||||
*
|
*
|
||||||
* @implNote Color values are rounded to the nearest integer.
|
|
||||||
*
|
|
||||||
* @since 20.2.0.0-alpha.3
|
* @since 20.2.0.0-alpha.3
|
||||||
* @author 493msi
|
* @author 493msi
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -12,7 +12,7 @@ import java.lang.annotation.Target;
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Types can opt in to set the {@link ThreadSensitive#localContexts} field to <tt>true</tt>,
|
* Types can opt in to set the {@link ThreadSensitive#localContexts} field to <code>true</code>,
|
||||||
* committing to support per-thread local contexts.
|
* committing to support per-thread local contexts.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
|
@ -25,7 +25,7 @@ import java.lang.annotation.Target;
|
||||||
public @interface ThreadSensitive
|
public @interface ThreadSensitive
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* When <tt>true</tt>, the annotated type commits to support thread-local contexts.
|
* When <code>true</code>, the annotated type commits to support thread-local contexts.
|
||||||
*
|
*
|
||||||
* @since 20.2.0.0-alpha.2
|
* @since 20.2.0.0-alpha.2
|
||||||
* */
|
* */
|
||||||
|
|
|
@ -7,7 +7,7 @@ import java.nio.ByteBuffer;
|
||||||
* A wrapper around a native color buffer for easier handling
|
* A wrapper around a native color buffer for easier handling
|
||||||
* by various APIs, such as OpenGL and GLFW.
|
* by various APIs, such as OpenGL and GLFW.
|
||||||
*
|
*
|
||||||
* @implNote TPNImage is <em>always</em> assumed to be ABGR due to image format
|
* TPNImage is <em>always</em> assumed to be ABGR due to image format
|
||||||
* limitations of {@link BufferedImage}.
|
* limitations of {@link BufferedImage}.
|
||||||
*
|
*
|
||||||
* @author 493msi
|
* @author 493msi
|
||||||
|
|
Loading…
Reference in New Issue