bella 01/07/04 23:33:09
Modified: sources/org/apache/batik/gvt/text
GVTAttributedCharacterIterator.java
Log:
added Arabic form attributes
Revision Changes Path
1.17 +11 -1
xml-batik/sources/org/apache/batik/gvt/text/GVTAttributedCharacterIterator.java
Index: GVTAttributedCharacterIterator.java
===================================================================
RCS file:
/home/cvs/xml-batik/sources/org/apache/batik/gvt/text/GVTAttributedCharacterIterator.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- GVTAttributedCharacterIterator.java 2001/06/12 23:49:47 1.16
+++ GVTAttributedCharacterIterator.java 2001/07/05 06:33:08 1.17
@@ -23,7 +23,7 @@
* SVGAttributedCharacterIterator.TextAttributes.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Bill Haneman</a>
- * @version $Id: GVTAttributedCharacterIterator.java,v 1.16 2001/06/12 23:49:47
bella Exp $
+ * @version $Id: GVTAttributedCharacterIterator.java,v 1.17 2001/07/05 06:33:08
bella Exp $
*/
public interface GVTAttributedCharacterIterator extends AttributedCharacterIterator
{
@@ -363,6 +363,9 @@
public final static TextAttribute CHAR_INDEX =
new TextAttribute("CHAR_INDEX");
+ public final static TextAttribute ARABIC_FORM =
+ new TextAttribute("ARABIC_FORM");
+
// VALUES
/** Value for WRITING_MODE indicating left-to-right */
@@ -401,6 +404,13 @@
/** Value for LENGTH_ADJUST specifying overall scaling of layout outlines */
public final static Integer ADJUST_ALL =
new Integer(0x01);
+
+ // constant values for the arabic glyph forms
+ public final static Integer ARABIC_NONE = new Integer(0x0);
+ public final static Integer ARABIC_ISOLATED = new Integer(0x1);
+ public final static Integer ARABIC_TERMINAL = new Integer(0x2);
+ public final static Integer ARABIC_INITIAL = new Integer(0x3);
+ public final static Integer ARABIC_MEDIAL = new Integer(0x4);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]