blob: e573ded88aaa8e8daab7d593d0850cff978aec92 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.draw2d.text;
/**
* @since 3.1
*/
class BidiChars {
static final char P_SEP = '\u2029';
static final char ZWJ = '\u200d';
static final char LRO = '\u202d';
static final char RLO = '\u202e';
static final char OBJ = '\ufffc';
static final char LRE = '\u202a';
static final char RLE = '\u202b';
}