Package ch.njol.skript.lang
Class SectionSkriptEvent
java.lang.Object
org.skriptlang.skript.lang.structure.Structure
ch.njol.skript.lang.SkriptEvent
ch.njol.skript.lang.SectionSkriptEvent
- All Implemented Interfaces:
Debuggable
,SyntaxElement
To be used in sections that delay the execution of their code through a
Trigger
.- See Also:
-
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 TypeMethodDescriptionboolean
check
(org.bukkit.event.Event event) Checks whether the given Event applies, e.g.boolean
init
(Literal<?>[] args, int matchedPattern, SkriptParser.ParseResult parseResult) Called just after the constructorfinal boolean
final boolean
toString
(@Nullable org.bukkit.event.Event event, boolean debug) Methods inherited from class ch.njol.skript.lang.SkriptEvent
canExecuteAsynchronously, fixPattern, getEventClasses, getEventPriority, getListeningBehavior, getPriority, init, isEventPrioritySupported, isListeningBehaviorSupported, load, parse, postLoad, postUnload, preLoad, shouldLoadEvent, unload
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.SyntaxElement
getParser
-
Constructor Details
-
SectionSkriptEvent
-
-
Method Details
-
getSection
-
isSection
-
isSection
-
init
Description copied from class:SkriptEvent
Called just after the constructor- Specified by:
init
in classSkriptEvent
-
check
public boolean check(org.bukkit.event.Event event) 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
-
toString
- Parameters:
event
- The event to get information from. This is always null if debug == false.debug
- If true this should print more information, if false this should print what is shown to the end user- Returns:
- String representation of this object
-