public void addComboBoxFilmes() {
    int i, j;
    JComboBox filmeBox;
    ArrayList<String> filmelist = new ArrayList<>();
    ArrayList<String> aux = new ArrayList<>();

    filmeBox = view.getFilmeBox();
    filmelist = arquivo.lerFilmes();

    filmeBox.removeAllItems();
    filmeBox.addItem("Filmes");
    for (i = 0; i < filmelist.size(); i++) {
      for (j = 0; j < aux.size(); j++) {
        if (filmelist.get(i).equals(aux.get(j))) {
          j = -1;
          break;
        }
      }
      if (j != -1) {
        aux.add(filmelist.get(i));
      }
    }

    for (i = 0; i < aux.size(); i++) {
      filmeBox.addItem(aux.get(i));
    }
  }
  public void addComboBoxSessoes(String filme) {
    JComboBox sessoesBox;
    sessoesBox = view.getSessaoBox();
    sessoesBox.removeAllItems();
    sessoesBox.addItem("Sessões");

    ArrayList<String> sessoeslist = new ArrayList<>();
    ArrayList<String> filmelist = new ArrayList<>();

    sessoeslist = arquivo.lerSessoes();
    filmelist = arquivo.lerFilmes();

    for (int i = 0; i < sessoeslist.size(); i++) {
      if (filmelist.get(i).equals(filme)) {
        sessoesBox.addItem(sessoeslist.get(i));
      }
    }
  }