From 0427ab89f1753a44b30cbc35ce021cbbdc845109 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Thu, 10 Aug 2017 18:52:45 +0300 Subject: fix missing source folder --- javadoc/net/minecraftforge/event/CommandEvent.html | 347 +++++++++++++++++++++ 1 file changed, 347 insertions(+) create mode 100644 javadoc/net/minecraftforge/event/CommandEvent.html (limited to 'javadoc/net/minecraftforge/event/CommandEvent.html') diff --git a/javadoc/net/minecraftforge/event/CommandEvent.html b/javadoc/net/minecraftforge/event/CommandEvent.html new file mode 100644 index 0000000..76a12e2 --- /dev/null +++ b/javadoc/net/minecraftforge/event/CommandEvent.html @@ -0,0 +1,347 @@ + + + + + +CommandEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event
+

Class CommandEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class CommandEvent
    +extends Event
    +
    CommandEvent is fired whenever a command is scheduled to be executed. + This event is fired during the invocation of CommandHandler#executeCommand(ICommandSender, String) + and ClientCommandHandler#executeCommand(ICommandSender, String).
    +
    + command contains the instance of ICommand which is representative of the currently executing command.
    + sender contains the instance of ICommandSender for the given command sender.
    + parameters contains the arguments passed for the command execution.
    + exception begins null, but can be populated with an exception to be thrown within the command.
    +
    + This event is Cancelable.
    + If the event is canceled, the execution of the command does not occur.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        command

        +
        public final ICommand command
        +
      • +
      + + + + + + + +
        +
      • +

        parameters

        +
        public java.lang.String[] parameters
        +
      • +
      + + + +
        +
      • +

        exception

        +
        public java.lang.Throwable exception
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        CommandEvent

        +
        public CommandEvent(ICommand command,
        +            ICommandSender sender,
        +            java.lang.String[] parameters)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3