summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/extensions/fts3/nsIFts3Tokenizer.idl
blob: c2bb7d435ab9f5b491768598ba8d70862386f1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsISupports.idl"

interface mozIStorageConnection;

[scriptable, uuid(136c88ea-7003-4fe8-8835-333fd18e598c)]
interface nsIFts3Tokenizer : nsISupports {
    // register FTS3 tokenizer module for "mozporter" tokenizer
    // mozporter is based by porter tokenizer with bi-gram tokenizer for CJK
    void registerTokenizer(in mozIStorageConnection connection);
};