NX01: Removed a few javadoc warnings.
This commit is contained in:
parent
5105dd70f9
commit
dd370b7789
220 changed files with 297 additions and 5 deletions
|
|
@ -39,6 +39,7 @@ import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
|
|||
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaCoil;
|
||||
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasmaPulse;
|
||||
|
||||
/// Warp core plasma conduit.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class WarpCorePlasmaConduit {
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ import java.util.List;
|
|||
|
||||
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
|
||||
|
||||
/// Warp core plasma intermix chamber.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class WarpCorePlasmaIntermixChamber {
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
|
|||
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaAdd;
|
||||
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaRemove;
|
||||
|
||||
/// Warp core reactor.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class WarpCoreReactor implements WarpReact {
|
||||
|
|
|
|||
|
|
@ -39,6 +39,7 @@ import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
|
|||
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaAdd;
|
||||
import love.distributedrebirth.nx01.warp.core.space.WarpSpacePlasmaRemove;
|
||||
|
||||
/// Warp core speed monitor.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public class WarpCoreSpeedMonitor implements WarpReactTypeScript {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.warp.core.react;
|
||||
|
||||
/// Warp react.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface WarpReact {
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
/// Warp react plasma.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class WarpReactPlasma {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.warp.core.react;
|
||||
|
||||
/// Warp react plasma coil.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
@FunctionalInterface
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.warp.core.react;
|
||||
|
||||
/// Warp react plasma pulse.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class WarpReactPlasmaPulse<T> {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.warp.core.react;
|
|||
|
||||
import love.distributedrebirth.nx01.warp.core.space.WarpSpaceAntimatterInducer;
|
||||
|
||||
/// Warp react type script.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public interface WarpReactTypeScript extends WarpReactPlasmaCoil<WarpSpaceAntimatterInducer> {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.warp.core.react;
|
|||
|
||||
import java.util.Objects;
|
||||
|
||||
/// Warp react type script plasma adapter.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
abstract public class WarpReactTypeScriptPlasmaAdapter implements WarpReactTypeScript {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.warp.core.space;
|
|||
|
||||
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
|
||||
|
||||
/// Abstract space plasma.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public abstract class AbstractSpacePlasma {
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
package love.distributedrebirth.nx01.warp.core.space;
|
||||
|
||||
/// Warp space antimatter inducer.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class WarpSpaceAntimatterInducer {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.warp.core.space;
|
|||
|
||||
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
|
||||
|
||||
/// Warp space plasma add.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class WarpSpacePlasmaAdd extends AbstractSpacePlasma {
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ package love.distributedrebirth.nx01.warp.core.space;
|
|||
|
||||
import love.distributedrebirth.nx01.warp.core.react.WarpReactPlasma;
|
||||
|
||||
/// Warp space plasma remove.
|
||||
/// @author للَّٰهِilLצسُو
|
||||
/// @version ©Δ∞ 仙上主天
|
||||
public final class WarpSpacePlasmaRemove extends AbstractSpacePlasma {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue