blob: 8d8b32d70dc7d3908e0d3b44743c2610c9a06cd7 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 1996-2000, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/Attic/NullTransliterator.java,v $
* $Date: 2001/09/20 21:20:39 $
* $Revision: 1.9 $
*
*****************************************************************************************
*/
package com.ibm.text;
import java.util.*;
/**
* A transliterator that leaves text unchanged.
*/
public class NullTransliterator extends Transliterator {
private static final String COPYRIGHT =
"\u00A9 IBM Corporation 2000. All rights reserved.";
/**
* Package accessible IDs for this transliterator.
*/
static String SHORT_ID = "Null";
static String _ID = "Any-Null";
/**
* Constructs a transliterator.
*/
public NullTransliterator() {
super(_ID, null);
}
/**
* Implements {@link Transliterator#handleTransliterate}.
*/
protected void handleTransliterate(Replaceable text,
Position offsets, boolean incremental) {
offsets.start = offsets.limit;
}
}