Example #1
0
 private void init()
 {
     if (_parser != null)
     {
         _npluralsExpr = _parser.getNpluralsExpr();
         _pluralExpr   = _parser.getPluralExpr();
         _parser       = null;
     }
 }
Example #2
0
 private PluralExpr(CharSequence expr)
 {
     _parser = new PluralExprParser(expr);
 }