use insert function instead of for loop
[LibreOffice.git] / offapi / com / sun / star / util / SearchResult.idl
blob48adce0968294cca40d9f0c200f188421d17f606
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 module com { module sun { module star { module util {
25 published struct SearchResult {
27 /** Number of subexpressions.
29 If it is 0, then no match found; this value is 1 for ABSOLUTE
30 and APPROXIMATE match.
31 The start and endOffset are always dependent on the search direction.
33 For example, if you search "X" in the text "-X-" the offsets are:
35 for forward: start = 1, end = 2
37 for backward: start = 2, end = 1
39 Forward, the startOffset is inclusive, the endOffset exclusive.
40 Backward, the startOffset is exclusive, the endOffset inclusive.
42 For regular expressions it can be greater than 1.
43 If the value is 1, startoffset[0] and endoffset[0] points to the matching sub string
44 if value is > 1, still startoffset[0] and endoffset[0] points to the matching substring for whole regular expression
45 startoffset[i] and endoffset[i] points to the matching substring of i th matching substring.
47 long subRegExpressions;
48 sequence<long> startOffset;
49 sequence<long> endOffset;
52 }; }; }; };
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */