Update API documentation
This commit is contained in:
parent
9be753b4df
commit
f342555b8a
3 changed files with 22 additions and 5 deletions
|
@ -238,8 +238,8 @@ public final class LoggerInstance {
|
||||||
/**
|
/**
|
||||||
* Builds a new {@link LoggerInstance} instance.
|
* Builds a new {@link LoggerInstance} instance.
|
||||||
*
|
*
|
||||||
* @return new {@link LoggerInstance}
|
* @return new {@link LoggerInstance} instance
|
||||||
* @throws IllegalStateException if the class or origin is unset
|
* @throws IllegalStateException if {@link #clazz} is unset
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public LoggerInstance build() throws IllegalStateException {
|
public LoggerInstance build() throws IllegalStateException {
|
||||||
|
@ -294,6 +294,7 @@ public final class LoggerInstance {
|
||||||
*
|
*
|
||||||
* @param clazz new class of the issuer
|
* @param clazz new class of the issuer
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see LoggerInstance#clazz
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setClazz(@Nullable Class<?> clazz) {
|
public @NotNull Builder setClazz(@Nullable Class<?> clazz) {
|
||||||
|
@ -306,6 +307,7 @@ public final class LoggerInstance {
|
||||||
*
|
*
|
||||||
* @param origin new origin of the issuer
|
* @param origin new origin of the issuer
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see LoggerInstance#origin
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setOrigin(@Nullable String origin) {
|
public @NotNull Builder setOrigin(@Nullable String origin) {
|
||||||
|
@ -318,6 +320,7 @@ public final class LoggerInstance {
|
||||||
*
|
*
|
||||||
* @param metadata new metadata about the issuer
|
* @param metadata new metadata about the issuer
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see LoggerInstance#metadata
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setMetadata(@Nullable String metadata) {
|
public @NotNull Builder setMetadata(@Nullable String metadata) {
|
||||||
|
|
|
@ -173,8 +173,8 @@ public class DependencyVector {
|
||||||
/**
|
/**
|
||||||
* Builds a new {@link DependencyVector} instance.
|
* Builds a new {@link DependencyVector} instance.
|
||||||
*
|
*
|
||||||
* @return new {@link DependencyVector}
|
* @return new {@link DependencyVector} instance
|
||||||
* @throws IllegalStateException when the identifier, versioning system or version is unset or the version string is invalid
|
* @throws IllegalStateException if {@link #identifier}, {@link #versioningSystem} or {@link #version} is unset or the version string is invalid
|
||||||
* @since v1-alpha4
|
* @since v1-alpha4
|
||||||
*/
|
*/
|
||||||
public @NotNull DependencyVector build() throws IllegalStateException {
|
public @NotNull DependencyVector build() throws IllegalStateException {
|
||||||
|
|
|
@ -736,7 +736,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
/**
|
/**
|
||||||
* Builds a new {@link Window} instance.
|
* Builds a new {@link Window} instance.
|
||||||
*
|
*
|
||||||
* @throws IllegalStateException if the window title, size or position is unset
|
* @throws IllegalStateException if {@link #title}, {@link #size} or {@link #position} is unset
|
||||||
* @throws Exception thrown when creating a new {@link Window} instance fails
|
* @throws Exception thrown when creating a new {@link Window} instance fails
|
||||||
* @return {@link Window} instance
|
* @return {@link Window} instance
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
|
@ -949,6 +949,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param name new window name
|
* @param name new window name
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#name
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setName(@Nullable String name) {
|
public @NotNull Builder setName(@Nullable String name) {
|
||||||
|
@ -961,6 +962,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param title new window title
|
* @param title new window title
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#title
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setTitle(@Nullable String title) {
|
public @NotNull Builder setTitle(@Nullable String title) {
|
||||||
|
@ -973,6 +975,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param size new window size
|
* @param size new window size
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#size
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setSize(@Nullable Vec2i size) {
|
public @NotNull Builder setSize(@Nullable Vec2i size) {
|
||||||
|
@ -985,6 +988,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param minimumSize new minimum window size
|
* @param minimumSize new minimum window size
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#minimumSize
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setMinimumSize(@Nullable Vec2i minimumSize) {
|
public @NotNull Builder setMinimumSize(@Nullable Vec2i minimumSize) {
|
||||||
|
@ -997,6 +1001,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param maximumSize new maximum window size
|
* @param maximumSize new maximum window size
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#maximumSize
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setMaximumSize(@Nullable Vec2i maximumSize) {
|
public @NotNull Builder setMaximumSize(@Nullable Vec2i maximumSize) {
|
||||||
|
@ -1009,6 +1014,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param position new window position
|
* @param position new window position
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#position
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setPosition(@Nullable Vec2i position) {
|
public @NotNull Builder setPosition(@Nullable Vec2i position) {
|
||||||
|
@ -1021,6 +1027,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param windowMode new window mode
|
* @param windowMode new window mode
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#windowMode
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setWindowMode(@Nullable WindowMode windowMode) {
|
public @NotNull Builder setWindowMode(@Nullable WindowMode windowMode) {
|
||||||
|
@ -1033,6 +1040,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param monitor new target monitor
|
* @param monitor new target monitor
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#monitor
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
private synchronized @NotNull Builder setMonitor(@Nullable Monitor monitor) {
|
private synchronized @NotNull Builder setMonitor(@Nullable Monitor monitor) {
|
||||||
|
@ -1045,6 +1053,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param resizable new resizable flag state
|
* @param resizable new resizable flag state
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#resizable
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setResizable(@NotNull Tristate resizable) {
|
public @NotNull Builder setResizable(@NotNull Tristate resizable) {
|
||||||
|
@ -1057,6 +1066,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param borderless new borderless flag state
|
* @param borderless new borderless flag state
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#borderless
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setBorderless(@NotNull Tristate borderless) {
|
public @NotNull Builder setBorderless(@NotNull Tristate borderless) {
|
||||||
|
@ -1069,6 +1079,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param focusable new focusable flag state
|
* @param focusable new focusable flag state
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#focusable
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setFocusable(@NotNull Tristate focusable) {
|
public @NotNull Builder setFocusable(@NotNull Tristate focusable) {
|
||||||
|
@ -1081,6 +1092,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param onTop new on top flag state
|
* @param onTop new on top flag state
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#onTop
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setOnTop(@NotNull Tristate onTop) {
|
public @NotNull Builder setOnTop(@NotNull Tristate onTop) {
|
||||||
|
@ -1093,6 +1105,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param transparent new transparency flag state
|
* @param transparent new transparency flag state
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#transparent
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setTransparent(@NotNull Tristate transparent) {
|
public @NotNull Builder setTransparent(@NotNull Tristate transparent) {
|
||||||
|
@ -1105,6 +1118,7 @@ public abstract class Window implements AutoCloseable {
|
||||||
*
|
*
|
||||||
* @param rendering new rendering flag state
|
* @param rendering new rendering flag state
|
||||||
* @return builder instance
|
* @return builder instance
|
||||||
|
* @see Window#rendering
|
||||||
* @since v1-alpha2
|
* @since v1-alpha2
|
||||||
*/
|
*/
|
||||||
public @NotNull Builder setRendering(@NotNull Tristate rendering) {
|
public @NotNull Builder setRendering(@NotNull Tristate rendering) {
|
||||||
|
|
Loading…
Reference in a new issue