Home | History | Annotate | Download | only in text

Lines Matching defs:breakIterator

28  * Other options for searching include using a BreakIterator to restrict 
32 * other text iteration classes such as <tt>BreakIterator</tt>. Using
50 * @see BreakIterator
56 * The BreakIterator to define the boundaries of a logical match.
59 * @see #setBreakIterator(BreakIterator)
61 * @see BreakIterator
63 protected BreakIterator breakIterator;
85 * targetText, breakIterator and matchedLength as a part of stable
113 BreakIterator internalBreakIter_;
115 BreakIterator breakIter() {
116 return SearchIterator.this.breakIterator;
119 void setBreakIter(BreakIterator breakIter) {
120 SearchIterator.this.breakIterator = breakIter;
209 * Set the BreakIterator that will be used to restrict the points
212 * @param breakiter A BreakIterator that will be used to restrict the
215 * boundary as determined by the {@link BreakIterator},
219 * @see BreakIterator
221 public void setBreakIterator(BreakIterator breakiter) {
318 * Returns the BreakIterator that is used to restrict the indexes at which
321 * If the {@link BreakIterator} has not been set, <tt>null</tt> will be returned.
324 * @return the BreakIterator set to restrict logic matches
326 * @see BreakIterator
328 public BreakIterator getBreakIterator() {
597 * and sets the BreakIterator.
599 * and {@link BreakIterator}.
602 * @param breaker A {@link BreakIterator} that is used to determine the
606 * @see BreakIterator
608 protected SearchIterator(CharacterIterator target, BreakIterator breaker)