Class BackendVariableContext

java.lang.Object
io.github.javaezlib.javaez.backend.BackendVariableContext

public class BackendVariableContext extends Object
The context in which variables made using the Core extension are stored.
Since:
1.0
Author:
Red050911
  • Constructor Details

    • BackendVariableContext

      public BackendVariableContext()
  • Method Details

    • addOrModifyVariable

      @Deprecated public static void addOrModifyVariable(String name, String value)
      Deprecated.
      Not meant for use by the user.
      Adds or modifies a variable
      Parameters:
      name - The name of the variable to modify
      value - The value to put in it
      Since:
      1.0
    • getVariable

      @Deprecated public static String getVariable(String name)
      Deprecated.
      Not meant for use by the user.
      Gets a variable by its name
      Parameters:
      name - The name of the variable to get
      Returns:
      The value of the variable, blank if none.
      Since:
      1.0
    • removeVariable

      @Deprecated public static void removeVariable(String name)
      Deprecated.
      Not meant for use by the user.
      Removes a variable by its name
      Parameters:
      name - The name of the variable to remove
      Since:
      1.0