blob: b8fa07f7eb35671fc447b3a46a2254b9df21828d [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
// ? 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 2000-2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
/* Written by Simon Montagu, Matitiahu Allouche
* (ported from C code written by Markus W. Scherer)
*/
package android.icu.text;
/**
* Overrides default Bidi class values with custom ones.
*
* <p>The override mechanism requires to define a subclass of
* <code>BidiClassifier</code> which overrides the <code>classifier</code>
* method to assign customized Bidi classes.</p>
*
* <p>This may be useful for assigning Bidi classes to PUA characters, or
* for special application needs. For instance, an application may want to
* handle all spaces like L or R characters (according to the base direction)
* when creating the visual ordering of logical lines which are part of a report
* organized in columns: there should not be interaction between adjacent
* cells.</p>
*
* <p>To start using this customized
* classifier with a Bidi object, it must be specified by calling the
* <code>Bidi.setCustomClassifier</code> method; after that, the method
* <code>classify</code> of the custom <code>BidiClassifier</code> will be
* called by the UBA implementation any time the class of a character is
* to be determined.</p>
*
* @see android.icu.text.Bidi#setCustomClassifier
*/
@SuppressWarnings({"unchecked", "deprecation", "all"})
public class BidiClassifier {
/**
* @param context Context for this classifier instance.
* May be null.
*/
public BidiClassifier(java.lang.Object context) { throw new RuntimeException("Stub!"); }
/**
* Sets classifier context, which can be used either by a caller or
* callee for various purposes.
*
* @param context Context for this classifier instance.
* May be null.
*/
public void setContext(java.lang.Object context) { throw new RuntimeException("Stub!"); }
/**
* Returns the current classifier context.
*/
public java.lang.Object getContext() { throw new RuntimeException("Stub!"); }
/**
* Gets customized Bidi class for the code point <code>c</code>.
* <p>
* Default implementation, to be overridden.
*
* @param c Code point to be classified.
* @return An integer representing directional property / Bidi class for the
* given code point <code>c</code>, or UCharacter.getIntPropertyMaxValue(UProperty.BIDI_CLASS)+1
* to signify that there is no need to override the standard Bidi class for
* the given code point.
*/
public int classify(int c) { throw new RuntimeException("Stub!"); }
}