Uses of Interface
javax0.jamal.api.Macro
-
-
Uses of Macro in javax0.jamal.api
Subinterfaces of Macro in javax0.jamal.api Modifier and Type Interface Description interface
Stackable
The macros that need thepush()
andpop()
call-backs when the macro level is increasing / decreasing should implement this interface.Methods in javax0.jamal.api that return types with arguments of type Macro Modifier and Type Method Description static java.util.List<Macro>
Macro. getInstances()
java.util.Optional<Macro>
MacroRegister. getMacro(java.lang.String id)
Get a macro based on the id of the macro.Methods in javax0.jamal.api with parameters of type Macro Modifier and Type Method Description void
MacroRegister. define(Macro macro)
Define a macro on the current evaluation level.void
MacroRegister. define(Macro macro, java.lang.String alias)
Define a macro on the current evaluation level.void
MacroRegister. global(Macro macro)
Define a macro on the global level.void
MacroRegister. global(Macro macro, java.lang.String alias)
Define a macro on the global level.
-