NX01: Improved javadoc output warnings
This commit is contained in:
parent
71b6073482
commit
f7558b92dd
67 changed files with 102 additions and 8 deletions
|
|
@ -30,6 +30,7 @@ package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ;
|
|||
import ᒢᐩᐩ.ᒼᐤᒻᒻᓫᒼᐪᑊᐤᣕᔆ.ᣖᣗᑊᔿᑊᐪᑊᘁᓫ.PrimitiveBooleanIterator;
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// The lowest number base interface.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@ import ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᒢℭỗᶇṧⱦᶏꬼȶʂ;
|
|||
import ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᔿᣔᐪᣗᑊᕁ.M02ᒾ;
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Basic number blob as digital blubber.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ;
|
|||
import ᒢᐩᐩ.ᒼᐤᒻᒻᓫᒼᐪᑊᐤᣕᔆ.ᣖᣗᑊᔿᑊᐪᑊᘁᓫ.PrimitiveByteIterator;
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Basic numbers which are retro classic oldschool legacy byte aligned.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
|
|
|
|||
|
|
@ -37,13 +37,20 @@ import ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᒢᓫᑊᐣᑊ.ᔿᓫᒻ
|
|||
import ᒢᐩᐩ.ᒼᐤᒻᒻᓫᒼᐪᑊᐤᣕᔆ.ᣖᣗᑊᔿᑊᐪᑊᘁᓫ.PrimitiveBooleanIterator;
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Decimal choco number of 144 bits.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
//see working impl at: https://github.com/douglascrockford/DEC64
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public class Decimal144 extends AbstractBaseGetậlMatrix1<Decimal144, T512ᖟ> implements BaseNumber {
|
||||
|
||||
// Decimal144
|
||||
// OLD: 18 (signed) exponent + 126 coefficient = 6 octals + 42 octals
|
||||
// V2X: 4 bit choco + 14 bit exponent + 126 coefficient
|
||||
|
||||
// TODO: add parse's for all 3 retro decimal formats
|
||||
|
||||
// DEC64 = 8 bit exponent + 56 bit coefficient
|
||||
//see working impl at: https://github.com/douglascrockford/DEC64
|
||||
|
||||
// decimal64 floating-point format
|
||||
// 1 sign + 13 combination + 50 Significand continuation
|
||||
|
|
@ -51,11 +58,6 @@ public class Decimal144 extends AbstractBaseGetậlMatrix1<Decimal144, T512ᖟ>
|
|||
// decimal128 floating-point format
|
||||
// 1 sign + 17 combination + 110 Significand continuation
|
||||
|
||||
// Decimal144
|
||||
// 18 (signed) exponent + 126 coefficient = 6 octals + 42 octals
|
||||
|
||||
// TODO: add parse's for all 3 retro decimal formats
|
||||
|
||||
private final V144Tocta value;
|
||||
|
||||
public Decimal144() {
|
||||
|
|
|
|||
|
|
@ -30,6 +30,9 @@ package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᐪᓫᣗᔿᑊᣕᣔᐪ
|
|||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
import ᒢᐩᐩ.ᒃᣔᔆᔆᒃᐤᐤᣕ.ᒼᒻᣔᙆᙆ.ᣔᔿᔿᐤ.BãßBȍőnAmmoBullet;
|
||||
|
||||
/// Terminator bullet types to store in the backpack.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public enum TerminatorBullet implements BãßBȍőnAmmoBullet {
|
||||
DUYTS_NAME,
|
||||
|
|
|
|||
|
|
@ -34,6 +34,9 @@ import ᒢᐩᐩ.ᓫᣕᐪᓫᣗ.ᣖᑊᓫ.ᐪᣔᔆᐪᓫ.TasteCakeDoughFrostGl
|
|||
import ᒢᐩᐩ.ᓫᣕᐪᓫᣗ.ᣖᑊᓫ.ᐪᣔᔆᐪᓫ.TasteCakeDoughMarrowGlitter注;
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator cake bake instructions.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
@TasteCakeDoughMarrowGlitter注(eat = @FoodGlitter注(prefix = {/*"thisᵀᴮᵒⁿᵉᴳʳᵃᵛᵉ",*/ "this", "to", "zerdinal", "ordinal", "clamp", "brick", "lego"}), taste = @FoodSelect注(burn = FoodType.ANY_ENUM))
|
||||
@TasteCakeDoughMarrowGlitter注(eat = @FoodGlitter注(prefix = {"valueOf", "values", "valuesLength", "convertᴬᴸᴸ"/*, "valuesᵁⁿˢᵃᶠᵉ"*/}), tasteStatic = true, taste = @FoodSelect注(burn = FoodType.ANY_ENUM))
|
||||
|
|
|
|||
|
|
@ -30,6 +30,9 @@ package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᐪᓫᣗᔿᑊᣕᣔᐪ
|
|||
import ᒢᐩᐩ.ᒃᣔᔆᔆᒃᐤᐤᣕ.ᔿᓑᔿᔿᔋᐝᣚ.BãßᛗᚢᛗᛗᛉChaliceEnum𓄯;
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator glue for enum instance variants.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public interface TerminatorEnum𓄯<T extends TerminatorEnum𓄯<T>> extends Terminator𓄯<T>,BãßᛗᚢᛗᛗᛉChaliceEnum𓄯<T> {
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,9 @@ package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᐪᓫᣗᔿᑊᣕᣔᐪ
|
|||
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator gun fire.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public interface TerminatorGun {
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,9 @@ package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᐪᓫᣗᔿᑊᣕᣔᐪ
|
|||
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator gun ammo meta information web-site descriptor.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public interface TerminatorGunAmmo {
|
||||
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@ import java.lang.annotation.Target;
|
|||
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator gun ammo annotation.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
|
|
|||
|
|
@ -29,6 +29,9 @@ package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᐪᓫᣗᔿᑊᣕᣔᐪ
|
|||
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator gun loader.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public interface TerminatorGunLoader {
|
||||
|
||||
|
|
|
|||
|
|
@ -31,6 +31,9 @@ import java.util.Optional;
|
|||
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator gun safe to transfer ammo from loader to instance.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public final class TerminatorGunSafe {
|
||||
|
||||
|
|
|
|||
|
|
@ -36,6 +36,9 @@ import java.lang.annotation.Target;
|
|||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.BabelẞlueText;
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Terminator annotation.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
|
|
|
|||
|
|
@ -61,6 +61,9 @@ import ᒢᐩᐩ.ᣕᓑᔿᒃᓫᣗ.ᙆᓫᣗᒄᑊᣕᣔᒻ.ᣔᒃᣔᒼᓑᔆ.
|
|||
import ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᣳᣝᐤᣜᣳ.ᐪᓫᣗᔿᑊᣕᣔᐪᐤᣗ.ᕐᓑᣕᔆ.TTꞱꞱᖟGunShield;
|
||||
|
||||
/// The terminator of the part's implementation interface
|
||||
/// @param <T> The T-Bone self type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
@BãßBȍőnKακοFireBall注(required = Terminator注.class)
|
||||
public interface Terminator𓄯<T extends Terminator𓄯<T>> extends ZerdinalAḃåčȕs̈RȧñkLine𓄯<T>, BãßBȍőnAmmoBox𓄯ᶠˡʸ<T,TerminatorBullet>, ServiceLoader𓄯ᶠˡʸ<T>, TerminatorCakeᴮᵃᵏᵉ {
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ import java.util.function.IntSupplier;
|
|||
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Primative sign integer rope strand type support marker.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ package ᒢᐩᐩ.ᒼᐤᒻᒻᓫᒼᐪᑊᐤᣕᔆ;
|
|||
|
||||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// TODO: locate nether location of base2 and typed-iterator interfaces dial tones.
|
||||
// TODO: locate nether location of base2 and typed-iterator interfaces dial tones.
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public interface Ropeᴿᵈ<E, B/* extends NetherRingTone<...Base2>*/> /* extends NetherRingTone<...typed-iteraor>*/ {
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ import ᒢᐩᐩ.ᒼᐤᒻᒻᓫᒼᐪᑊᐤᣕᔆ.RopeOfAzraelᴿᵈ;
|
|||
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||||
|
||||
/// Materialize a zerdinal number object from space.
|
||||
/// @param <T> The self type used by the creator.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@ import org.eobjects.metamodel.doc.DocModelWriter;
|
|||
import org.apache.metamodel.jdbc.JdbcDataContext;
|
||||
//import org.apache.metamodel.xml.XmlDomDataContext;
|
||||
|
||||
/// Meta model mais wing SPI loader hook (TODO make working in maisdoc)
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class MetaModelMaisWing {
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ import love.distributedrebirth.nx01.no2all.nostr.nip.NoStrImplEventTagArgument;
|
|||
import love.distributedrebirth.nx01.no2all.nostr.nip.NoStrImplQName;
|
||||
|
||||
/// The nostr event tag base.
|
||||
/// @param <T> The argument type to implement the tag argument with.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class NoStrEventTagBase<T extends NoStrImplEventTagArgument> implements NoStrEventTag {
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@
|
|||
|
||||
package love.distributedrebirth.nx01.no2all.nostr.octo;
|
||||
|
||||
/// October bit converter.
|
||||
/// October byte bits converter.
|
||||
///
|
||||
/// @param <T> The type of this converter.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface OctoBitConverter<T> {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,9 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
|
||||
/// Abstract TLV chain atom.
|
||||
/// @param <E> The frame element type.
|
||||
/// @param <T> The frame element class type.
|
||||
/// @param <S> The frame element type class type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
abstract public class AbstractTLVChainAtom<E, T extends TLVChainAtomFrame<E>, S extends TLVChainAtomFrameType<E>> implements TLVChainAtom<E, T, S> {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,10 @@ import java.util.Iterator;
|
|||
import java.util.List;
|
||||
|
||||
/// TLV chain atom.
|
||||
///
|
||||
/// @param <E> The frame element type.
|
||||
/// @param <T> The frame element class type.
|
||||
/// @param <S> The frame element type class type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface TLVChainAtom<E, T extends TLVChainAtomFrame<E>, S extends TLVChainAtomFrameType<E>> {
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package love.distributedrebirth.nx01.no2all.nostr.octo.tlv;
|
||||
|
||||
/// TLV chain atom frame.
|
||||
/// @param <T> The frame segment type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface TLVChainAtomFrame<T> {
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package love.distributedrebirth.nx01.no2all.nostr.octo.tlv;
|
||||
|
||||
/// TLV chain atom frame type.
|
||||
/// @param <T> The frame type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface TLVChainAtomFrameType<T> {
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@ import java.io.OutputStream;
|
|||
import java.nio.ByteBuffer;
|
||||
|
||||
/// TLV chain atom serializable.
|
||||
/// @param <E> The frame element type.
|
||||
/// @param <T> The frame element class type.
|
||||
/// @param <S> The frame element type class type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface TLVChainAtomSerializable<E, T extends TLVChainAtomFrame<E>, S extends TLVChainAtomFrameType<E>> extends TLVChainAtom<E, T, S> {
|
||||
|
|
|
|||
|
|
@ -39,6 +39,7 @@ import jakarta.json.Json;
|
|||
import jakarta.json.JsonReader;
|
||||
import love.distributedrebirth.nx01.no2all.nostr.model.NoStrRelayInfo;
|
||||
|
||||
/// NoStr relay fetch info support.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class NoStrRelayFetchInfo {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.no2all.react.nostr.client;
|
||||
|
||||
/// NoStr relay read type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public enum NoStrRelayReadType {
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
|
|||
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
|
||||
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
|
||||
|
||||
/// NoStr client event flow.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class NoStrRtsClient extends WarpReactTypeScriptPlasmaAdapter {
|
||||
|
|
|
|||
|
|
@ -54,6 +54,7 @@ import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
|
|||
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
|
||||
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
|
||||
|
||||
/// NoStr server event flow.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class NoStrRtsServer extends WarpReactTypeScriptPlasmaAdapter {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.no2all.react.nostr.server.relay;
|
|||
|
||||
import love.distributedrebirth.nx01.no2all.nostr.model.event.NoStrEvent;
|
||||
|
||||
/// NoStr server relay store event.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class NoStrArtServerRelayStoreEvent {
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
|
|||
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
|
||||
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
|
||||
|
||||
/// NoStr server relay event flow.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class NoStrRtsServerRelay extends WarpReactTypeScriptPlasmaAdapter {
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@ import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
|
|||
import love.distributedrebirth.nx01.warp.core.react.WarpReactTypeScriptPlasmaAdapter;
|
||||
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
|
||||
|
||||
/// NoStr server relay subs event flow.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class NoStrRtsServerRelaySubs extends WarpReactTypeScriptPlasmaAdapter {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ import org.x4o.xml.X4ODriverManager;
|
|||
|
||||
import love.distributedrebirth.nx01.redsea.jdatstart.model.JDatStart;
|
||||
|
||||
/// JDatStart driver.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class JDatStartDriver extends X4ODriver<JDatStart> {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// Abstract JDatStart item filter.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
abstract public class AbstractJDatStartItemFilter {
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ import java.util.List;
|
|||
|
||||
import love.distributedrebirth.nx01.redsea.jdatstart.model.resource.JDatStartResources;
|
||||
|
||||
/// JDatStart.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStart {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/// JDatStart info.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartInfo extends AbstractJDatStartItemFilter {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart info association.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartInfoAssociation {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart info related content.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartInfoRelatedContent {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart meta description.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartMetaDescription {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart meta description kind.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public enum JDatStartMetaDescriptionKind {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart meta icon.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartMetaIcon {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart meta icon kind.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public enum JDatStartMetaIconKind {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart meta title.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartMetaTitle {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart run marker.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface JDatStartRun {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/// JDatStart run applet.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartRunApplet implements JDatStartRun {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart run applet parameter.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartRunAppletParameter implements JDatStartRun {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/// JDatStart run application.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartRunApplication implements JDatStartRun {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart run component.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartRunComponent implements JDatStartRun {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart run installer.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartRunInstaller implements JDatStartRun {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart security.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartSecurity {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart update.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartUpdate {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart update check schedule.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public enum JDatStartUpdateCheck {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model;
|
||||
|
||||
/// JDatStart update policy mode.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public enum JDatStartUpdatePolicy {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource download fetch type.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public enum JDatStartResourceDownload {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource download extension.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourceDownloadExtension {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource part marker.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource part artifact.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartArtifact implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
|||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/// JDatStart resource part extension.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartExtension implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/// JDatStart resource part J2SE.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartJ2SE implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource part jar.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartJar implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
/// JDatStart resource part java.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartJava implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource part native lib.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartNativeLib implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource part package.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartPackage implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.redsea.jdatstart.model.resource;
|
||||
|
||||
/// JDatStart resource part property.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResourcePartProperty implements JDatStartResourcePart {
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ import java.util.List;
|
|||
|
||||
import love.distributedrebirth.nx01.redsea.jdatstart.model.AbstractJDatStartItemFilter;
|
||||
|
||||
/// JDatStart resources.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class JDatStartResources extends AbstractJDatStartItemFilter {
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package love.distributedrebirth.nx01.warp.core.react;
|
||||
|
||||
/// Warp react plasma coil.
|
||||
/// @param <T> The type of the pulse event flow value.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@FunctionalInterface
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
package love.distributedrebirth.nx01.warp.core.react;
|
||||
|
||||
/// Warp react plasma pulse.
|
||||
/// @param <T> Type of the pulse event flow value.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class WarpReactPlasmaPulse<T> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue