TextDirectionHeuristic.java revision cb379120456d8065d742021fc5c66748fc8a11a8
1// Copyright 2011 Google Inc. All Rights Reserved.
2
3package android.text;
4
5/**
6 * Interface for objects that guess at the paragraph direction by examining text.
7 *
8 * @hide
9 */
10public interface TextDirectionHeuristic {
11    /** @hide */ boolean isRtl(CharSequence text, int start, int end);
12    /** @hide */ boolean isRtl(char[] text, int start, int count);
13}
14