summaryrefslogtreecommitdiffstats
path: root/core/java/android/text/TextDirectionHeuristic.java
blob: 130f879a213b1b995b35f2d23bdef18db2ab9a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2011 Google Inc. All Rights Reserved.

package android.text;

/**
 * Interface for objects that guess at the paragraph direction by examining text.
 *
 * @hide
 */
public interface TextDirectionHeuristic {
    /** @hide */ boolean isRtl(CharSequence text, int start, int end);
    /** @hide */ boolean isRtl(char[] text, int start, int count);
}