Rename de.staropensource.sosengine package
All checks were successful
build-and-test / test (push) Successful in 1m4s
build-and-test / build (push) Successful in 1m21s
build-and-test / generate-javadoc (push) Successful in 1m27s

This commit is contained in:
JeremyStar™ 2024-09-27 23:16:25 +02:00
parent a4224f9c51
commit 02aa744098
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D
255 changed files with 948 additions and 949 deletions

View file

@ -17,12 +17,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.ansi; package de.staropensource.engine.ansi;
import de.staropensource.sosengine.base.EngineConfiguration; import de.staropensource.engine.base.EngineConfiguration;
import de.staropensource.sosengine.base.implementable.LoggingAdapter; import de.staropensource.engine.base.implementable.LoggingAdapter;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.engine.base.logging.Logger;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.engine.base.type.logging.LogLevel;
import org.fusesource.jansi.Ansi; import org.fusesource.jansi.Ansi;
import org.fusesource.jansi.AnsiConsole; import org.fusesource.jansi.AnsiConsole;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.ansi; package de.staropensource.engine.ansi;
import de.staropensource.sosengine.base.implementable.ShortcodeParser; import de.staropensource.engine.base.implementable.ShortcodeParser;
import de.staropensource.sosengine.base.exception.ParserException; import de.staropensource.engine.base.exception.ParserException;
import org.fusesource.jansi.Ansi; import org.fusesource.jansi.Ansi;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,14 +17,14 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.ansi; package de.staropensource.engine.ansi;
import de.staropensource.sosengine.base.annotation.EngineSubsystem; import de.staropensource.engine.base.annotation.EngineSubsystem;
import de.staropensource.sosengine.base.implementable.SubsystemClass; import de.staropensource.engine.base.implementable.SubsystemClass;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import de.staropensource.sosengine.base.implementation.versioning.StarOpenSourceVersioningSystem; import de.staropensource.engine.base.implementation.versioning.StarOpenSourceVersioningSystem;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.engine.base.logging.Logger;
import de.staropensource.sosengine.base.type.DependencyVector; import de.staropensource.engine.base.type.DependencyVector;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -20,4 +20,4 @@
/** /**
* Contains the ANSI subsystem code. * Contains the ANSI subsystem code.
*/ */
package de.staropensource.sosengine.ansi; package de.staropensource.engine.ansi;

View file

@ -16,8 +16,8 @@ module sosengine.ansi {
requires org.fusesource.jansi; requires org.fusesource.jansi;
// API access // API access
exports de.staropensource.sosengine.ansi; exports de.staropensource.engine.ansi;
// Reflection access // Reflection access
opens de.staropensource.sosengine.ansi; opens de.staropensource.engine.ansi;
} }

View file

@ -17,27 +17,27 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base; package de.staropensource.engine.base;
import de.staropensource.sosengine.base.annotation.EngineSubsystem; import de.staropensource.engine.base.annotation.EngineSubsystem;
import de.staropensource.sosengine.base.event.*; import de.staropensource.engine.base.event.*;
import de.staropensource.sosengine.base.exception.IllegalAccessException; import de.staropensource.engine.base.exception.IllegalAccessException;
import de.staropensource.sosengine.base.exception.dependency.UnmetDependenciesException; import de.staropensource.engine.base.exception.dependency.UnmetDependenciesException;
import de.staropensource.sosengine.base.implementable.ShutdownHandler; import de.staropensource.engine.base.implementable.ShutdownHandler;
import de.staropensource.sosengine.base.implementable.SubsystemClass; import de.staropensource.engine.base.implementable.SubsystemClass;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
import de.staropensource.sosengine.base.implementation.versioning.StarOpenSourceVersioningSystem; import de.staropensource.engine.base.implementation.versioning.StarOpenSourceVersioningSystem;
import de.staropensource.sosengine.base.internal.event.InternalEngineShutdownEvent; import de.staropensource.engine.base.internal.event.InternalEngineShutdownEvent;
import de.staropensource.sosengine.base.internal.type.DependencySubsystemVector; import de.staropensource.engine.base.internal.type.DependencySubsystemVector;
import de.staropensource.sosengine.base.logging.*; import de.staropensource.engine.base.logging.*;
import de.staropensource.sosengine.base.type.DependencyVector; import de.staropensource.engine.base.type.DependencyVector;
import de.staropensource.sosengine.base.type.EngineState; import de.staropensource.engine.base.type.EngineState;
import de.staropensource.sosengine.base.type.immutable.ImmutableLinkedList; import de.staropensource.engine.base.type.immutable.ImmutableLinkedList;
import de.staropensource.sosengine.base.utility.DependencyResolver; import de.staropensource.engine.base.utility.DependencyResolver;
import de.staropensource.sosengine.base.utility.Miscellaneous; import de.staropensource.engine.base.utility.Miscellaneous;
import de.staropensource.sosengine.base.utility.PlaceholderEngine; import de.staropensource.engine.base.utility.PlaceholderEngine;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import de.staropensource.sosengine.base.utility.information.JvmInformation; import de.staropensource.engine.base.utility.information.JvmInformation;
import lombok.AccessLevel; import lombok.AccessLevel;
import lombok.Getter; import lombok.Getter;
import lombok.Setter; import lombok.Setter;
@ -584,8 +584,8 @@ public final class Engine extends SubsystemClass {
* @since v1-alpha2 * @since v1-alpha2
*/ */
public void setState(@NotNull EngineState state) throws IllegalAccessException { public void setState(@NotNull EngineState state) throws IllegalAccessException {
if (!Thread.currentThread().getStackTrace()[2].getClassName().startsWith("de.staropensource.sosengine.base.")) if (!Thread.currentThread().getStackTrace()[2].getClassName().startsWith("de.staropensource.engine.base."))
throw new IllegalAccessException("Only classes inside the \"de.staropensource.sosengine.base\" package are allowed to call this method."); throw new IllegalAccessException("Only classes inside the \"de.staropensource.engine.base\" package are allowed to call this method.");
this.state = state; this.state = state;
} }

View file

@ -17,18 +17,18 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base; package de.staropensource.engine.base;
import de.staropensource.sosengine.base.implementable.Configuration; import de.staropensource.engine.base.implementable.Configuration;
import de.staropensource.sosengine.base.implementable.ShortcodeParser; import de.staropensource.engine.base.implementable.ShortcodeParser;
import de.staropensource.sosengine.base.logging.CrashHandler; import de.staropensource.engine.base.logging.CrashHandler;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.engine.base.logging.Logger;
import de.staropensource.sosengine.base.logging.LoggingThread; import de.staropensource.engine.base.logging.LoggingThread;
import de.staropensource.sosengine.base.type.EngineState; import de.staropensource.engine.base.type.EngineState;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.engine.base.type.logging.LogLevel;
import de.staropensource.sosengine.base.type.vector.Vec2f; import de.staropensource.engine.base.type.vector.Vec2f;
import de.staropensource.sosengine.base.type.vector.Vec2i; import de.staropensource.engine.base.type.vector.Vec2i;
import de.staropensource.sosengine.base.utility.PropertiesReader; import de.staropensource.engine.base.utility.PropertiesReader;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
@ -342,7 +342,7 @@ public final class EngineConfiguration extends Configuration {
* to a String, which you can do with * to a String, which you can do with
* {@link Vec2f#toString()}. With this flag * {@link Vec2f#toString()}. With this flag
* disabled it would return * disabled it would return
* {@code de.staropensource.sosengine.base.types.vectors.}{@link Vec2i}{@code (x=64 y=64)}, * {@code de.staropensource.engine.base.types.vectors.}{@link Vec2i}{@code (x=64 y=64)},
* with it however it would just return * with it however it would just return
* {@link Vec2i}{@code (x=64 y=64)}, * {@link Vec2i}{@code (x=64 y=64)},
* which is much smaller. * which is much smaller.

View file

@ -17,15 +17,15 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base; package de.staropensource.engine.base;
import de.staropensource.sosengine.base.exception.IllegalAccessException; import de.staropensource.engine.base.exception.IllegalAccessException;
import de.staropensource.sosengine.base.implementable.EventListenerCode; import de.staropensource.engine.base.implementable.EventListenerCode;
import de.staropensource.sosengine.base.implementable.ShutdownHandler; import de.staropensource.engine.base.implementable.ShutdownHandler;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
import de.staropensource.sosengine.base.logging.LoggerInstance; import de.staropensource.engine.base.logging.LoggerInstance;
import de.staropensource.sosengine.base.type.EventPriority; import de.staropensource.engine.base.type.EventPriority;
import de.staropensource.sosengine.base.type.InternalAccessArea; import de.staropensource.engine.base.type.InternalAccessArea;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.annotation; package de.staropensource.engine.base.annotation;
import de.staropensource.sosengine.base.implementable.SubsystemClass; import de.staropensource.engine.base.implementable.SubsystemClass;
import java.lang.annotation.*; import java.lang.annotation.*;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.annotation; package de.staropensource.engine.base.annotation;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.type.EventPriority; import de.staropensource.engine.base.type.EventPriority;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import java.lang.annotation.*; import java.lang.annotation.*;

View file

@ -23,4 +23,4 @@
* *
* @since v1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.annotation; package de.staropensource.engine.base.annotation;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.event; package de.staropensource.engine.base.event;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
/** /**
* Called in the event of an engine crash. * Called in the event of an engine crash.

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.event; package de.staropensource.engine.base.event;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
/** /**
* Called when the engine is about to shutdown. * Called when the engine is about to shutdown.

View file

@ -17,11 +17,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.event; package de.staropensource.engine.base.event;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.engine.base.logging.Logger;
/** /**
* Called in the event of a soft engine crash * Called in the event of a soft engine crash

View file

@ -17,11 +17,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.event; package de.staropensource.engine.base.event;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.engine.base.type.logging.LogLevel;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -17,11 +17,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.event; package de.staropensource.engine.base.event;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
import de.staropensource.sosengine.base.utility.Miscellaneous; import de.staropensource.engine.base.utility.Miscellaneous;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -22,4 +22,4 @@
* *
* @since v1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.event; package de.staropensource.engine.base.event;

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception; package de.staropensource.engine.base.exception;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception; package de.staropensource.engine.base.exception;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception; package de.staropensource.engine.base.exception;
import de.staropensource.sosengine.base.type.Tristate; import de.staropensource.engine.base.type.Tristate;
/** /**
* Thrown when converting a {@link Tristate} into a {@link Boolean} fails. * Thrown when converting a {@link Tristate} into a {@link Boolean} fails.

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception; package de.staropensource.engine.base.exception;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.dependency; package de.staropensource.engine.base.exception.dependency;
import de.staropensource.sosengine.base.utility.DependencyResolver; import de.staropensource.engine.base.utility.DependencyResolver;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.dependency; package de.staropensource.engine.base.exception.dependency;
import de.staropensource.sosengine.base.type.DependencyVector; import de.staropensource.engine.base.type.DependencyVector;
import de.staropensource.sosengine.base.utility.DependencyResolver; import de.staropensource.engine.base.utility.DependencyResolver;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -20,7 +20,7 @@
/** /**
* Exceptions related to dependency resolving. * Exceptions related to dependency resolving.
* *
* @see de.staropensource.sosengine.base.utility.DependencyResolver * @see de.staropensource.engine.base.utility.DependencyResolver
* @since v1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.exception.dependency; package de.staropensource.engine.base.exception.dependency;

View file

@ -22,4 +22,4 @@
* *
* @since v1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.exception; package de.staropensource.engine.base.exception;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;
import de.staropensource.sosengine.base.type.reflection.ClassType; import de.staropensource.engine.base.type.reflection.ClassType;
import de.staropensource.sosengine.base.utility.ListFormatter; import de.staropensource.engine.base.utility.ListFormatter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;
import de.staropensource.sosengine.base.reflection.ReflectionClass; import de.staropensource.engine.base.reflection.ReflectionClass;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;
import de.staropensource.sosengine.base.reflection.ReflectionClass; import de.staropensource.engine.base.reflection.ReflectionClass;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -20,7 +20,7 @@
/** /**
* Exceptions related to reflection. * Exceptions related to reflection.
* *
* @see de.staropensource.sosengine.base.reflection * @see de.staropensource.engine.base.reflection
* @since v1-alpha2 * @since v1-alpha2
*/ */
package de.staropensource.sosengine.base.exception.reflection; package de.staropensource.engine.base.exception.reflection;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.versioning; package de.staropensource.engine.base.exception.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
/** /**
* Thrown when trying to compare a {@link VersioningSystem} against another * Thrown when trying to compare a {@link VersioningSystem} against another

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.exception.versioning; package de.staropensource.engine.base.exception.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -18,9 +18,9 @@
*/ */
/** /**
* Exceptions thrown by implementations of {@link de.staropensource.sosengine.base.implementable.VersioningSystem}s. * Exceptions thrown by implementations of {@link de.staropensource.engine.base.implementable.VersioningSystem}s.
* *
* @see de.staropensource.sosengine.base.implementable.VersioningSystem * @see de.staropensource.engine.base.implementable.VersioningSystem
* @since v1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.exception.versioning; package de.staropensource.engine.base.exception.versioning;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.logging.LoggerInstance; import de.staropensource.engine.base.logging.LoggerInstance;
import de.staropensource.sosengine.base.utility.PropertiesReader; import de.staropensource.engine.base.utility.PropertiesReader;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
/** /**
* Represents an event. * Represents an event.

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
import de.staropensource.sosengine.base.type.EventPriority; import de.staropensource.engine.base.type.EventPriority;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.engine.base.logging.Logger;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.engine.base.type.logging.LogLevel;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.utility.PlaceholderEngine; import de.staropensource.engine.base.utility.PlaceholderEngine;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,11 +17,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.EngineConfiguration; import de.staropensource.engine.base.EngineConfiguration;
import de.staropensource.sosengine.base.exception.ParserException; import de.staropensource.engine.base.exception.ParserException;
import de.staropensource.sosengine.base.logging.LoggerInstance; import de.staropensource.engine.base.logging.LoggerInstance;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.Engine; import de.staropensource.engine.base.Engine;
import org.jetbrains.annotations.Range; import org.jetbrains.annotations.Range;
/** /**

View file

@ -17,14 +17,14 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.Engine; import de.staropensource.engine.base.Engine;
import de.staropensource.sosengine.base.annotation.EngineSubsystem; import de.staropensource.engine.base.annotation.EngineSubsystem;
import de.staropensource.sosengine.base.annotation.EventListener; import de.staropensource.engine.base.annotation.EventListener;
import de.staropensource.sosengine.base.internal.event.InternalEngineShutdownEvent; import de.staropensource.engine.base.internal.event.InternalEngineShutdownEvent;
import de.staropensource.sosengine.base.logging.LoggerInstance; import de.staropensource.engine.base.logging.LoggerInstance;
import de.staropensource.sosengine.base.type.DependencyVector; import de.staropensource.engine.base.type.DependencyVector;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;
import de.staropensource.sosengine.base.exception.versioning.IncompatibleVersioningSystemException; import de.staropensource.engine.base.exception.versioning.IncompatibleVersioningSystemException;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Range; import org.jetbrains.annotations.Range;

View file

@ -17,22 +17,22 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementable.helper; package de.staropensource.engine.base.implementable.helper;
import de.staropensource.sosengine.base.EngineConfiguration; import de.staropensource.engine.base.EngineConfiguration;
import de.staropensource.sosengine.base.EngineInternals; import de.staropensource.engine.base.EngineInternals;
import de.staropensource.sosengine.base.annotation.EventListener; import de.staropensource.engine.base.annotation.EventListener;
import de.staropensource.sosengine.base.event.LogEvent; import de.staropensource.engine.base.event.LogEvent;
import de.staropensource.sosengine.base.exception.reflection.InstanceMethodFromStaticContextException; import de.staropensource.engine.base.exception.reflection.InstanceMethodFromStaticContextException;
import de.staropensource.sosengine.base.exception.reflection.InvalidMethodSignatureException; import de.staropensource.engine.base.exception.reflection.InvalidMethodSignatureException;
import de.staropensource.sosengine.base.exception.reflection.NoAccessException; import de.staropensource.engine.base.exception.reflection.NoAccessException;
import de.staropensource.sosengine.base.exception.reflection.StaticInitializerException; import de.staropensource.engine.base.exception.reflection.StaticInitializerException;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.implementable.EventListenerCode; import de.staropensource.engine.base.implementable.EventListenerCode;
import de.staropensource.sosengine.base.internal.implementation.EventListenerMethod; import de.staropensource.engine.base.internal.implementation.EventListenerMethod;
import de.staropensource.sosengine.base.logging.LoggerInstance; import de.staropensource.engine.base.logging.LoggerInstance;
import de.staropensource.sosengine.base.type.EventPriority; import de.staropensource.engine.base.type.EventPriority;
import de.staropensource.sosengine.base.utility.ListFormatter; import de.staropensource.engine.base.utility.ListFormatter;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -23,4 +23,4 @@
* *
* @since v1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.implementable.helper; package de.staropensource.engine.base.implementable.helper;

View file

@ -22,4 +22,4 @@
* *
* @since v1-alpha0 * @since v1-alpha0
*/ */
package de.staropensource.sosengine.base.implementable; package de.staropensource.engine.base.implementable;

View file

@ -17,13 +17,13 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.logging; package de.staropensource.engine.base.implementation.logging;
import de.staropensource.sosengine.base.EngineConfiguration; import de.staropensource.engine.base.EngineConfiguration;
import de.staropensource.sosengine.base.implementable.LoggingAdapter; import de.staropensource.engine.base.implementable.LoggingAdapter;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.engine.base.logging.Logger;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.engine.base.type.logging.LogLevel;
import de.staropensource.sosengine.base.implementation.shortcode.EmptyShortcodeConverter; import de.staropensource.engine.base.implementation.shortcode.EmptyShortcodeConverter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.logging; package de.staropensource.engine.base.implementation.logging;
import de.staropensource.sosengine.base.implementable.LoggingAdapter; import de.staropensource.engine.base.implementable.LoggingAdapter;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.engine.base.type.logging.LogLevel;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -17,12 +17,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.logging; package de.staropensource.engine.base.implementation.logging;
import de.staropensource.sosengine.base.EngineConfiguration; import de.staropensource.engine.base.EngineConfiguration;
import de.staropensource.sosengine.base.implementable.LoggingAdapter; import de.staropensource.engine.base.implementable.LoggingAdapter;
import de.staropensource.sosengine.base.logging.Logger; import de.staropensource.engine.base.logging.Logger;
import de.staropensource.sosengine.base.type.logging.LogLevel; import de.staropensource.engine.base.type.logging.LogLevel;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -0,0 +1,25 @@
/*
* STAROPENSOURCE ENGINE SOURCE FILE
* Copyright (c) 2024 The StarOpenSource Engine Authors
* Licensed under the GNU Affero General Public License v3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* A set of built-in {@link de.staropensource.engine.base.implementable.LoggingAdapter}s.
*
* @since v1-alpha1
*/
package de.staropensource.engine.base.implementation.logging;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.shortcode; package de.staropensource.engine.base.implementation.shortcode;
import de.staropensource.sosengine.base.implementable.ShortcodeParser; import de.staropensource.engine.base.implementable.ShortcodeParser;
import de.staropensource.sosengine.base.exception.ParserException; import de.staropensource.engine.base.exception.ParserException;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -22,4 +22,4 @@
* *
* @since v1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.implementation.shortcode; package de.staropensource.engine.base.implementation.shortcode;

View file

@ -17,12 +17,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.versioning; package de.staropensource.engine.base.implementation.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
import de.staropensource.sosengine.base.exception.versioning.IncompatibleVersioningSystemException; import de.staropensource.engine.base.exception.versioning.IncompatibleVersioningSystemException;
import de.staropensource.sosengine.base.exception.versioning.InvalidVersionStringException; import de.staropensource.engine.base.exception.versioning.InvalidVersionStringException;
import de.staropensource.sosengine.base.utility.Miscellaneous; import de.staropensource.engine.base.utility.Miscellaneous;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Range; import org.jetbrains.annotations.Range;

View file

@ -17,11 +17,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.versioning; package de.staropensource.engine.base.implementation.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
import de.staropensource.sosengine.base.exception.versioning.IncompatibleVersioningSystemException; import de.staropensource.engine.base.exception.versioning.IncompatibleVersioningSystemException;
import de.staropensource.sosengine.base.exception.versioning.InvalidVersionStringException; import de.staropensource.engine.base.exception.versioning.InvalidVersionStringException;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Range; import org.jetbrains.annotations.Range;

View file

@ -17,12 +17,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.versioning; package de.staropensource.engine.base.implementation.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
import de.staropensource.sosengine.base.exception.versioning.IncompatibleVersioningSystemException; import de.staropensource.engine.base.exception.versioning.IncompatibleVersioningSystemException;
import de.staropensource.sosengine.base.exception.versioning.InvalidVersionStringException; import de.staropensource.engine.base.exception.versioning.InvalidVersionStringException;
import de.staropensource.sosengine.base.utility.Miscellaneous; import de.staropensource.engine.base.utility.Miscellaneous;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -17,12 +17,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.versioning; package de.staropensource.engine.base.implementation.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
import de.staropensource.sosengine.base.exception.versioning.IncompatibleVersioningSystemException; import de.staropensource.engine.base.exception.versioning.IncompatibleVersioningSystemException;
import de.staropensource.sosengine.base.exception.versioning.InvalidVersionStringException; import de.staropensource.engine.base.exception.versioning.InvalidVersionStringException;
import de.staropensource.sosengine.base.type.VersionType; import de.staropensource.engine.base.type.VersionType;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -17,12 +17,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.versioning; package de.staropensource.engine.base.implementation.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
import de.staropensource.sosengine.base.exception.versioning.IncompatibleVersioningSystemException; import de.staropensource.engine.base.exception.versioning.IncompatibleVersioningSystemException;
import de.staropensource.sosengine.base.exception.versioning.InvalidVersionStringException; import de.staropensource.engine.base.exception.versioning.InvalidVersionStringException;
import de.staropensource.sosengine.base.utility.Miscellaneous; import de.staropensource.engine.base.utility.Miscellaneous;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Range; import org.jetbrains.annotations.Range;

View file

@ -17,12 +17,12 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.implementation.versioning; package de.staropensource.engine.base.implementation.versioning;
import de.staropensource.sosengine.base.implementable.VersioningSystem; import de.staropensource.engine.base.implementable.VersioningSystem;
import de.staropensource.sosengine.base.exception.versioning.IncompatibleVersioningSystemException; import de.staropensource.engine.base.exception.versioning.IncompatibleVersioningSystemException;
import de.staropensource.sosengine.base.exception.versioning.InvalidVersionStringException; import de.staropensource.engine.base.exception.versioning.InvalidVersionStringException;
import de.staropensource.sosengine.base.utility.Miscellaneous; import de.staropensource.engine.base.utility.Miscellaneous;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Range; import org.jetbrains.annotations.Range;

View file

@ -23,4 +23,4 @@
* *
* @since v1-alpha1 * @since v1-alpha1
*/ */
package de.staropensource.sosengine.base.implementation.versioning; package de.staropensource.engine.base.implementation.versioning;

View file

@ -17,13 +17,13 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.event; package de.staropensource.engine.base.internal.event;
import de.staropensource.sosengine.base.implementable.Event; import de.staropensource.engine.base.implementable.Event;
import de.staropensource.sosengine.base.implementable.helper.EventHelper; import de.staropensource.engine.base.implementable.helper.EventHelper;
/** /**
* Called when the engine is about to shutdown, after {@link de.staropensource.sosengine.base.event.EngineShutdownEvent}. * Called when the engine is about to shutdown, after {@link de.staropensource.engine.base.event.EngineShutdownEvent}.
* <p> * <p>
* Meant for subsystems to perform cleanup and shutdown routines, not for applications. * Meant for subsystems to perform cleanup and shutdown routines, not for applications.
* *

View file

@ -21,4 +21,4 @@
* Events used for engine-internal communication. * Events used for engine-internal communication.
* These events are meant to be listened on by the base engine and it's subsystems. * These events are meant to be listened on by the base engine and it's subsystems.
*/ */
package de.staropensource.sosengine.base.internal.event; package de.staropensource.engine.base.internal.event;

View file

@ -17,11 +17,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation; package de.staropensource.engine.base.internal.implementation;
import de.staropensource.sosengine.base.implementable.EventListenerCode; import de.staropensource.engine.base.implementable.EventListenerCode;
import de.staropensource.sosengine.base.reflection.Reflect; import de.staropensource.engine.base.reflection.Reflect;
import de.staropensource.sosengine.base.reflection.ReflectionMethod; import de.staropensource.engine.base.reflection.ReflectionMethod;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;

View file

@ -22,4 +22,4 @@
* *
* @since v1-alpha5 * @since v1-alpha5
*/ */
package de.staropensource.sosengine.base.internal.implementation; package de.staropensource.engine.base.internal.implementation;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.Math; import de.staropensource.engine.base.utility.Math;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import java.util.Calendar; import java.util.Calendar;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.Math; import de.staropensource.engine.base.utility.Math;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import java.util.Calendar; import java.util.Calendar;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.Math; import de.staropensource.engine.base.utility.Math;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import java.util.Calendar; import java.util.Calendar;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,9 +17,9 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.EngineInformation; import de.staropensource.engine.base.utility.information.EngineInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.JvmInformation; import de.staropensource.engine.base.utility.information.JvmInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.JvmInformation; import de.staropensource.engine.base.utility.information.JvmInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.JvmInformation; import de.staropensource.engine.base.utility.information.JvmInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.JvmInformation; import de.staropensource.engine.base.utility.information.JvmInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.JvmInformation; import de.staropensource.engine.base.utility.information.JvmInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.information.JvmInformation; import de.staropensource.engine.base.utility.information.JvmInformation;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.Math; import de.staropensource.engine.base.utility.Math;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
/** /**

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.Math; import de.staropensource.engine.base.utility.Math;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import java.util.Calendar; import java.util.Calendar;

View file

@ -17,10 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package de.staropensource.sosengine.base.internal.implementation.placeholder; package de.staropensource.engine.base.internal.implementation.placeholder;
import de.staropensource.sosengine.base.implementable.Placeholder; import de.staropensource.engine.base.implementable.Placeholder;
import de.staropensource.sosengine.base.utility.Math; import de.staropensource.engine.base.utility.Math;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import java.util.Calendar; import java.util.Calendar;

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