blob: ca5a63075733c7f6fbe9094a56b2bd6096c1bfa4 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.text;
/**
* Post processor for RBNF output.
* @internal
*/
class RBNFPostProcessor {
/**
* Initialization routine for this instance, called once
* immediately after first construction and never again.
* @param formatter the formatter that will be using this post-processor
* @param the special rules for this post-procesor
*/
void init(RuleBasedNumberFormat formatter, String rules) {
}
/**
* Work routine. Post process the output, which was generated by the
* ruleset with the given name.
* @param output the output of the main RBNF processing
* @param ruleSet the rule set originally invoked to generate the output
*/
void process(StringBuffer output, NFRuleSet ruleSet) {
}
}