Package net.minecraft.server.command
Record Class TestCommand.Listener
java.lang.Object
java.lang.Record
net.minecraft.server.command.TestCommand.Listener
- Record Components:
source-tests-
- All Implemented Interfaces:
TestListener
- Enclosing class:
TestCommand
public static record TestCommand.Listener(ServerCommandSource source, TestSet tests)
extends Record
implements TestListener
- Mappings:
Namespace Name named net/minecraft/server/command/TestCommand$Listenerintermediary net/minecraft/class_4527$class_4528official tk$bnamed sourceintermediary comp_3538official anamed testsintermediary comp_2217official b
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.voidonFailed(GameTestState test, TestRunContext context) private voidvoidonPassed(GameTestState test, TestRunContext context) voidonRetry(GameTestState lastState, GameTestState nextState, TestRunContext context) voidonStarted(GameTestState test) source()Returns the value of thesourcerecord component.tests()Returns the value of thetestsrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Listener
- Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/server/command/TestCommand$Listener;<init>(Lnet/minecraft/server/command/ServerCommandSource;Lnet/minecraft/test/TestSet;)Vintermediary <init>Lnet/minecraft/class_4527$class_4528;<init>(Lnet/minecraft/class_2168;Lnet/minecraft/class_4524;)Vofficial <init>Ltk$b;<init>(Lek;Ltf;)V
-
-
Method Details
-
onStarted
- Specified by:
onStartedin interfaceTestListener- Mappings:
Namespace Name Mixin selector named onStartedLnet/minecraft/test/TestListener;onStarted(Lnet/minecraft/test/GameTestState;)Vintermediary method_22188Lnet/minecraft/class_4518;method_22188(Lnet/minecraft/class_4517;)Vofficial aLsu;a(Lsr;)V
-
onPassed
- Specified by:
onPassedin interfaceTestListener- Mappings:
Namespace Name Mixin selector named onPassedLnet/minecraft/test/TestListener;onPassed(Lnet/minecraft/test/GameTestState;Lnet/minecraft/test/TestRunContext;)Vintermediary method_33317Lnet/minecraft/class_4518;method_33317(Lnet/minecraft/class_4517;Lnet/minecraft/class_4520;)Vofficial aLsu;a(Lsr;Lsw;)V
-
onFailed
- Specified by:
onFailedin interfaceTestListener- Mappings:
Namespace Name Mixin selector named onFailedLnet/minecraft/test/TestListener;onFailed(Lnet/minecraft/test/GameTestState;Lnet/minecraft/test/TestRunContext;)Vintermediary method_22190Lnet/minecraft/class_4518;method_22190(Lnet/minecraft/class_4517;Lnet/minecraft/class_4520;)Vofficial bLsu;b(Lsr;Lsw;)V
-
onRetry
- Specified by:
onRetryin interfaceTestListener- Mappings:
Namespace Name Mixin selector named onRetryLnet/minecraft/test/TestListener;onRetry(Lnet/minecraft/test/GameTestState;Lnet/minecraft/test/GameTestState;Lnet/minecraft/test/TestRunContext;)Vintermediary method_56216Lnet/minecraft/class_4518;method_56216(Lnet/minecraft/class_4517;Lnet/minecraft/class_4517;Lnet/minecraft/class_4520;)Vofficial aLsu;a(Lsr;Lsr;Lsw;)V
-
onFinished
private void onFinished()- Mappings:
Namespace Name Mixin selector named onFinishedLnet/minecraft/server/command/TestCommand$Listener;onFinished()Vintermediary method_56304Lnet/minecraft/class_4527$class_4528;method_56304()Vofficial cLtk$b;c()V
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
source
Returns the value of thesourcerecord component.- Returns:
- the value of the
sourcerecord component
-
tests
Returns the value of thetestsrecord component.- Returns:
- the value of the
testsrecord component
-