private void showCurrent() {
    currentSelection = selection.getChoice();
    if (currentSelection == null) currentSelection = NULL_SELECTION;

    EnvironmentVariable[] variables = selections.get(currentSelection);

    if (variables == null) variables = new EnvironmentVariable[] {};

    this.variables.show(variables, new Information());
  }