public Instruction parse(String[] line) {
    if (line.length == 2 && line[0].equalsIgnoreCase("STORE")) {
      if (this.isInteger(line[1])) {
        StoreInstruction instruc_retorno = new StoreInstruction();

        instruc_retorno.valor_asociado = line[1];

        return instruc_retorno;
      } else {
        return null;
      }
    } else {
      return null;
    }
  }