Package ch.njol.skript.lang
Class SelfRegisteringSkriptEvent
java.lang.Object
org.skriptlang.skript.lang.structure.Structure
ch.njol.skript.lang.SkriptEvent
ch.njol.skript.lang.SelfRegisteringSkriptEvent
- All Implemented Interfaces:
Debuggable
,SyntaxElement
Deprecated.
-
Nested Class Summary
Nested classes/interfaces inherited from class ch.njol.skript.lang.SkriptEvent
SkriptEvent.ListeningBehavior
Nested classes/interfaces inherited from class org.skriptlang.skript.lang.structure.Structure
Structure.Priority, Structure.StructureData
-
Field Summary
Fields inherited from class ch.njol.skript.lang.SkriptEvent
eventPriority, listeningBehavior, PRIORITY, supportsListeningBehavior, trigger
Fields inherited from class org.skriptlang.skript.lang.structure.Structure
DEFAULT_PRIORITY
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterParse
(Config config) Deprecated.UsepostLoad()
instead.final boolean
check
(org.bukkit.event.Event e) Deprecated.Checks whether the given Event applies, e.g.boolean
Deprecated.boolean
load()
Deprecated.This method handles the loading of the Structure's syntax elements.boolean
postLoad()
Deprecated.This method handles the registration of this event with Skript and Bukkit.abstract void
Deprecated.This method's functionality can be replaced by overridingpostLoad()
.void
unload()
Deprecated.This method handles the unregistration of this event with Skript and Bukkit.abstract void
Deprecated.This method's functionality can be replaced by overridingunload()
.abstract void
Deprecated.This method should no longer be used.Methods inherited from class ch.njol.skript.lang.SkriptEvent
canExecuteAsynchronously, fixPattern, getEventClasses, getEventPriority, getListeningBehavior, getPriority, init, init, isListeningBehaviorSupported, parse, postUnload, preLoad, shouldLoadEvent
Methods inherited from class org.skriptlang.skript.lang.structure.Structure
getEntryContainer, init, parse, parse, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.njol.skript.lang.Debuggable
toString
Methods inherited from interface ch.njol.skript.lang.SyntaxElement
getParser
-
Constructor Details
-
SelfRegisteringSkriptEvent
public SelfRegisteringSkriptEvent()Deprecated.
-
-
Method Details
-
register
Deprecated.This method's functionality can be replaced by overridingpostLoad()
. Normally, that method would register the parsed trigger withSkriptEventHandler
. A reference to theTrigger
is available throughSkriptEvent.trigger
.This method is called after the whole trigger is loaded for events that fire themselves.- Parameters:
t
- the trigger to register to this event
-
unregister
Deprecated.This method's functionality can be replaced by overridingunload()
. Normally, that method would unregister the parsed trigger withSkriptEventHandler
. A reference to theTrigger
is available throughSkriptEvent.trigger
.This method is called to unregister this event registered throughregister(Trigger)
.- Parameters:
t
- the same trigger which was registered for this event
-
unregisterAll
public abstract void unregisterAll()Deprecated.This method should no longer be used. Each trigger should be unregistered throughunregister(Trigger)
.This method is called to unregister all events registered throughregister(Trigger)
. This is called on all registered events, thus it can also only unregister the event it is called on. -
load
public boolean load()Deprecated.Description copied from class:SkriptEvent
This method handles the loading of the Structure's syntax elements. Only override this method if you know what you are doing!- Overrides:
load
in classSkriptEvent
- Returns:
- Whether loading was successful. An error should be printed prior to returning false to specify the cause.
-
postLoad
public boolean postLoad()Deprecated.Description copied from class:SkriptEvent
This method handles the registration of this event with Skript and Bukkit. Only override this method if you know what you are doing!- Overrides:
postLoad
in classSkriptEvent
- Returns:
- Whether postLoading was successful. An error should be printed prior to returning false to specify the cause.
-
unload
public void unload()Deprecated.Description copied from class:SkriptEvent
This method handles the unregistration of this event with Skript and Bukkit. Only override this method if you know what you are doing!- Overrides:
unload
in classSkriptEvent
-
check
public final boolean check(org.bukkit.event.Event e) Deprecated.Description copied from class:SkriptEvent
Checks whether the given Event applies, e.g. the left-click event is only part of the PlayerInteractEvent, and this checks whether the player left-clicked or not. This method will only be called for events this SkriptEvent is registered for.- Specified by:
check
in classSkriptEvent
- Returns:
- true if this is SkriptEvent is represented by the Bukkit Event or false if not
-
afterParse
Deprecated.UsepostLoad()
instead.This method is called when this event is parsed. Overriding this is optional, and usually not needed.- Parameters:
config
- Script that is being parsed
-
isEventPrioritySupported
public boolean isEventPrioritySupported()Deprecated.- Overrides:
isEventPrioritySupported
in classSkriptEvent
- Returns:
- whether this SkriptEvent supports event priorities
-
Structure
methods should be used. See individual methods for their equivalents.