Package org.basex.gui.layout
Class GUICode
- java.lang.Object
-
- org.basex.gui.layout.GUICode
-
public abstract class GUICode extends Object
This class can be overwritten to define code snippets that are to be evaluated after all pending events.- Author:
- BaseX Team 2005-24, BSD License, Christian Gruen
-
-
Constructor Summary
Constructors Constructor Description GUICode()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
execute(Object arg)
Code to be run.void
invokeLater()
Invokes the specified thread after all other threads.void
invokeLater(Object arg)
Invokes the specified thread after all other threads.
-
-
-
Method Detail
-
execute
public abstract void execute(Object arg)
Code to be run.- Parameters:
arg
- argument (can benull
)
-
invokeLater
public final void invokeLater()
Invokes the specified thread after all other threads.
-
invokeLater
public final void invokeLater(Object arg)
Invokes the specified thread after all other threads.- Parameters:
arg
- optional argument
-
-