1 7 package com.ibm.icu.text; 8 9 13 class NullTransliterator extends Transliterator { 14 private static final String COPYRIGHT = 15 "\u00A9 IBM Corporation 2000. All rights reserved."; 16 17 20 static String SHORT_ID = "Null"; 21 static String _ID = "Any-Null"; 22 23 27 public NullTransliterator() { 28 super(_ID, null); 29 } 30 31 35 protected void handleTransliterate(Replaceable text, 36 Position offsets, boolean incremental) { 37 offsets.start = offsets.limit; 38 } 39 } 40 | Popular Tags |