Prefix all @since values with 'v'

This commit is contained in:
JeremyStar™ 2024-07-12 02:30:20 +02:00
parent 6cfaf88bca
commit e65c3e2662
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
174 changed files with 726 additions and 726 deletions

View file

@ -55,7 +55,7 @@ import java.util.*;
* It is responsible for the base engine initialization. * It is responsible for the base engine initialization.
* *
* @see EngineConfiguration * @see EngineConfiguration
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@EngineSubsystem @EngineSubsystem
@ -63,13 +63,13 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Contains the class instance. * Contains the class instance.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Returns the class instance. * Returns the class instance.
* *
* @return class instance unless the engine is uninitialized * @return class instance unless the engine is uninitialized
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static Engine instance = null; private static Engine instance = null;
@ -78,7 +78,7 @@ public final class Engine implements SubsystemMainClass {
* Logger instance. * Logger instance.
* *
* @see LoggerInstance * @see LoggerInstance
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings("NotNullFieldNotInitialized") @SuppressWarnings("NotNullFieldNotInitialized")
@NotNull @NotNull
@ -88,14 +88,14 @@ public final class Engine implements SubsystemMainClass {
* Contains a list of all registered subsystems. * Contains a list of all registered subsystems.
* The list is sorted after initialization order. * The list is sorted after initialization order.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns a list of all registered subsystems. * Returns a list of all registered subsystems.
* The list is sorted after initialization order. * The list is sorted after initialization order.
* *
* @return subsystem list * @return subsystem list
* @since 1-alpha1 * @since v1-alpha1
*/ */
@NotNull @NotNull
@Getter @Getter
@ -104,13 +104,13 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Indicates if the engine is shutting down. * Indicates if the engine is shutting down.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns if the engine is shutting down. * Returns if the engine is shutting down.
* *
* @return if the engine is shutting down * @return if the engine is shutting down
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private boolean shuttingDown = false; private boolean shuttingDown = false;
@ -118,7 +118,7 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Initializes the StarOpenSource Engine. * Initializes the StarOpenSource Engine.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public Engine() { public Engine() {
// Only allow one instance // Only allow one instance
@ -164,7 +164,7 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Initializes all classes. * Initializes all classes.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
private void initializeClasses() { private void initializeClasses() {
// Sorted in rough order of dependence // Sorted in rough order of dependence
@ -177,7 +177,7 @@ public final class Engine implements SubsystemMainClass {
* This method populates the Crash Handler's content with the default set of content. * This method populates the Crash Handler's content with the default set of content.
* *
* @see CrashHandler#getCrashContent() * @see CrashHandler#getCrashContent()
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings("ExtractMethodRecommender") @SuppressWarnings("ExtractMethodRecommender")
private void populateCrashContent() { private void populateCrashContent() {
@ -233,7 +233,7 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Precomputes all base engine events. * Precomputes all base engine events.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
private void precomputeEventListeners() { private void precomputeEventListeners() {
// Internal events // Internal events
@ -248,7 +248,7 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Collects all subsystems by their {@link EngineSubsystem} annotation. * Collects all subsystems by their {@link EngineSubsystem} annotation.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
private void collectSubsystems() { private void collectSubsystems() {
ArrayList<@NotNull DependencySubsystemVector> subsystemsMutable = new ArrayList<>(); ArrayList<@NotNull DependencySubsystemVector> subsystemsMutable = new ArrayList<>();
@ -291,7 +291,7 @@ public final class Engine implements SubsystemMainClass {
* Initializes all subsystems. * Initializes all subsystems.
* *
* @throws Exception exceptions thrown by the {@link DependencyResolver} * @throws Exception exceptions thrown by the {@link DependencyResolver}
* @since 1-alpha1 * @since v1-alpha1
*/ */
private void initializeSubsystems() throws Exception { private void initializeSubsystems() throws Exception {
DependencyResolver resolver = new DependencyResolver(); DependencyResolver resolver = new DependencyResolver();
@ -331,7 +331,7 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Starts engine threads. * Starts engine threads.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
public void startThreads() { public void startThreads() {
Logger.startLoggingThread(); Logger.startLoggingThread();
@ -341,7 +341,7 @@ public final class Engine implements SubsystemMainClass {
* Shuts the engine and JVM down. * Shuts the engine and JVM down.
* *
* @param exitCode code to exit with, from 0-255 * @param exitCode code to exit with, from 0-255
* @since 1-alpha0 * @since v1-alpha0
*/ */
public synchronized void shutdown(@Range(from = 0, to = 255) int exitCode) { public synchronized void shutdown(@Range(from = 0, to = 255) int exitCode) {
logger.info("Shutting engine down"); logger.info("Shutting engine down");
@ -366,7 +366,7 @@ public final class Engine implements SubsystemMainClass {
* Returns the {@link DependencyVector} for this subsystem. * Returns the {@link DependencyVector} for this subsystem.
* *
* @see DependencyVector * @see DependencyVector
* @since 1-alpha1 * @since v1-alpha1
*/ */
@NotNull @NotNull
@Override @Override
@ -377,7 +377,7 @@ public final class Engine implements SubsystemMainClass {
/** /**
* Shuts the engine and JVM down. * Shuts the engine and JVM down.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public synchronized void shutdown() { public synchronized void shutdown() {
shutdown(0); shutdown(0);

View file

@ -46,7 +46,7 @@ import java.util.Properties;
* or have an inconsistent naming scheme. Containing settings as variables in * or have an inconsistent naming scheme. Containing settings as variables in
* one centralized place mitigates this. * one centralized place mitigates this.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -54,13 +54,13 @@ public final class EngineConfiguration implements SubsystemConfiguration {
/** /**
* Contains the class instance. * Contains the class instance.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Returns the class instance. * Returns the class instance.
* *
* @return class instance unless {@link Engine} is uninitialized * @return class instance unless {@link Engine} is uninitialized
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static EngineConfiguration instance; private static EngineConfiguration instance;
@ -68,13 +68,13 @@ public final class EngineConfiguration implements SubsystemConfiguration {
/** /**
* Defines the group every property must start with to be recognized as a subsystem configuration setting. * Defines the group every property must start with to be recognized as a subsystem configuration setting.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Returns the group that every property must start with to be recognized as a subsystem configuration setting. * Returns the group that every property must start with to be recognized as a subsystem configuration setting.
* *
* @return property group * @return property group
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
@Getter @Getter
@ -84,14 +84,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* If enabled, allows for unintentional behaviour and excess logging.<br/> * If enabled, allows for unintentional behaviour and excess logging.<br/>
* Unless you want to debug or work on a sensitive part of the engine, don't enable this! * Unless you want to debug or work on a sensitive part of the engine, don't enable this!
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code debug}. * Gets the value for {@code debug}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#debug * @see EngineConfiguration#debug
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean debug; private boolean debug;
@ -99,14 +99,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* If enabled, all called events will be logged. * If enabled, all called events will be logged.
* *
* @see de.staropensource.sosengine.base.classes.helpers.EventHelper#logCall(Class, Object...) * @see de.staropensource.sosengine.base.classes.helpers.EventHelper#logCall(Class, Object...)
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code debugEvents}. * Gets the value for {@code debugEvents}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#debugEvents * @see EngineConfiguration#debugEvents
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean debugEvents; private boolean debugEvents;
@ -115,14 +115,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* Don't enable unless you want to work on it. * Don't enable unless you want to work on it.
* *
* @see AnsiShortcodeConverter * @see AnsiShortcodeConverter
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code debugShortcodeConverter}. * Gets the value for {@code debugShortcodeConverter}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#debugShortcodeConverter * @see EngineConfiguration#debugShortcodeConverter
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean debugShortcodeConverter; private boolean debugShortcodeConverter;
@ -132,14 +132,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* *
* @see AnsiShortcodeConverter * @see AnsiShortcodeConverter
* @see EngineConfiguration#loggerLevel * @see EngineConfiguration#loggerLevel
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code errorShortcodeConverter}. * Gets the value for {@code errorShortcodeConverter}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#errorShortcodeConverter * @see EngineConfiguration#errorShortcodeConverter
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean errorShortcodeConverter; private boolean errorShortcodeConverter;
@ -147,14 +147,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* Determines which logger levels are allowed by setting the minimum logger level. * Determines which logger levels are allowed by setting the minimum logger level.
* *
* @see Logger * @see Logger
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code loggerLevel}. * Gets the value for {@code loggerLevel}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#loggerLevel * @see EngineConfiguration#loggerLevel
* @since 1-alpha0 * @since v1-alpha0
*/ */
private LogLevel loggerLevel; private LogLevel loggerLevel;
@ -162,14 +162,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* Contains the logging template used for creating log messages. * Contains the logging template used for creating log messages.
* *
* @see Logger * @see Logger
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code loggerTemplate} * Gets the value for {@code loggerTemplate}
* *
* @return variable value * @return variable value
* @see EngineConfiguration#loggerTemplate * @see EngineConfiguration#loggerTemplate
* @since 1-alpha0 * @since v1-alpha0
*/ */
private String loggerTemplate; private String loggerTemplate;
@ -178,14 +178,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* Note: This will also prevent Jansi and potentially other libraries from removing temporary native libraries at shutdown. * Note: This will also prevent Jansi and potentially other libraries from removing temporary native libraries at shutdown.
* *
* @see CrashHandler * @see CrashHandler
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code loggerImmediateShutdown}. * Gets the value for {@code loggerImmediateShutdown}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#loggerImmediateShutdown * @see EngineConfiguration#loggerImmediateShutdown
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean loggerImmediateShutdown; private boolean loggerImmediateShutdown;
@ -193,14 +193,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* If enabled, will force the {@link Logger} and {@link CrashHandler} to use <a href="https://www.man7.org/linux/man-pages/man3/stderr.3.html">the standard output</a> * If enabled, will force the {@link Logger} and {@link CrashHandler} to use <a href="https://www.man7.org/linux/man-pages/man3/stderr.3.html">the standard output</a>
* instead of <a href="https://www.man7.org/linux/man-pages/man3/stderr.3.html">the standard error</a> for logging {@code ERROR} and {@code CRASH}. * instead of <a href="https://www.man7.org/linux/man-pages/man3/stderr.3.html">the standard error</a> for logging {@code ERROR} and {@code CRASH}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code loggerForceStandardOutput}. * Gets the value for {@code loggerForceStandardOutput}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#loggerForceStandardOutput * @see EngineConfiguration#loggerForceStandardOutput
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean loggerForceStandardOutput; private boolean loggerForceStandardOutput;
@ -209,14 +209,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* Only applies if {@code optimizeLogging} is turned on. * Only applies if {@code optimizeLogging} is turned on.
* *
* @see EngineConfiguration#optimizeLogging * @see EngineConfiguration#optimizeLogging
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code loggerForceStandardOutput}. * Gets the value for {@code loggerForceStandardOutput}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#loggerForceStandardOutput * @see EngineConfiguration#loggerForceStandardOutput
* @since 1-alpha1 * @since v1-alpha1
*/ */
private int loggerPollingSpeed; private int loggerPollingSpeed;
@ -226,14 +226,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* *
* @see EngineConfiguration#loggerPollingSpeed * @see EngineConfiguration#loggerPollingSpeed
* @see Thread * @see Thread
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code optimizeLogging}. * Gets the value for {@code optimizeLogging}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#optimizeLogging * @see EngineConfiguration#optimizeLogging
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean optimizeLogging; private boolean optimizeLogging;
@ -242,14 +242,14 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* Don't disable unless you want your application to run slower. * Don't disable unless you want your application to run slower.
* *
* @see VirtualThread * @see VirtualThread
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Gets the value for {@code optimizeEvents}. * Gets the value for {@code optimizeEvents}.
* *
* @return variable value * @return variable value
* @see EngineConfiguration#optimizeEvents * @see EngineConfiguration#optimizeEvents
* @since 1-alpha0 * @since v1-alpha0
*/ */
private boolean optimizeEvents; private boolean optimizeEvents;
@ -257,7 +257,7 @@ public final class EngineConfiguration implements SubsystemConfiguration {
* Constructs this class. * Constructs this class.
* *
* @see Engine * @see Engine
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineConfiguration() { public EngineConfiguration() {
// Only allow one instance // Only allow one instance
@ -389,7 +389,7 @@ public final class EngineConfiguration implements SubsystemConfiguration {
/** /**
* Clears {@code instance}. Used in unit tests. * Clears {@code instance}. Used in unit tests.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
private static void clearInstance() { private static void clearInstance() {
instance = null; instance = null;

View file

@ -24,7 +24,7 @@ import java.lang.annotation.*;
/** /**
* This annotation marks a class as a subsystem main class. * This annotation marks a class as a subsystem main class.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings("unused") @SuppressWarnings("unused")
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)

View file

@ -28,7 +28,7 @@ import java.lang.annotation.*;
/** /**
* This annotation allows methods to listen on certain events. * This annotation allows methods to listen on certain events.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings("unused") @SuppressWarnings("unused")
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)

View file

@ -21,6 +21,6 @@
* Contains annotations that are used by the engine * Contains annotations that are used by the engine
* to dynamically invoke methods or register classes. * to dynamically invoke methods or register classes.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.annotations; package de.staropensource.sosengine.base.annotations;

View file

@ -22,7 +22,7 @@ package de.staropensource.sosengine.base.classes;
/** /**
* Represents an event. * Represents an event.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public interface Event { public interface Event {

View file

@ -27,7 +27,7 @@ import org.jetbrains.annotations.NotNull;
* Interface for implementing custom logger implementations, called by {@link de.staropensource.sosengine.base.logging.Logger}. * Interface for implementing custom logger implementations, called by {@link de.staropensource.sosengine.base.logging.Logger}.
* *
* @see de.staropensource.sosengine.base.logging.Logger * @see de.staropensource.sosengine.base.logging.Logger
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public interface LoggerImpl { public interface LoggerImpl {
@ -38,7 +38,7 @@ public interface LoggerImpl {
* @param logIssuer log issuer * @param logIssuer log issuer
* @param message log message * @param message log message
* @return new log message * @return new log message
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
String prePlaceholder(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String message); String prePlaceholder(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String message);
@ -50,7 +50,7 @@ public interface LoggerImpl {
* @param logIssuer log issuer * @param logIssuer log issuer
* @param format log format * @param format log format
* @return new log format * @return new log format
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
String postPlaceholder(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String format); String postPlaceholder(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String format);
@ -61,7 +61,7 @@ public interface LoggerImpl {
* @param level log level * @param level log level
* @param logIssuer log issuer * @param logIssuer log issuer
* @param format finalized log format * @param format finalized log format
* @since 1-alpha0 * @since v1-alpha0
*/ */
void print(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String format); void print(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String format);
} }

View file

@ -26,7 +26,7 @@ import org.jetbrains.annotations.NotNull;
* Interface for implementing placeholders. * Interface for implementing placeholders.
* *
* @see PlaceholderEngine * @see PlaceholderEngine
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public interface Placeholder { public interface Placeholder {
@ -34,7 +34,7 @@ public interface Placeholder {
* Returns the placeholder's name. * Returns the placeholder's name.
* *
* @return the placeholder name * @return the placeholder name
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
String getName(); String getName();
@ -44,7 +44,7 @@ public interface Placeholder {
* *
* @param text text to process * @param text text to process
* @return the processed text * @return the processed text
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
String replace(@NotNull String text); String replace(@NotNull String text);

View file

@ -46,7 +46,7 @@ import java.util.List;
* <li>negative</li> * <li>negative</li>
* </ul> * </ul>
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
public abstract class ShortcodeParserSkeleton { public abstract class ShortcodeParserSkeleton {
@ -54,20 +54,20 @@ public abstract class ShortcodeParserSkeleton {
* Logger instance. * Logger instance.
* *
* @see LoggerInstance * @see LoggerInstance
* @since 1-alpha1 * @since v1-alpha1
*/ */
protected final LoggerInstance logger = new LoggerInstance(new LogIssuer(getClass(), CodePart.ENGINE)); protected final LoggerInstance logger = new LoggerInstance(new LogIssuer(getClass(), CodePart.ENGINE));
/** /**
* A list of components the parsed string is made out of. * A list of components the parsed string is made out of.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns a list of components the parsed string is made out of. * Returns a list of components the parsed string is made out of.
* *
* @return component list of the parsed string * @return component list of the parsed string
* @since 1-alpha1 * @since v1-alpha1
*/ */
@NotNull @NotNull
@Getter @Getter
@ -77,7 +77,7 @@ public abstract class ShortcodeParserSkeleton {
* Constructs this class. * Constructs this class.
* *
* @param string string to parse * @param string string to parse
* @since 1-alpha1 * @since v1-alpha1
*/ */
public ShortcodeParserSkeleton(@NotNull String string) { public ShortcodeParserSkeleton(@NotNull String string) {
components = parse(string); components = parse(string);
@ -89,7 +89,7 @@ public abstract class ShortcodeParserSkeleton {
* @param string string to parse * @param string string to parse
* @return list of components * @return list of components
* @see EngineConfiguration#errorShortcodeConverter * @see EngineConfiguration#errorShortcodeConverter
* @since 1-alpha1 * @since v1-alpha1
*/ */
@NotNull @NotNull
private List<@NotNull String> parse(@NotNull String string) { private List<@NotNull String> parse(@NotNull String string) {

View file

@ -26,21 +26,21 @@ import java.util.Properties;
/** /**
* Base class for subsystem configurations. * Base class for subsystem configurations.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public interface SubsystemConfiguration { public interface SubsystemConfiguration {
/** /**
* Contains the class instance. * Contains the class instance.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
SubsystemConfiguration instance = null; SubsystemConfiguration instance = null;
/** /**
* Defines the group every property must start with to be recognized as a subsystem configuration setting. * Defines the group every property must start with to be recognized as a subsystem configuration setting.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
String group = "sosengine."; String group = "sosengine.";
@ -51,7 +51,7 @@ public interface SubsystemConfiguration {
* *
* @param properties {@link Properties} object * @param properties {@link Properties} object
* @see SubsystemConfiguration#loadDefaultConfiguration() * @see SubsystemConfiguration#loadDefaultConfiguration()
* @since 1-alpha0 * @since v1-alpha0
*/ */
void loadConfiguration(@NotNull Properties properties); void loadConfiguration(@NotNull Properties properties);
@ -60,7 +60,7 @@ public interface SubsystemConfiguration {
* *
* @see SubsystemConfiguration#loadConfiguration(Properties) * @see SubsystemConfiguration#loadConfiguration(Properties)
* @see System#getProperties() * @see System#getProperties()
* @since 1-alpha0 * @since v1-alpha0
*/ */
void loadConfiguration(); void loadConfiguration();
@ -69,7 +69,7 @@ public interface SubsystemConfiguration {
* *
* @see SubsystemConfiguration#loadConfiguration() * @see SubsystemConfiguration#loadConfiguration()
* @see SubsystemConfiguration#loadConfiguration(Properties) * @see SubsystemConfiguration#loadConfiguration(Properties)
* @since 1-alpha0 * @since v1-alpha0
*/ */
void loadDefaultConfiguration(); void loadDefaultConfiguration();

View file

@ -29,7 +29,7 @@ import org.jetbrains.annotations.NotNull;
/** /**
* The interface for engine subsystem main classes. * The interface for engine subsystem main classes.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public interface SubsystemMainClass { public interface SubsystemMainClass {
@ -37,14 +37,14 @@ public interface SubsystemMainClass {
* Logger instance. * Logger instance.
* *
* @see LoggerInstance * @see LoggerInstance
* @since 1-alpha0 * @since v1-alpha0
*/ */
LoggerInstance logger = null; LoggerInstance logger = null;
/** /**
* Initializes this subsystem. * Initializes this subsystem.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
void initializeSubsystem(); void initializeSubsystem();
@ -52,7 +52,7 @@ public interface SubsystemMainClass {
* Returns the {@link DependencyVector} for this subsystem. * Returns the {@link DependencyVector} for this subsystem.
* *
* @return {@link DependencyVector} for this subsystem * @return {@link DependencyVector} for this subsystem
* @since 1-alpha1 * @since v1-alpha1
* @see DependencyVector * @see DependencyVector
*/ */
@NotNull @NotNull
@ -63,7 +63,7 @@ public interface SubsystemMainClass {
* *
* @see Engine#shutdown() * @see Engine#shutdown()
* @see Engine#shutdown(int) * @see Engine#shutdown(int)
* @since 1-alpha0 * @since v1-alpha0
*/ */
@EventListener(event = InternalEngineShutdownEvent.class) @EventListener(event = InternalEngineShutdownEvent.class)
static void shutdown() {} static void shutdown() {}

View file

@ -26,7 +26,7 @@ import org.jetbrains.annotations.Range;
/** /**
* An interface used for implementing different versioning systems. * An interface used for implementing different versioning systems.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public interface VersioningSystem { public interface VersioningSystem {
@ -34,7 +34,7 @@ public interface VersioningSystem {
* Returns the name of this versioning system. * Returns the name of this versioning system.
* *
* @return name of this versioning system * @return name of this versioning system
* @since 1-alpha1 * @since v1-alpha1
*/ */
@NotNull @NotNull
String getName(); String getName();
@ -45,7 +45,7 @@ public interface VersioningSystem {
* @param version the version to compare against * @param version the version to compare against
* @return smaller = {@code 0}, equal = {@code 1}, bigger = {@code 2} * @return smaller = {@code 0}, equal = {@code 1}, bigger = {@code 2}
* @throws IncompatibleVersioningSystemException when this versioning system does not support comparing with another versioning system * @throws IncompatibleVersioningSystemException when this versioning system does not support comparing with another versioning system
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Range(from = 0, to = 2) @Range(from = 0, to = 2)
int compare(@NotNull VersioningSystem version) throws IncompatibleVersioningSystemException; int compare(@NotNull VersioningSystem version) throws IncompatibleVersioningSystemException;

View file

@ -43,7 +43,7 @@ import java.util.Set;
/** /**
* Represents an event. * Represents an event.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
@ -51,7 +51,7 @@ public class EventHelper {
/** /**
* Contains all cached event listeners. * Contains all cached event listeners.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
private static final HashMap<@NotNull Class<? extends Event>, LinkedList<@NotNull Method>> cachedEventListeners = new HashMap<>(); private static final HashMap<@NotNull Class<? extends Event>, LinkedList<@NotNull Method>> cachedEventListeners = new HashMap<>();
@ -65,7 +65,7 @@ public class EventHelper {
* *
* @param clazz event class * @param clazz event class
* @param arguments arguments passed to event listeners * @param arguments arguments passed to event listeners
* @since 1-alpha0 * @since v1-alpha0
*/ */
public static void logCall(@NotNull Class<? extends Event> clazz, @NotNull Object ... arguments) { public static void logCall(@NotNull Class<? extends Event> clazz, @NotNull Object ... arguments) {
// Print event call if event debugging is enabled // Print event call if event debugging is enabled
@ -82,7 +82,7 @@ public class EventHelper {
* @param clazz event class * @param clazz event class
* @param forceScanning forces the method to ignore cached event listeners, not recommended * @param forceScanning forces the method to ignore cached event listeners, not recommended
* @return list of annotated methods * @return list of annotated methods
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
public static LinkedList<Method> getAnnotatedMethods(@NotNull Class<? extends Event> clazz, boolean forceScanning) { public static LinkedList<Method> getAnnotatedMethods(@NotNull Class<? extends Event> clazz, boolean forceScanning) {
@ -119,7 +119,7 @@ public class EventHelper {
* *
* @param clazz event class * @param clazz event class
* @return list of annotated methods * @return list of annotated methods
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
public static LinkedList<Method> getAnnotatedMethods(@NotNull Class<? extends Event> clazz) { public static LinkedList<Method> getAnnotatedMethods(@NotNull Class<? extends Event> clazz) {
@ -130,7 +130,7 @@ public class EventHelper {
* Invokes all matching event listeners without any arguments. * Invokes all matching event listeners without any arguments.
* *
* @param clazz event class * @param clazz event class
* @since 1-alpha0 * @since v1-alpha0
*/ */
public static void invokeAnnotatedMethods(@NotNull Class<? extends Event> clazz) { public static void invokeAnnotatedMethods(@NotNull Class<? extends Event> clazz) {
Runnable eventCode = () -> { Runnable eventCode = () -> {
@ -156,7 +156,7 @@ public class EventHelper {
* Will recompute all event listeners if the specified event is already cached. * Will recompute all event listeners if the specified event is already cached.
* *
* @param clazz event listeners to (p)recompute, set to {@code null} to recompute all cached events * @param clazz event listeners to (p)recompute, set to {@code null} to recompute all cached events
* @since 1-alpha0 * @since v1-alpha0
*/ */
public static synchronized void precomputeEventListeners(@Nullable Class<? extends Event> clazz) { public static synchronized void precomputeEventListeners(@Nullable Class<? extends Event> clazz) {
if (clazz == null) if (clazz == null)
@ -176,7 +176,7 @@ public class EventHelper {
* Removes events from the event listener cache. * Removes events from the event listener cache.
* *
* @param clazz event class to remove cached event listeners for or {@code null} to remove all cached event listeners * @param clazz event class to remove cached event listeners for or {@code null} to remove all cached event listeners
* @since 1-alpha0 * @since v1-alpha0
*/ */
public static synchronized void removePrecomputedEventListeners(@Nullable Class<? extends Event> clazz) { public static synchronized void removePrecomputedEventListeners(@Nullable Class<? extends Event> clazz) {
if (clazz == null) if (clazz == null)

View file

@ -21,6 +21,6 @@
* Not necessarily interfaces or extendable classes. Rather, they * Not necessarily interfaces or extendable classes. Rather, they
* support implementing classes by providing useful or complex code. * support implementing classes by providing useful or complex code.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.classes.helpers; package de.staropensource.sosengine.base.classes.helpers;

View file

@ -20,6 +20,6 @@
/** /**
* Contains various interfaces and abstract classes. * Contains various interfaces and abstract classes.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.classes; package de.staropensource.sosengine.base.classes;

View file

@ -45,13 +45,13 @@ public final class EngineInformation {
/** /**
* Provides the engine's version. * Provides the engine's version.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the engine's version. * Provides the engine's version.
* *
* @return engine version * @return engine version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static int versioningVersion; private static int versioningVersion;
@ -59,13 +59,13 @@ public final class EngineInformation {
/** /**
* Provides the engine's version type. * Provides the engine's version type.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the engine's version type. * Provides the engine's version type.
* *
* @return engine version type * @return engine version type
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static VersionType versioningType; private static VersionType versioningType;
@ -73,13 +73,13 @@ public final class EngineInformation {
/** /**
* Provides the engine's type release. * Provides the engine's type release.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the engine's type release. * Provides the engine's type release.
* *
* @return engine type release * @return engine type release
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static int versioningTyperelease; private static int versioningTyperelease;
@ -88,14 +88,14 @@ public final class EngineInformation {
* Provides the engine's fork identifier.<br/> * Provides the engine's fork identifier.<br/>
* Likely empty. If not, it must be prefixed with a dash. * Likely empty. If not, it must be prefixed with a dash.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the engine's fork identifier.<br/> * Provides the engine's fork identifier.<br/>
* Likely empty. If not, it must be prefixed with a dash. * Likely empty. If not, it must be prefixed with a dash.
* *
* @return engine fork identifier * @return engine fork identifier
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String versioningFork; private static String versioningFork;
@ -103,13 +103,13 @@ public final class EngineInformation {
/** /**
* Provides the engine's full version string. * Provides the engine's full version string.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the engine's full version string. * Provides the engine's full version string.
* *
* @return engine version string * @return engine version string
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static String versioningString; private static String versioningString;
@ -118,13 +118,13 @@ public final class EngineInformation {
/** /**
* Provides the {@code dirty} value (i.e. if the source tree has been modified). * Provides the {@code dirty} value (i.e. if the source tree has been modified).
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the {@code dirty} value (i.e. if the source tree has been modified). * Provides the {@code dirty} value (i.e. if the source tree has been modified).
* *
* @return git dirty value * @return git dirty value
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static Boolean gitDirty; private static Boolean gitDirty;
@ -132,13 +132,13 @@ public final class EngineInformation {
/** /**
* Provides the branch the engine was built on. * Provides the branch the engine was built on.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the branch the engine was built on. * Provides the branch the engine was built on.
* *
* @return git branch * @return git branch
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static String gitBranch; private static String gitBranch;
@ -146,13 +146,13 @@ public final class EngineInformation {
/** /**
* Provides the commit count. * Provides the commit count.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the commit count. * Provides the commit count.
* *
* @return git commit count * @return git commit count
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static int gitCommitCount; private static int gitCommitCount;
@ -160,13 +160,13 @@ public final class EngineInformation {
/** /**
* Provides the commit identifier (short form). * Provides the commit identifier (short form).
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the commit identifier (short form). * Provides the commit identifier (short form).
* *
* @return git long commit id * @return git long commit id
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static String gitCommitIdentifierShort; private static String gitCommitIdentifierShort;
@ -174,13 +174,13 @@ public final class EngineInformation {
/** /**
* Provides the commit identifier (long form). * Provides the commit identifier (long form).
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the commit identifier (long form). * Provides the commit identifier (long form).
* *
* @return git long commit id * @return git long commit id
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static String gitCommitIdentifierLong; private static String gitCommitIdentifierLong;
@ -188,13 +188,13 @@ public final class EngineInformation {
/** /**
* Provides the commit header. * Provides the commit header.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the commit header. * Provides the commit header.
* *
* @return git commit header * @return git commit header
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static String gitCommitHeader; private static String gitCommitHeader;
@ -202,13 +202,13 @@ public final class EngineInformation {
/** /**
* Provides the commit time. * Provides the commit time.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the commit time. * Provides the commit time.
* *
* @return git commit time * @return git commit time
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static ZonedDateTime gitCommitTime; private static ZonedDateTime gitCommitTime;
@ -216,13 +216,13 @@ public final class EngineInformation {
/** /**
* Provides the commiter's name. * Provides the commiter's name.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the commiter's name. * Provides the commiter's name.
* *
* @return git committer name * @return git committer name
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static String gitCommitterName; private static String gitCommitterName;
@ -230,13 +230,13 @@ public final class EngineInformation {
/** /**
* Provides the commiter's email. * Provides the commiter's email.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Provides the commiter's email. * Provides the commiter's email.
* *
* @return git committer email * @return git committer email
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
private static String gitCommitterEmail; private static String gitCommitterEmail;
@ -245,13 +245,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the dependency {@code Lombok}. * Provides the version of the dependency {@code Lombok}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the dependency {@code Lombok}. * Provides the version of the dependency {@code Lombok}.
* *
* @return Lombok dependency version * @return Lombok dependency version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String dependencyLombok; private static String dependencyLombok;
@ -259,13 +259,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the dependency {@code Jetbrains Annotations}. * Provides the version of the dependency {@code Jetbrains Annotations}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the dependency {@code Jetbrains Annotations}. * Provides the version of the dependency {@code Jetbrains Annotations}.
* *
* @return Jetbrains Annotations dependency version * @return Jetbrains Annotations dependency version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String dependencyJetbrainsAnnotations; private static String dependencyJetbrainsAnnotations;
@ -273,13 +273,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the dependency {@code Jansi}. * Provides the version of the dependency {@code Jansi}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the dependency {@code Jansi}. * Provides the version of the dependency {@code Jansi}.
* *
* @return Jansi dependency version * @return Jansi dependency version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String dependencyJansi; private static String dependencyJansi;
@ -287,13 +287,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the dependency {@code Reflections}. * Provides the version of the dependency {@code Reflections}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the dependency {@code Reflections}. * Provides the version of the dependency {@code Reflections}.
* *
* @return Reflections dependency version * @return Reflections dependency version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String dependencyReflections; private static String dependencyReflections;
@ -301,13 +301,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the dependency {@code SLF4J}. * Provides the version of the dependency {@code SLF4J}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the dependency {@code SLF4J}. * Provides the version of the dependency {@code SLF4J}.
* *
* @return SLF4J dependency version * @return SLF4J dependency version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String dependencySlf4j; private static String dependencySlf4j;
@ -315,13 +315,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the dependency {@code LWJGL}. * Provides the version of the dependency {@code LWJGL}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the dependency {@code LWJGL}. * Provides the version of the dependency {@code LWJGL}.
* *
* @return LWJGL dependency version * @return LWJGL dependency version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String dependencyLwjgl; private static String dependencyLwjgl;
@ -329,13 +329,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the Gradle plugin {@code Shadow}. * Provides the version of the Gradle plugin {@code Shadow}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the Gradle plugin {@code Shadow}. * Provides the version of the Gradle plugin {@code Shadow}.
* *
* @return Shadow plugin version * @return Shadow plugin version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String pluginShadow; private static String pluginShadow;
@ -343,13 +343,13 @@ public final class EngineInformation {
/** /**
* Provides the version of the Gradle plugin {@code Lombok}. * Provides the version of the Gradle plugin {@code Lombok}.
* *
* @since 1-alpha0 * @since v1-alpha0
* *
* -- GETTER -- * -- GETTER --
* Provides the version of the Gradle plugin {@code Lombok}. * Provides the version of the Gradle plugin {@code Lombok}.
* *
* @return Lombok plugin version * @return Lombok plugin version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Getter @Getter
private static String pluginLombok; private static String pluginLombok;
@ -357,14 +357,14 @@ public final class EngineInformation {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineInformation() {} public EngineInformation() {}
/** /**
* Updates all variables. * Updates all variables.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static synchronized void updateVariables() { public static synchronized void updateVariables() {
LoggerInstance logger = new LoggerInstance(new LogIssuer(EngineInformation.class, CodePart.ENGINE)); LoggerInstance logger = new LoggerInstance(new LogIssuer(EngineInformation.class, CodePart.ENGINE));

View file

@ -36,7 +36,7 @@ public final class JvmInformation {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public JvmInformation() {} public JvmInformation() {}
@ -45,7 +45,7 @@ public final class JvmInformation {
* *
* @return the Java version * @return the Java version
* @throws NumberFormatException if the version could not be converted into an int * @throws NumberFormatException if the version could not be converted into an int
* @since 1-alpha0 * @since v1-alpha0
*/ */
public static int getJavaVersion() throws NumberFormatException { public static int getJavaVersion() throws NumberFormatException {
String version = System.getProperty("java.version"); String version = System.getProperty("java.version");
@ -69,7 +69,7 @@ public final class JvmInformation {
* Returns the JVM implementation name. * Returns the JVM implementation name.
* *
* @return the JVM implementation name * @return the JVM implementation name
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
public static String getImplementationName() { public static String getImplementationName() {
@ -80,7 +80,7 @@ public final class JvmInformation {
* Returns the JVM implementation version. * Returns the JVM implementation version.
* *
* @return the JVM implementation version * @return the JVM implementation version
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
public static String getImplementationVersion() { public static String getImplementationVersion() {
@ -91,7 +91,7 @@ public final class JvmInformation {
* Returns the JVM implementation vendor. * Returns the JVM implementation vendor.
* *
* @return the JVM implementation vendor * @return the JVM implementation vendor
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
public static String getImplementationVendor() { public static String getImplementationVendor() {
@ -102,7 +102,7 @@ public final class JvmInformation {
* Returns the uptime of the JVM. * Returns the uptime of the JVM.
* *
* @return uptime in milliseconds * @return uptime in milliseconds
* @since 1-alpha0 * @since v1-alpha0
*/ */
public static long getUptime() { public static long getUptime() {
return ManagementFactory.getRuntimeMXBean().getUptime(); return ManagementFactory.getRuntimeMXBean().getUptime();
@ -112,7 +112,7 @@ public final class JvmInformation {
* Returns the arguments passed to the JVM (not to the running program). * Returns the arguments passed to the JVM (not to the running program).
* *
* @return the JVM arguments * @return the JVM arguments
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
public static List<@NotNull String> getArguments() { public static List<@NotNull String> getArguments() {
@ -125,7 +125,7 @@ public final class JvmInformation {
* Note: This is an estimate. * Note: This is an estimate.
* *
* @return estimated total amount of used memory * @return estimated total amount of used memory
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static long getMemoryTotal() { public static long getMemoryTotal() {
return Runtime.getRuntime().totalMemory(); return Runtime.getRuntime().totalMemory();
@ -135,7 +135,7 @@ public final class JvmInformation {
* Returns the maximum amount of memory usable by the running application. * Returns the maximum amount of memory usable by the running application.
* *
* @return maximum amount of usable memory * @return maximum amount of usable memory
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static long getMemoryMax() { public static long getMemoryMax() {
return Runtime.getRuntime().maxMemory(); return Runtime.getRuntime().maxMemory();
@ -145,7 +145,7 @@ public final class JvmInformation {
* Returns the amount of free memory available to the running application. * Returns the amount of free memory available to the running application.
* *
* @return amount of free memory * @return amount of free memory
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static long getMemoryFree() { public static long getMemoryFree() {
return Runtime.getRuntime().freeMemory(); return Runtime.getRuntime().freeMemory();
@ -155,7 +155,7 @@ public final class JvmInformation {
* Returns the amount of memory used by the running application. * Returns the amount of memory used by the running application.
* *
* @return amount of used memory * @return amount of used memory
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static long getMemoryUsed() { public static long getMemoryUsed() {
return getMemoryMax() - getMemoryFree(); return getMemoryMax() - getMemoryFree();
@ -165,7 +165,7 @@ public final class JvmInformation {
* Returns the memory usage of the heap. * Returns the memory usage of the heap.
* *
* @return heap usage * @return heap usage
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static MemoryUsage getMemoryHeap() { public static MemoryUsage getMemoryHeap() {
return ManagementFactory.getMemoryMXBean().getHeapMemoryUsage(); return ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
@ -175,7 +175,7 @@ public final class JvmInformation {
* Returns the memory usage of the stack. * Returns the memory usage of the stack.
* *
* @return stack usage * @return stack usage
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static MemoryUsage getMemoryStack() { public static MemoryUsage getMemoryStack() {
return ManagementFactory.getMemoryMXBean().getNonHeapMemoryUsage(); return ManagementFactory.getMemoryMXBean().getNonHeapMemoryUsage();
@ -190,7 +190,7 @@ public final class JvmInformation {
* resources accordingly. * resources accordingly.
* *
* @return amount of available processors * @return amount of available processors
* @since 1-alpha1 * @since v1-alpha1
*/ */
public static int getAvailableProcessors() { public static int getAvailableProcessors() {
return Runtime.getRuntime().availableProcessors(); return Runtime.getRuntime().availableProcessors();

View file

@ -20,6 +20,6 @@
/** /**
* Provides various classes that can be used to retrieve information about the engine or JVM. * Provides various classes that can be used to retrieve information about the engine or JVM.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.data.info; package de.staropensource.sosengine.base.data.info;

View file

@ -20,6 +20,6 @@
/** /**
* Contains various packages with tiny classes that provide or process information. * Contains various packages with tiny classes that provide or process information.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.data; package de.staropensource.sosengine.base.data;

View file

@ -30,7 +30,7 @@ import org.jetbrains.annotations.Range;
/** /**
* Represents a four-numbered versioning system, where an application or work is versioning by four arbitrary numbers. * Represents a four-numbered versioning system, where an application or work is versioning by four arbitrary numbers.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -38,52 +38,52 @@ public final class FourNumberVersioningSystem implements VersioningSystem {
/** /**
* Contains the 1. number vector. * Contains the 1. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 1. number vector. * Returns the 1. number vector.
* *
* @return 1. number vector * @return 1. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number1; private final int number1;
/** /**
* Contains the 2. number vector. * Contains the 2. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 2. number vector. * Returns the 2. number vector.
* *
* @return 2. number vector * @return 2. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number2; private final int number2;
/** /**
* Contains the 3. number vector. * Contains the 3. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 3. number vector. * Returns the 3. number vector.
* *
* @return 3. number vector * @return 3. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number3; private final int number3;
/** /**
* Contains the 4. number vector. * Contains the 4. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 4. number vector. * Returns the 4. number vector.
* *
* @return 4. number vector * @return 4. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number4; private final int number4;

View file

@ -29,7 +29,7 @@ import org.jetbrains.annotations.Range;
/** /**
* Represents a two-numbered versioning system, where an application or work is versioning by two arbitrary numbers. * Represents a two-numbered versioning system, where an application or work is versioning by two arbitrary numbers.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -37,13 +37,13 @@ public final class OneNumberVersioningSystem implements VersioningSystem {
/** /**
* Contains the number vector. * Contains the number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the number vector. * Returns the number vector.
* *
* @return number vector * @return number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number; private final int number;

View file

@ -35,7 +35,7 @@ import java.util.List;
/** /**
* Represents the semantic versioning system (version 2.0.0), where an application or work is versioning by a MAJOR version, a MINOR version, a PATCH version and optionally, a pre-release vector and a build number. * Represents the semantic versioning system (version 2.0.0), where an application or work is versioning by a MAJOR version, a MINOR version, a PATCH version and optionally, a pre-release vector and a build number.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -43,52 +43,52 @@ public final class SemanticVersioningSystem implements VersioningSystem {
/** /**
* Contains the MAJOR vector. * Contains the MAJOR vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the MAJOR vector. * Returns the MAJOR vector.
* *
* @return MAJOR vector * @return MAJOR vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int major; private final int major;
/** /**
* Contains the MINOR vector. * Contains the MINOR vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the MINOR vector. * Returns the MINOR vector.
* *
* @return MINOR vector * @return MINOR vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int minor; private final int minor;
/** /**
* Contains the PATCH vector. * Contains the PATCH vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the PATCH vector. * Returns the PATCH vector.
* *
* @return PATCH vector * @return PATCH vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int patch; private final int patch;
/** /**
* Contains the PRERELEASE vector. * Contains the PRERELEASE vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the PRERELEASE vector. * Returns the PRERELEASE vector.
* *
* @return PRERELEASE vector * @return PRERELEASE vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Nullable @Nullable
private final String prerelease; private final String prerelease;
@ -96,13 +96,13 @@ public final class SemanticVersioningSystem implements VersioningSystem {
/** /**
* Contains the BUILD vector. * Contains the BUILD vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the BUILD vector. * Returns the BUILD vector.
* *
* @return BUILD vector * @return BUILD vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int build; private final int build;

View file

@ -35,7 +35,7 @@ import java.util.Locale;
/** /**
* Represents the StarOpenSource versioning system (version 2), where an application or work is versioning by a VERSION vector, a TYPE version type, a TYPERELEASE vector and optionally, a fork vector and a companion vector. * Represents the StarOpenSource versioning system (version 2), where an application or work is versioning by a VERSION vector, a TYPE version type, a TYPERELEASE vector and optionally, a fork vector and a companion vector.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -43,52 +43,52 @@ public final class StarOpenSourceVersioningSystem implements VersioningSystem {
/** /**
* Contains the VERSION vector. * Contains the VERSION vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the VERSION vector. * Returns the VERSION vector.
* *
* @return VERSION vector * @return VERSION vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int version; private final int version;
/** /**
* Contains the TYPE vector. * Contains the TYPE vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the TYPE vector. * Returns the TYPE vector.
* *
* @return TYPE vector * @return TYPE vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final VersionType type; private final VersionType type;
/** /**
* Contains the TYPERELEASE vector. * Contains the TYPERELEASE vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the TYPERELEASE vector. * Returns the TYPERELEASE vector.
* *
* @return TYPERELEASE vector * @return TYPERELEASE vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int typerelease; private final int typerelease;
/** /**
* Contains the COMPANION vector. * Contains the COMPANION vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the COMPANION vector. * Returns the COMPANION vector.
* *
* @return COMPANION vector * @return COMPANION vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Nullable @Nullable
private final String companion; private final String companion;
@ -96,13 +96,13 @@ public final class StarOpenSourceVersioningSystem implements VersioningSystem {
/** /**
* Contains the FORK vector. * Contains the FORK vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the FORK vector. * Returns the FORK vector.
* *
* @return FORK vector * @return FORK vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final String fork; private final String fork;

View file

@ -30,7 +30,7 @@ import org.jetbrains.annotations.Range;
/** /**
* Represents a three-numbered versioning system, where an application or work is versioning by three arbitrary numbers. * Represents a three-numbered versioning system, where an application or work is versioning by three arbitrary numbers.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -38,39 +38,39 @@ public final class ThreeNumberVersioningSystem implements VersioningSystem {
/** /**
* Contains the 1. number vector. * Contains the 1. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 1. number vector. * Returns the 1. number vector.
* *
* @return 1. number vector * @return 1. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number1; private final int number1;
/** /**
* Contains the 2. number vector. * Contains the 2. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 2. number vector. * Returns the 2. number vector.
* *
* @return 2. number vector * @return 2. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number2; private final int number2;
/** /**
* Contains the 3. number vector. * Contains the 3. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 3. number vector. * Returns the 3. number vector.
* *
* @return 3. number vector * @return 3. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number3; private final int number3;

View file

@ -30,7 +30,7 @@ import org.jetbrains.annotations.Range;
/** /**
* Represents a two-numbered versioning system, where an application or work is versioning by two arbitrary numbers. * Represents a two-numbered versioning system, where an application or work is versioning by two arbitrary numbers.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -38,26 +38,26 @@ public final class TwoNumberVersioningSystem implements VersioningSystem {
/** /**
* Contains the 1. number vector. * Contains the 1. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 1. number vector. * Returns the 1. number vector.
* *
* @return 1. number vector * @return 1. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number1; private final int number1;
/** /**
* Contains the 2. number vector. * Contains the 2. number vector.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the 2. number vector. * Returns the 2. number vector.
* *
* @return 2. number vector * @return 2. number vector
* @since 1-alpha1 * @since v1-alpha1
*/ */
private final int number2; private final int number2;

View file

@ -21,6 +21,6 @@
* Contains built-in versioning systems that * Contains built-in versioning systems that
* can be used to represent versions of some work. * can be used to represent versions of some work.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.data.versioning; package de.staropensource.sosengine.base.data.versioning;

View file

@ -25,7 +25,7 @@ import de.staropensource.sosengine.base.classes.helpers.EventHelper;
/** /**
* Called in the event of an engine crash, just before the JVM exists. * Called in the event of an engine crash, just before the JVM exists.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineCrashEvent implements Event { public final class EngineCrashEvent implements Event {

View file

@ -25,7 +25,7 @@ import de.staropensource.sosengine.base.classes.helpers.EventHelper;
/** /**
* Called when the engine and JVM are about to shutdown. * Called when the engine and JVM are about to shutdown.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public final class EngineShutdownEvent implements Event { public final class EngineShutdownEvent implements Event {
/** /**

View file

@ -26,7 +26,7 @@ import de.staropensource.sosengine.base.classes.helpers.EventHelper;
* Called in the event of a soft engine crash * Called in the event of a soft engine crash
* ie. a crash which was declared as handled. * ie. a crash which was declared as handled.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineSoftCrashEvent implements Event { public final class EngineSoftCrashEvent implements Event {

View file

@ -32,7 +32,7 @@ import java.lang.reflect.Method;
/** /**
* Called before a new log message is printed. * Called before a new log message is printed.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogEvent implements Event { public final class LogEvent implements Event {
@ -56,7 +56,7 @@ public final class LogEvent implements Event {
* @param level log level * @param level log level
* @param logIssuer log issuer * @param logIssuer log issuer
* @param message log message * @param message log message
* @since 1-alpha0 * @since v1-alpha0
*/ */
public void callEvent(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String message) { public void callEvent(@NotNull LogLevel level, @NotNull LogIssuer logIssuer, @NotNull String message) {
Runnable eventCode = Thread.ofVirtual().start(() -> { Runnable eventCode = Thread.ofVirtual().start(() -> {

View file

@ -32,7 +32,7 @@ import java.lang.reflect.Method;
* Called when an exception is caught. * Called when an exception is caught.
* *
* @see Miscellaneous#executeSafely(Runnable, String) * @see Miscellaneous#executeSafely(Runnable, String)
* @since 1-alpha0 * @since v1-alpha0
*/ */
public final class ThrowableCatchEvent implements Event { public final class ThrowableCatchEvent implements Event {
/** /**
@ -54,7 +54,7 @@ public final class ThrowableCatchEvent implements Event {
* *
* @param throwable caught throwable * @param throwable caught throwable
* @param identifier an identifier given to the runnable * @param identifier an identifier given to the runnable
* @since 1-alpha0 * @since v1-alpha0
*/ */
public void callEvent(@NotNull Throwable throwable, @NotNull String identifier) { public void callEvent(@NotNull Throwable throwable, @NotNull String identifier) {
Runnable eventCode = Thread.ofVirtual().start(() -> { Runnable eventCode = Thread.ofVirtual().start(() -> {

View file

@ -20,6 +20,6 @@
/** /**
* Contains events. There's nothing more to say. * Contains events. There's nothing more to say.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.events; package de.staropensource.sosengine.base.events;

View file

@ -24,7 +24,7 @@ import org.jetbrains.annotations.NotNull;
/** /**
* Represents an exception caused by a dependency cycle. * Represents an exception caused by a dependency cycle.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public class DependencyCycleException extends Exception { public class DependencyCycleException extends Exception {
@ -32,7 +32,7 @@ public class DependencyCycleException extends Exception {
* Constructs this exception. * Constructs this exception.
* *
* @param path cycle path * @param path cycle path
* @since 1-alpha1 * @since v1-alpha1
*/ */
public DependencyCycleException(@NotNull String path) { public DependencyCycleException(@NotNull String path) {
super("Dependency cycle detected: " + path); super("Dependency cycle detected: " + path);

View file

@ -24,7 +24,7 @@ import de.staropensource.sosengine.base.classes.VersioningSystem;
/** /**
* Represents an exception caused by supplying an invalid or unexpected versioning system. * Represents an exception caused by supplying an invalid or unexpected versioning system.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public class IncompatibleVersioningSystemException extends Exception { public class IncompatibleVersioningSystemException extends Exception {
@ -33,7 +33,7 @@ public class IncompatibleVersioningSystemException extends Exception {
* *
* @param required required versioning system ie. the versioning system throwing this error * @param required required versioning system ie. the versioning system throwing this error
* @param found found versioning system ie. the incompatible one * @param found found versioning system ie. the incompatible one
* @since 1-alpha1 * @since v1-alpha1
*/ */
public IncompatibleVersioningSystemException(VersioningSystem required, VersioningSystem found) { public IncompatibleVersioningSystemException(VersioningSystem required, VersioningSystem found) {
super("The versioning system " + required + " is incompatible with " + found); super("The versioning system " + required + " is incompatible with " + found);

View file

@ -28,7 +28,7 @@ import org.jetbrains.annotations.Nullable;
/** /**
* Represents an exception caused by an invalid version string. * Represents an exception caused by an invalid version string.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Getter @Getter
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@ -36,13 +36,13 @@ public class InvalidVersionStringException extends Exception {
/** /**
* Contains the throwable supplied to the constructor. * Contains the throwable supplied to the constructor.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the throwable supplied by the constructor. * Returns the throwable supplied by the constructor.
* *
* @return throwable * @return throwable
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Nullable @Nullable
private final Throwable throwable; private final Throwable throwable;
@ -54,7 +54,7 @@ public class InvalidVersionStringException extends Exception {
* @param versionString version string {@code a} * @param versionString version string {@code a}
* @param message some error message * @param message some error message
* @param throwable throwable that caused the parsing error * @param throwable throwable that caused the parsing error
* @since 1-alpha1 * @since v1-alpha1
*/ */
public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString, @NotNull String message, @NotNull Throwable throwable) { public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString, @NotNull String message, @NotNull Throwable throwable) {
super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\": " + message); super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\": " + message);
@ -67,7 +67,7 @@ public class InvalidVersionStringException extends Exception {
* @param versioningSystem versioning system that is unable to parse version strings * @param versioningSystem versioning system that is unable to parse version strings
* @param versionString version string {@code a} * @param versionString version string {@code a}
* @param message some error message * @param message some error message
* @since 1-alpha1 * @since v1-alpha1
*/ */
public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString, @NotNull String message) { public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString, @NotNull String message) {
super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\": " + message); super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\": " + message);
@ -80,7 +80,7 @@ public class InvalidVersionStringException extends Exception {
* @param versioningSystem versioning system that is unable to parse version strings * @param versioningSystem versioning system that is unable to parse version strings
* @param versionString version string {@code a} * @param versionString version string {@code a}
* @param throwable throwable that caused the parsing error * @param throwable throwable that caused the parsing error
* @since 1-alpha1 * @since v1-alpha1
*/ */
public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString, @NotNull Throwable throwable) { public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString, @NotNull Throwable throwable) {
super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\""); super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\"");
@ -92,7 +92,7 @@ public class InvalidVersionStringException extends Exception {
* *
* @param versioningSystem versioning system that is unable to parse version strings * @param versioningSystem versioning system that is unable to parse version strings
* @param versionString version string {@code a} * @param versionString version string {@code a}
* @since 1-alpha1 * @since v1-alpha1
*/ */
public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString) { public InvalidVersionStringException(@NotNull VersioningSystem versioningSystem, @NotNull String versionString) {
super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\""); super("Versioning system " + versioningSystem.getName() + " can't parse version string \"" + versionString + "\"");

View file

@ -27,7 +27,7 @@ import org.jetbrains.annotations.Nullable;
* Represents an exception caused by some throwable. * Represents an exception caused by some throwable.
* Basic wrapper for every throwable there is. * Basic wrapper for every throwable there is.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -35,13 +35,13 @@ public class UnexpectedThrowableException extends Exception {
/** /**
* Contains the throwable supplied to the constructor. * Contains the throwable supplied to the constructor.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the throwable supplied by the constructor. * Returns the throwable supplied by the constructor.
* *
* @return throwable * @return throwable
* @since 1-alpha1 * @since v1-alpha1
*/ */
@Nullable @Nullable
Throwable throwable; Throwable throwable;

View file

@ -28,7 +28,7 @@ import java.util.Map;
/** /**
* Represents an exception caused by unmet dependencies. * Represents an exception caused by unmet dependencies.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" }) @SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
@Getter @Getter
@ -39,7 +39,7 @@ public class UnmetDependenciesException extends Exception {
* The key contains the {@link DependencyVector} that has unmet dependencies, * The key contains the {@link DependencyVector} that has unmet dependencies,
* while the value contains the error string ie. which dependency is unmet and why. * while the value contains the error string ie. which dependency is unmet and why.
* *
* @since 1-alpha1 * @since v1-alpha1
* *
* -- GETTER -- * -- GETTER --
* Returns the unmet dependencies list supplied to the constructor. * Returns the unmet dependencies list supplied to the constructor.
@ -48,7 +48,7 @@ public class UnmetDependenciesException extends Exception {
* while the value contains the error string ie. which dependency is unmet and why. * while the value contains the error string ie. which dependency is unmet and why.
* *
* @return unmet dependencies list * @return unmet dependencies list
* @since 1-alpha1 * @since v1-alpha1
*/ */
@NotNull @NotNull
private final Map<@NotNull DependencyVector, @NotNull String> unmetDependencies; private final Map<@NotNull DependencyVector, @NotNull String> unmetDependencies;
@ -57,7 +57,7 @@ public class UnmetDependenciesException extends Exception {
* Constructs this exception. * Constructs this exception.
* *
* @param unmetDependencies map of unmet dependencies * @param unmetDependencies map of unmet dependencies
* @since 1-alpha1 * @since v1-alpha1
* @see UnmetDependenciesException#unmetDependencies * @see UnmetDependenciesException#unmetDependencies
*/ */
public UnmetDependenciesException(@NotNull Map<@NotNull DependencyVector, @NotNull String> unmetDependencies) { public UnmetDependenciesException(@NotNull Map<@NotNull DependencyVector, @NotNull String> unmetDependencies) {

View file

@ -20,6 +20,6 @@
/** /**
* Contains exceptions thrown by the engine. * Contains exceptions thrown by the engine.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.exceptions; package de.staropensource.sosengine.base.exceptions;

View file

@ -25,7 +25,7 @@ import de.staropensource.sosengine.base.classes.helpers.EventHelper;
/** /**
* Called when the engine and JVM are about to shutdown, after {@link de.staropensource.sosengine.base.events.EngineShutdownEvent}. * Called when the engine and JVM are about to shutdown, after {@link de.staropensource.sosengine.base.events.EngineShutdownEvent}.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public class InternalEngineShutdownEvent implements Event { public class InternalEngineShutdownEvent implements Event {
/** /**

View file

@ -20,6 +20,6 @@
/** /**
* Contains engine-internal stuff, not part of the API. * Contains engine-internal stuff, not part of the API.
* *
* @since 1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.internal; package de.staropensource.sosengine.base.internal;

View file

@ -29,14 +29,14 @@ import java.util.Calendar;
* Implements the {@code date_day} placeholder. * Implements the {@code date_day} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class DateDay implements Placeholder { public final class DateDay implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public DateDay() {} public DateDay() {}

View file

@ -29,14 +29,14 @@ import java.util.Calendar;
* Implements the {@code date_month} placeholder. * Implements the {@code date_month} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class DateMonth implements Placeholder { public final class DateMonth implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public DateMonth() {} public DateMonth() {}

View file

@ -29,14 +29,14 @@ import java.util.Calendar;
* Implements the {@code date_year} placeholder. * Implements the {@code date_year} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class DateYear implements Placeholder { public final class DateYear implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public DateYear() {} public DateYear() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_dependency_jansi} placeholder. * Implements the {@code engine_dependency_jansi} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineDependencyJansi implements Placeholder { public final class EngineDependencyJansi implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineDependencyJansi() {} public EngineDependencyJansi() {}

View file

@ -26,7 +26,7 @@ import org.jetbrains.annotations.NotNull;
/** /**
* Implements the {@code engine_dependency_jetbrains_annotations} placeholder. * Implements the {@code engine_dependency_jetbrains_annotations} placeholder.
* *
* @since 1-alpha0 * @since v1-alpha0
* @see Placeholder * @see Placeholder
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
@ -34,7 +34,7 @@ public final class EngineDependencyJetbrainsAnnotations implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineDependencyJetbrainsAnnotations() {} public EngineDependencyJetbrainsAnnotations() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_dependency_lombok} placeholder. * Implements the {@code engine_dependency_lombok} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineDependencyLombok implements Placeholder { public final class EngineDependencyLombok implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineDependencyLombok() {} public EngineDependencyLombok() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_dependency_lwjgl} placeholder. * Implements the {@code engine_dependency_lwjgl} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineDependencyLwjgl implements Placeholder { public final class EngineDependencyLwjgl implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineDependencyLwjgl() {} public EngineDependencyLwjgl() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_dependency_reflections} placeholder. * Implements the {@code engine_dependency_reflections} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineDependencyReflections implements Placeholder { public final class EngineDependencyReflections implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineDependencyReflections() {} public EngineDependencyReflections() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_dependency_slf4j} placeholder. * Implements the {@code engine_dependency_slf4j} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineDependencySlf4j implements Placeholder { public final class EngineDependencySlf4j implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineDependencySlf4j() {} public EngineDependencySlf4j() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_branch} placeholder. * Implements the {@code engine_git_branch} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitBranch implements Placeholder { public final class EngineGitBranch implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitBranch() {} public EngineGitBranch() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_header} placeholder. * Implements the {@code engine_git_commit_header} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitHeader implements Placeholder { public final class EngineGitCommitHeader implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitHeader() {} public EngineGitCommitHeader() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_id_long} placeholder. * Implements the {@code engine_git_commit_id_long} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitIdLong implements Placeholder { public final class EngineGitCommitIdLong implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitIdLong() {} public EngineGitCommitIdLong() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_id_short} placeholder. * Implements the {@code engine_git_commit_id_short} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitIdShort implements Placeholder { public final class EngineGitCommitIdShort implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitIdShort() {} public EngineGitCommitIdShort() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_time_day} placeholder. * Implements the {@code engine_git_commit_time_day} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitTimeDay implements Placeholder { public final class EngineGitCommitTimeDay implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitTimeDay() {} public EngineGitCommitTimeDay() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_time_hour} placeholder. * Implements the {@code engine_git_commit_time_hour} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitTimeHour implements Placeholder { public final class EngineGitCommitTimeHour implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitTimeHour() {} public EngineGitCommitTimeHour() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_time_minute} placeholder. * Implements the {@code engine_git_commit_time_minute} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitTimeMinute implements Placeholder { public final class EngineGitCommitTimeMinute implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitTimeMinute() {} public EngineGitCommitTimeMinute() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_time_month} placeholder. * Implements the {@code engine_git_commit_time_month} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitTimeMonth implements Placeholder { public final class EngineGitCommitTimeMonth implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitTimeMonth() {} public EngineGitCommitTimeMonth() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_time_second} placeholder. * Implements the {@code engine_git_commit_time_second} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitTimeSecond implements Placeholder { public final class EngineGitCommitTimeSecond implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitTimeSecond() {} public EngineGitCommitTimeSecond() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commit_time_year} placeholder. * Implements the {@code engine_git_commit_time_year} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitTimeYear implements Placeholder { public final class EngineGitCommitTimeYear implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitTimeYear() {} public EngineGitCommitTimeYear() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_commits} placeholder. * Implements the {@code engine_git_commits} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommits implements Placeholder { public final class EngineGitCommits implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommits() {} public EngineGitCommits() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_committer_email} placeholder. * Implements the {@code engine_git_committer_email} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitterEmail implements Placeholder { public final class EngineGitCommitterEmail implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitterEmail() {} public EngineGitCommitterEmail() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_committer_name} placeholder. * Implements the {@code engine_git_committer_name} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitCommitterName implements Placeholder { public final class EngineGitCommitterName implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitCommitterName() {} public EngineGitCommitterName() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_git_dirty} placeholder. * Implements the {@code engine_git_dirty} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineGitDirty implements Placeholder { public final class EngineGitDirty implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineGitDirty() {} public EngineGitDirty() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_plugin_lombok} placeholder. * Implements the {@code engine_plugin_lombok} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EnginePluginLombok implements Placeholder { public final class EnginePluginLombok implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EnginePluginLombok() {} public EnginePluginLombok() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_plugin_shadow} placeholder. * Implements the {@code engine_plugin_shadow} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EnginePluginShadow implements Placeholder { public final class EnginePluginShadow implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EnginePluginShadow() {} public EnginePluginShadow() {}

View file

@ -26,14 +26,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_version} placeholder. * Implements the {@code engine_version} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineVersion implements Placeholder { public final class EngineVersion implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineVersion() {} public EngineVersion() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_version_fork} placeholder. * Implements the {@code engine_version_fork} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineVersionFork implements Placeholder { public final class EngineVersionFork implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineVersionFork() {} public EngineVersionFork() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_version_type} placeholder. * Implements the {@code engine_version_type} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineVersionType implements Placeholder { public final class EngineVersionType implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineVersionType() {} public EngineVersionType() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_version_typerelease} placeholder. * Implements the {@code engine_version_typerelease} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineVersionTyperelease implements Placeholder { public final class EngineVersionTyperelease implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineVersionTyperelease() {} public EngineVersionTyperelease() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code engine_version_version} placeholder. * Implements the {@code engine_version_version} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class EngineVersionVersion implements Placeholder { public final class EngineVersionVersion implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public EngineVersionVersion() {} public EngineVersionVersion() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code jvm_arguments} placeholder. * Implements the {@code jvm_arguments} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class JvmArguments implements Placeholder { public final class JvmArguments implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public JvmArguments() {} public JvmArguments() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code jvm_implementation_name} placeholder. * Implements the {@code jvm_implementation_name} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class JvmImplementationName implements Placeholder { public final class JvmImplementationName implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public JvmImplementationName() {} public JvmImplementationName() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code jvm_implementation_vendor} placeholder. * Implements the {@code jvm_implementation_vendor} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class JvmImplementationVendor implements Placeholder { public final class JvmImplementationVendor implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public JvmImplementationVendor() {} public JvmImplementationVendor() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code jvm_implementation_version} placeholder. * Implements the {@code jvm_implementation_version} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class JvmImplementationVersion implements Placeholder { public final class JvmImplementationVersion implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public JvmImplementationVersion() {} public JvmImplementationVersion() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code jvm_java} placeholder. * Implements the {@code jvm_java} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class JvmJava implements Placeholder { public final class JvmJava implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public JvmJava() {} public JvmJava() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code jvm_uptime} placeholder. * Implements the {@code jvm_uptime} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class JvmUptime implements Placeholder { public final class JvmUptime implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public JvmUptime() {} public JvmUptime() {}

View file

@ -28,14 +28,14 @@ import org.jetbrains.annotations.NotNull;
* *
* @see Placeholder * @see Placeholder
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class TimeEpoch implements Placeholder { public final class TimeEpoch implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public TimeEpoch() {} public TimeEpoch() {}

View file

@ -29,14 +29,14 @@ import java.util.Calendar;
* Implements the {@code time_hour} placeholder. * Implements the {@code time_hour} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class TimeHour implements Placeholder { public final class TimeHour implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public TimeHour() {} public TimeHour() {}

View file

@ -29,14 +29,14 @@ import java.util.Calendar;
* Implements the {@code time_minute} placeholder. * Implements the {@code time_minute} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class TimeMinute implements Placeholder { public final class TimeMinute implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public TimeMinute() {} public TimeMinute() {}

View file

@ -29,14 +29,14 @@ import java.util.Calendar;
* Implements the {@code time_second} placeholder. * Implements the {@code time_second} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class TimeSecond implements Placeholder { public final class TimeSecond implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public TimeSecond() {} public TimeSecond() {}

View file

@ -28,14 +28,14 @@ import java.util.Locale;
* Implements the {@code time_zone} placeholder. * Implements the {@code time_zone} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class TimeZone implements Placeholder { public final class TimeZone implements Placeholder {
/** /**
* Constructs this class. * Constructs this class.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
public TimeZone() {} public TimeZone() {}

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code issuer_class} placeholder. * Implements the {@code issuer_class} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class IssuerClass implements Placeholder { public final class IssuerClass implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class IssuerClass implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public IssuerClass(@NotNull LogIssuer logIssuer) { public IssuerClass(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code issuer_code_part} placeholder. * Implements the {@code issuer_code_part} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class IssuerCodePart implements Placeholder { public final class IssuerCodePart implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class IssuerCodePart implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public IssuerCodePart(@NotNull LogIssuer logIssuer) { public IssuerCodePart(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code issuer_info} placeholder. * Implements the {@code issuer_info} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class IssuerInfo implements Placeholder { public final class IssuerInfo implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class IssuerInfo implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public IssuerInfo(@NotNull LogIssuer logIssuer) { public IssuerInfo(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -26,14 +26,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code issuer_message} placeholder. * Implements the {@code issuer_message} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class IssuerMessage implements Placeholder { public final class IssuerMessage implements Placeholder {
/** /**
* The message to use. * The message to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final String message; private final String message;
@ -42,7 +42,7 @@ public final class IssuerMessage implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param message message to use * @param message message to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public IssuerMessage(@NotNull String message) { public IssuerMessage(@NotNull String message) {
this.message = message; this.message = message;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code issuer_package} placeholder. * Implements the {@code issuer_package} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class IssuerPackage implements Placeholder { public final class IssuerPackage implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class IssuerPackage implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public IssuerPackage(@NotNull LogIssuer logIssuer) { public IssuerPackage(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code issuer_path} placeholder. * Implements the {@code issuer_path} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class IssuerPath implements Placeholder { public final class IssuerPath implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class IssuerPath implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public IssuerPath(@NotNull LogIssuer logIssuer) { public IssuerPath(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -28,14 +28,14 @@ import org.jetbrains.annotations.Nullable;
* Implements the {@code stacktrace} placeholder. * Implements the {@code stacktrace} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class Stacktrace implements Placeholder { public final class Stacktrace implements Placeholder {
/** /**
* The {@link Throwable} to use. * The {@link Throwable} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@Nullable @Nullable
private final Throwable throwable; private final Throwable throwable;
@ -44,7 +44,7 @@ public final class Stacktrace implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param throwable {@link Throwable} to use * @param throwable {@link Throwable} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public Stacktrace(@Nullable Throwable throwable) { public Stacktrace(@Nullable Throwable throwable) {
this.throwable = throwable; this.throwable = throwable;

View file

@ -21,6 +21,6 @@
* Contains all placeholders used in the {@link de.staropensource.sosengine.base.logging.CrashHandler}. * Contains all placeholders used in the {@link de.staropensource.sosengine.base.logging.CrashHandler}.
* *
* @see de.staropensource.sosengine.base.logging.CrashHandler * @see de.staropensource.sosengine.base.logging.CrashHandler
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.internal.placeholders.crashhandler; package de.staropensource.sosengine.base.internal.placeholders.crashhandler;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_class} placeholder. * Implements the {@code log_class} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogClass implements Placeholder { public final class LogClass implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class LogClass implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogClass(@NotNull LogIssuer logIssuer) { public LogClass(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_code_part} placeholder. * Implements the {@code log_code_part} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogCodePart implements Placeholder { public final class LogCodePart implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class LogCodePart implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogCodePart(@NotNull LogIssuer logIssuer) { public LogCodePart(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_color_primary} placeholder. * Implements the {@code log_color_primary} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogColorPrimary implements Placeholder { public final class LogColorPrimary implements Placeholder {
/** /**
* The {@link LogLevel} to use. * The {@link LogLevel} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogLevel level; private final LogLevel level;
@ -43,7 +43,7 @@ public final class LogColorPrimary implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param level {@link LogLevel} to use * @param level {@link LogLevel} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogColorPrimary(@NotNull LogLevel level) { public LogColorPrimary(@NotNull LogLevel level) {
this.level = level; this.level = level;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_color_secondary} placeholder. * Implements the {@code log_color_secondary} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogColorSecondary implements Placeholder { public final class LogColorSecondary implements Placeholder {
/** /**
* The {@link LogLevel} to use. * The {@link LogLevel} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogLevel level; private final LogLevel level;
@ -43,7 +43,7 @@ public final class LogColorSecondary implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param level {@link LogLevel} to use * @param level {@link LogLevel} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogColorSecondary(@NotNull LogLevel level) { public LogColorSecondary(@NotNull LogLevel level) {
this.level = level; this.level = level;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_info} placeholder. * Implements the {@code log_info} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogInfo implements Placeholder { public final class LogInfo implements Placeholder {
/** /**
* The {@link LogIssuer} to use * The {@link LogIssuer} to use
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class LogInfo implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogInfo(@NotNull LogIssuer logIssuer) { public LogInfo(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -26,14 +26,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_level} placeholder. * Implements the {@code log_level} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogLevel implements Placeholder { public final class LogLevel implements Placeholder {
/** /**
* The {@link de.staropensource.sosengine.base.types.logging.LogLevel} to use. * The {@link de.staropensource.sosengine.base.types.logging.LogLevel} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final de.staropensource.sosengine.base.types.logging.LogLevel level; private final de.staropensource.sosengine.base.types.logging.LogLevel level;
@ -42,7 +42,7 @@ public final class LogLevel implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param level {@link de.staropensource.sosengine.base.types.logging.LogLevel} to use * @param level {@link de.staropensource.sosengine.base.types.logging.LogLevel} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogLevel(@NotNull de.staropensource.sosengine.base.types.logging.LogLevel level) { public LogLevel(@NotNull de.staropensource.sosengine.base.types.logging.LogLevel level) {
this.level = level; this.level = level;

View file

@ -26,14 +26,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_message} placeholder. * Implements the {@code log_message} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogMessage implements Placeholder { public final class LogMessage implements Placeholder {
/** /**
* The message to use. * The message to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final String message; private final String message;
@ -42,7 +42,7 @@ public final class LogMessage implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param message message to use * @param message message to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogMessage(@NotNull String message) { public LogMessage(@NotNull String message) {
this.message = message; this.message = message;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_package} placeholder. * Implements the {@code log_package} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogPackage implements Placeholder { public final class LogPackage implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class LogPackage implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogPackage(@NotNull LogIssuer logIssuer) { public LogPackage(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -27,14 +27,14 @@ import org.jetbrains.annotations.NotNull;
* Implements the {@code log_path} placeholder. * Implements the {@code log_path} placeholder.
* *
* @see Placeholder * @see Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
@SuppressWarnings({ "unused" }) @SuppressWarnings({ "unused" })
public final class LogPath implements Placeholder { public final class LogPath implements Placeholder {
/** /**
* The {@link LogIssuer} to use. * The {@link LogIssuer} to use.
* *
* @since 1-alpha0 * @since v1-alpha0
*/ */
@NotNull @NotNull
private final LogIssuer logIssuer; private final LogIssuer logIssuer;
@ -43,7 +43,7 @@ public final class LogPath implements Placeholder {
* Constructs this class. * Constructs this class.
* *
* @param logIssuer {@link LogIssuer} to use * @param logIssuer {@link LogIssuer} to use
* @since 1-alpha0 * @since v1-alpha0
*/ */
public LogPath(@NotNull LogIssuer logIssuer) { public LogPath(@NotNull LogIssuer logIssuer) {
this.logIssuer = logIssuer; this.logIssuer = logIssuer;

View file

@ -21,6 +21,6 @@
* Contains all placeholders used in the {@link de.staropensource.sosengine.base.logging.Logger}. * Contains all placeholders used in the {@link de.staropensource.sosengine.base.logging.Logger}.
* *
* @see de.staropensource.sosengine.base.logging.Logger * @see de.staropensource.sosengine.base.logging.Logger
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.internal.placeholders.logger; package de.staropensource.sosengine.base.internal.placeholders.logger;

View file

@ -22,6 +22,6 @@
* *
* @see de.staropensource.sosengine.base.utility.PlaceholderEngine * @see de.staropensource.sosengine.base.utility.PlaceholderEngine
* @see de.staropensource.sosengine.base.classes.Placeholder * @see de.staropensource.sosengine.base.classes.Placeholder
* @since 1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.internal.placeholders; package de.staropensource.sosengine.base.internal.placeholders;

Some files were not shown because too many files have changed in this diff Show more