Bidi isMixed Example
Bidi class isMixed example. This example shows you how to use isMixed method.
Bidi class isMixed example. public boolean isMixed() Return true if the line is not left-to-right or right-to-left. This means it either has mixed runs of left-to-right and right-to-left text, or the base direction differs from the direction of the only run of text.
Here is the code
/*
* @ # IsMixed.java
* A class repersenting use to isMixed
* method of Bidi class in java.text package
* version 13 June 2008
* author Rose India
*/
import java.text.*;
public class IsMixed {
public static void main(String args[]) {
String s = "Rose india.net";
char[] ch = s.toCharArray();
byte[] embeddings = {1, 2, 3, 4};
int textStart = 0, embStart = 0, paragraphLength = 4;
int flag = Bidi.DIRECTION_DEFAULT_LEFT_TO_RIGHT;
Bidi bidi = new Bidi(ch, textStart, embeddings,
embStart, paragraphLength, flag);
System.out.println(bidi.isMixed());
}
} |
|